<?xml version="1.0" encoding="UTF-8"?>
<commits type="array">
  <commit>
    <parents type="array">
      <parent>
        <id>99bc5fbd8569d3d0cedd26d9c2d7bb71b608a205</id>
      </parent>
    </parents>
    <author>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/6628c8cbcc06a44dbfe3144e889a3a86a5c2e6ea</url>
    <id>6628c8cbcc06a44dbfe3144e889a3a86a5c2e6ea</id>
    <committed-date>2008-04-23T01:13:39-07:00</committed-date>
    <authored-date>2008-04-23T01:13:39-07:00</authored-date>
    <message>More crazy Ruby syntax tests</message>
    <tree>668fd389b98cc65b6766293f69b5ecae0a29cad4</tree>
    <committer>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>4d7e2326eabffd3e0fa7228a15a46e950e888ae2</id>
      </parent>
    </parents>
    <author>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/99bc5fbd8569d3d0cedd26d9c2d7bb71b608a205</url>
    <id>99bc5fbd8569d3d0cedd26d9c2d7bb71b608a205</id>
    <committed-date>2008-04-23T00:49:44-07:00</committed-date>
    <authored-date>2008-04-23T00:49:44-07:00</authored-date>
    <message>More syntax test cleanup</message>
    <tree>08ac74853de755971539307c1f8176c308dd15f7</tree>
    <committer>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f492cc60eaf3aee9b7fe76b060a67a26ede837bf</id>
      </parent>
    </parents>
    <author>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/4d7e2326eabffd3e0fa7228a15a46e950e888ae2</url>
    <id>4d7e2326eabffd3e0fa7228a15a46e950e888ae2</id>
    <committed-date>2008-04-23T00:41:56-07:00</committed-date>
    <authored-date>2008-04-23T00:41:56-07:00</authored-date>
    <message>More syntax tests</message>
    <tree>9d650c4fb63f6674f7e291a5b8531878fb2ab922</tree>
    <committer>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>1799526150322cadfb25b522cfd80a6001f8e6b8</id>
      </parent>
    </parents>
    <author>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/f492cc60eaf3aee9b7fe76b060a67a26ede837bf</url>
    <id>f492cc60eaf3aee9b7fe76b060a67a26ede837bf</id>
    <committed-date>2008-04-22T23:14:37-07:00</committed-date>
    <authored-date>2008-04-22T23:14:37-07:00</authored-date>
    <message>Added support for nested heredocs!!1!
this version only supports indentable unquoted interpolated heredocs, EG:

	a, b, c = &lt;&lt;-E1, &lt;&lt;-E2, &lt;&lt;-E3
	  hello world
	E1
	  abc
	E2
	  123
	E3</message>
    <tree>8bfcd28997547f1804e027e5ffa1d240da27ae06</tree>
    <committer>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f27f8853af9ae3966ee940a0f0abaae4c829afe8</id>
      </parent>
    </parents>
    <author>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/1799526150322cadfb25b522cfd80a6001f8e6b8</url>
    <id>1799526150322cadfb25b522cfd80a6001f8e6b8</id>
    <committed-date>2008-04-22T21:00:08-07:00</committed-date>
    <authored-date>2008-04-22T21:00:08-07:00</authored-date>
    <message>Improved heredoc support, Added here_docs syntax test file
Now supports:

	INTERPOLATED HEREDOC

p heredoc1 = &lt;&lt;heredoc1
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
heredoc1
&quot;normal text embedded source escaped characters \n\t\a''\&quot;\&quot;\\\n&quot;

p heredoc1_1 = &lt;&lt;-heredoc1_1
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
  heredoc1_1
&quot;normal text embedded source escaped characters \n\t\a''\&quot;\&quot;\\\n&quot;

p heredoc3 = &lt;&lt;&quot;heredoc 3&quot;
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
heredoc 3
&quot;normal text embedded source escaped characters \n\t\a''\&quot;\&quot;\\\n&quot;

p heredoc3_1 = &lt;&lt;-&quot;heredoc 3.1&quot;
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
  heredoc 3.1
&quot;normal text embedded source escaped characters \n\t\a''\&quot;\&quot;\\\n&quot;

	NON-INTERPOLATED HEREDOC

p heredoc2 = &lt;&lt;'heredoc2'
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
heredoc2
&quot;normal text \#{ \&quot;embedded source\&quot; } escaped characters \\n\\t\\a\\''\\\&quot;\&quot;\\\\\n&quot;

p heredoc2_1 = &lt;&lt;-'heredoc 2.1'
normal text #{ &quot;embedded source&quot; } escaped characters \n\t\a\''\&quot;&quot;\\
  heredoc 2.1
&quot;normal text \#{ \&quot;embedded source\&quot; } escaped characters \\n\\t\\a\\''\\\&quot;\&quot;\\\\\n&quot;</message>
    <tree>87bb9e68ad1c7a1c4cd66b70368437f6ce4c7ff1</tree>
    <committer>
      <name>Thomas Aylott</name>
      <email>oblivious+git@subtlegradient.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>28b1ea1529b071fa10ba458e816e4a9454f85d8a</id>
      </parent>
    </parents>
    <author>
      <name>Dr Nic</name>
      <email>drnicwilliams@gmail.com</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/f27f8853af9ae3966ee940a0f0abaae4c829afe8</url>
    <id>f27f8853af9ae3966ee940a0f0abaae4c829afe8</id>
    <committed-date>2008-04-13T22:54:29-07:00</committed-date>
    <authored-date>2008-02-25T19:08:42-08:00</authored-date>
    <message>remove the -w options from  #!ruby cmd</message>
    <tree>e842987fa14f96e1c0dedf67fc7557212d907d9a</tree>
    <committer>
      <name>Dr Nic Williams</name>
      <email>drnicwilliams@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>4eb5fee1621549f676f9d5e085f1ccf03489e334</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/28b1ea1529b071fa10ba458e816e4a9454f85d8a</url>
    <id>28b1ea1529b071fa10ba458e816e4a9454f85d8a</id>
    <committed-date>2008-04-10T11:03:14-07:00</committed-date>
    <authored-date>2008-04-10T11:03:14-07:00</authored-date>
    <message>Fixing a Ruby syntax parsing bug where a no argument method followed by a commit on the same line (like RDoc's # :nodoc:) would cause the next line to be parsed as arguments.  This was really screwing up how TM was parsing the source code for Rails.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@9362 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>e34bfcb854a951fc08ad7378aa23ad92cbc3aed8</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a0bdcedd42f7ed1867d32120bbf92bab7b72f085</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/4eb5fee1621549f676f9d5e085f1ccf03489e334</url>
    <id>4eb5fee1621549f676f9d5e085f1ccf03489e334</id>
    <committed-date>2008-03-05T08:06:56-08:00</committed-date>
    <authored-date>2008-03-05T08:06:56-08:00</authored-date>
    <message>A minor readability patch from Robert Fuchs.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@9051 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>d3c3e881017676d85a169aeed515793b15a845a1</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>3023be91847da57695a2b0dcc40ea8bf06fa409a</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/a0bdcedd42f7ed1867d32120bbf92bab7b72f085</url>
    <id>a0bdcedd42f7ed1867d32120bbf92bab7b72f085</id>
    <committed-date>2008-03-04T07:55:04-08:00</committed-date>
    <authored-date>2008-03-04T07:55:04-08:00</authored-date>
    <message>Adding a workaround for Leopard where Bash's built-in echo behaves differently than Tiger.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@9048 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>25d2dab62a98ec662764861736bd1bb52a6b18e5</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>d526060cd90c30ba688a8acff8608b33fbf6b49d</id>
      </parent>
    </parents>
    <author>
      <name>ciaran</name>
      <email>ciaran@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/3023be91847da57695a2b0dcc40ea8bf06fa409a</url>
    <id>3023be91847da57695a2b0dcc40ea8bf06fa409a</id>
    <committed-date>2008-02-28T07:34:12-08:00</committed-date>
    <authored-date>2008-02-28T07:34:12-08:00</authored-date>
    <message>Support embedded SQL in heredocs marked by an &lt;&lt;-SQL token


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@9022 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>a48b88775025951e59c7929d6501ecc96837903b</tree>
    <committer>
      <name>ciaran</name>
      <email>ciaran@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>01f194d339eefbab1b8ade65882d841e52263a63</id>
      </parent>
    </parents>
    <author>
      <name>ciaran</name>
      <email>ciaran@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/d526060cd90c30ba688a8acff8608b33fbf6b49d</url>
    <id>d526060cd90c30ba688a8acff8608b33fbf6b49d</id>
    <committed-date>2008-02-22T06:17:39-08:00</committed-date>
    <authored-date>2008-02-22T06:17:39-08:00</authored-date>
    <message>The require completion would fail if there was an entry in $LOAD_PATH which did not exist

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8979 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>f743a20a66f92aebc8cfa94f265146c5d7d6982d</tree>
    <committer>
      <name>ciaran</name>
      <email>ciaran@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>09b0f20e02afca8c922c3fd08d3b0e2a4218c177</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/01f194d339eefbab1b8ade65882d841e52263a63</url>
    <id>01f194d339eefbab1b8ade65882d841e52263a63</id>
    <committed-date>2008-02-18T09:30:56-08:00</committed-date>
    <authored-date>2008-02-18T09:30:56-08:00</authored-date>
    <message>Fixing a syntax highlighting bug by removing an unneeded rule.  This syntax is only allowed in method definitions and is covered by those grammar rules.  Bug reported by Malesca and fixed by Eridius.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8945 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>0418a70100454380acd501d6dccbd31a72f8a39f</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>8959f4dbf9796172876b4348e72762efb8d88ec4</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/09b0f20e02afca8c922c3fd08d3b0e2a4218c177</url>
    <id>09b0f20e02afca8c922c3fd08d3b0e2a4218c177</id>
    <committed-date>2008-02-04T11:22:37-08:00</committed-date>
    <authored-date>2008-02-04T11:22:37-08:00</authored-date>
    <message>Applying updates to regular expression parsing from allan and Infin.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8831 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>f9c9749b2a77b9fff7345bac7890eae0b7c55991</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>7ba0db4e1dbc73f6c9429d24be968002e592f860</id>
      </parent>
    </parents>
    <author>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/8959f4dbf9796172876b4348e72762efb8d88ec4</url>
    <id>8959f4dbf9796172876b4348e72762efb8d88ec4</id>
    <committed-date>2007-11-30T22:07:43-08:00</committed-date>
    <authored-date>2007-11-30T22:07:43-08:00</authored-date>
    <message>&#8226; use #!/bin/sh as shebang for &#8220;Ruby &#8594; Run&#8221; and &#8220;TextMate &#8594; Relaunch&#8221;.

This is to prevent running &#8216;Support/lib/bash_init.sh&#8217; which sets up RUBYLIB. Having RUBYLIB set to include Support/lib means users who run scripts that require libraries named the same as those we have in TextMate will likely get the wrong one.

Very few commands actually make use of the fact that RUBYLIB is set, so maybe we should edit &#8216;bash_init.sh&#8217; to simply not set it, although I am waiting with such change till after next build, so we have time to thoroughly test that everything still works.

The downside by this change is that running a ruby script in TM intended to be used by a TM command, now require TM support libraries to be included using the full path (or the Support/lib folder be added to the include path).

On that note, RubyMate/stdin_dialog.rb had to be updated to do so, since it is indirectly loaded when running scripts (now in an environment w/o Support/lib in RUBYLIB).


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8572 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>869241e5db8e12b499cbcd1d168de628f91cea75</tree>
    <committer>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f521db09c977e34424b5f355f035586c9a83af17</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/7ba0db4e1dbc73f6c9429d24be968002e592f860</url>
    <id>7ba0db4e1dbc73f6c9429d24be968002e592f860</id>
    <committed-date>2007-11-15T12:11:24-08:00</committed-date>
    <authored-date>2007-11-15T12:11:24-08:00</authored-date>
    <message>Introducing a pair of snippets for XML parsing and XPath queries.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8458 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>c8e3ce44fda173a2bc0c28748967a1743c60fb9a</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>8db5d07ac973a079552d58fd6dd6a7c33e391a62</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/f521db09c977e34424b5f355f035586c9a83af17</url>
    <id>f521db09c977e34424b5f355f035586c9a83af17</id>
    <committed-date>2007-11-13T11:59:52-08:00</committed-date>
    <authored-date>2007-11-13T11:59:52-08:00</authored-date>
    <message>Relaxing the scope of this command so it will work inside interpolated Strings.  This may cause problems with some ERb templates, but we're deferring that fix until the scopes for Ruby are improved.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8444 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>db268ee78973e23ad438b254905b541920db6f33</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>9a799b97b5df2c2a9ae834a5d97159f1e8e7d5c7</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/8db5d07ac973a079552d58fd6dd6a7c33e391a62</url>
    <id>8db5d07ac973a079552d58fd6dd6a7c33e391a62</id>
    <committed-date>2007-11-06T19:56:26-08:00</committed-date>
    <authored-date>2007-11-06T19:56:26-08:00</authored-date>
    <message>Supporting method arguments when parentheses aren't used and optimizing the related rules.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8411 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>fec2e58332d91488fa0dcaad586cfe034c04e1a6</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>49d161ee7b1aafc471cf711d2c4bf046741806a4</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/9a799b97b5df2c2a9ae834a5d97159f1e8e7d5c7</url>
    <id>9a799b97b5df2c2a9ae834a5d97159f1e8e7d5c7</id>
    <committed-date>2007-10-29T08:26:26-07:00</committed-date>
    <authored-date>2007-10-29T08:26:26-07:00</authored-date>
    <message>Bringing the tab-trigger to name relationship of these snippets in line with the bundle conventions.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8361 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>93b843374fada5ed1cdde534f9530380b3533948</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>22ed2026fa420a7354a12c597467547d120d5bd5</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/49d161ee7b1aafc471cf711d2c4bf046741806a4</url>
    <id>49d161ee7b1aafc471cf711d2c4bf046741806a4</id>
    <committed-date>2007-10-29T08:19:54-07:00</committed-date>
    <authored-date>2007-10-29T08:19:54-07:00</authored-date>
    <message>Fixing the bug Malesca reported where assert_match //, &#8230; wasn't syntax highlighted correctly.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8360 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>46c2fab67495cae6e43da0163a4be15cee068199</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>83a745b61e31f7ee30e149e33f345e8029252539</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/22ed2026fa420a7354a12c597467547d120d5bd5</url>
    <id>22ed2026fa420a7354a12c597467547d120d5bd5</id>
    <committed-date>2007-10-23T10:09:02-07:00</committed-date>
    <authored-date>2007-10-23T10:09:02-07:00</authored-date>
    <message>An enhanced version of the Ruby bundle's Open Require command by ph^.  This new version can pick up requires anywhere in the file and has better support for RubyGems.  Much of this command was inspired by the PHP version created by ciaran.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8329 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>b46fff85ed9e42f38adbba63ae347d0de042a784</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>95f3c16d2f0a77bf2f545ee5ecc0d8257be95d30</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/83a745b61e31f7ee30e149e33f345e8029252539</url>
    <id>83a745b61e31f7ee30e149e33f345e8029252539</id>
    <committed-date>2007-10-19T14:34:46-07:00</committed-date>
    <authored-date>2007-10-19T14:34:46-07:00</authored-date>
    <message>Making the argument parsing of this snippet smarter.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8314 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>1ad76ec209ef117839656e25dea85f87b6a37947</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f50096320180bfbf1cb10c4fd1b50450a005e065</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/95f3c16d2f0a77bf2f545ee5ecc0d8257be95d30</url>
    <id>95f3c16d2f0a77bf2f545ee5ecc0d8257be95d30</id>
    <committed-date>2007-10-19T14:26:04-07:00</committed-date>
    <authored-date>2007-10-19T14:26:04-07:00</authored-date>
    <message>Mirroring Jacob's change in the Ruby bundle.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8313 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>57d9e73132f557507ba3085123ec14d0dcfab7d3</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>698da1d9531a79321cd6f09f8c5214c9abe4d7d2</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/f50096320180bfbf1cb10c4fd1b50450a005e065</url>
    <id>f50096320180bfbf1cb10c4fd1b50450a005e065</id>
    <committed-date>2007-10-19T07:17:42-07:00</committed-date>
    <authored-date>2007-10-19T07:17:42-07:00</authored-date>
    <message>Updating this command's string order.  The default string of the Ruby bundle is &quot;&#8230;&quot; to support interpolation.  Logically '&#8230;' should be the second most popular and thus &quot;&#8230;&quot; strings should convert to '&#8230;'.  Beyond that, I want to support %Q{&#8230;} for complex quoting scenarios.  This is preferable to the %q{&#8230;} which adds very little over '&#8230;' and doesn't support interpolation.


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8310 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>bbbe1e39b04627605ee42b769c68129d4963b671</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>5a5bb0aa4f14fa03a97c8905018ddcfc55b4ed64</id>
      </parent>
    </parents>
    <author>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/698da1d9531a79321cd6f09f8c5214c9abe4d7d2</url>
    <id>698da1d9531a79321cd6f09f8c5214c9abe4d7d2</id>
    <committed-date>2007-10-19T05:47:38-07:00</committed-date>
    <authored-date>2007-10-19T05:47:38-07:00</authored-date>
    <message>&#8226; revert my previous (accidental) commit (where the &#8216;rb&#8217; extension was moved to the Rails grammar)


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8307 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>8499f20d45ce3341f6bc4df7848f4bfdeadaef5f</tree>
    <committer>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>9b1fb58285fec904e64b331695b96b068f91cbdf</id>
      </parent>
    </parents>
    <author>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/5a5bb0aa4f14fa03a97c8905018ddcfc55b4ed64</url>
    <id>5a5bb0aa4f14fa03a97c8905018ddcfc55b4ed64</id>
    <committed-date>2007-10-19T05:42:03-07:00</committed-date>
    <authored-date>2007-10-19T05:42:03-07:00</authored-date>
    <message>&#8226; use TM_FULLNAME instead of TM_USERNAME in all templates and remove the setup of TM_USERNAME from the template script/helper


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8306 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>4aa1ff917e4687d345b22052d9ca5a98b2928133</tree>
    <committer>
      <name>duff</name>
      <email>duff@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>8634755be0996d9becb5c30c296491f6c404e510</id>
      </parent>
    </parents>
    <author>
      <name>msheets</name>
      <email>msheets@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/9b1fb58285fec904e64b331695b96b068f91cbdf</url>
    <id>9b1fb58285fec904e64b331695b96b068f91cbdf</id>
    <committed-date>2007-10-14T15:32:51-07:00</committed-date>
    <authored-date>2007-10-14T15:32:51-07:00</authored-date>
    <message>Change keyword.control.ruby.start-block to keyword.control.start-block.ruby


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8288 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>8499f20d45ce3341f6bc4df7848f4bfdeadaef5f</tree>
    <committer>
      <name>msheets</name>
      <email>msheets@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>488f2e1f7ee3bd20929a9ce940ab5cc2dfa2b372</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/8634755be0996d9becb5c30c296491f6c404e510</url>
    <id>8634755be0996d9becb5c30c296491f6c404e510</id>
    <committed-date>2007-10-11T07:00:32-07:00</committed-date>
    <authored-date>2007-10-11T07:00:32-07:00</authored-date>
    <message>Bringing this tab trigger inline with our convention.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8281 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>f83e5697e765cb90809006d5b4b87ad81259d8f6</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>081eb167f830b1fa12512237e3d0026cabc86d9a</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/488f2e1f7ee3bd20929a9ce940ab5cc2dfa2b372</url>
    <id>488f2e1f7ee3bd20929a9ce940ab5cc2dfa2b372</id>
    <committed-date>2007-10-11T06:59:00-07:00</committed-date>
    <authored-date>2007-10-11T06:59:00-07:00</authored-date>
    <message>A minor menu order change.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8280 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>39af4457b29c6f9df5b164dcde76855c1af9a21a</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>45926f2e711cbac51ce0c36de6314476eb286c0a</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/081eb167f830b1fa12512237e3d0026cabc86d9a</url>
    <id>081eb167f830b1fa12512237e3d0026cabc86d9a</id>
    <committed-date>2007-10-11T06:56:16-07:00</committed-date>
    <authored-date>2007-10-11T06:56:16-07:00</authored-date>
    <message>Cleaning up the order of items in the Ruby bundle when viewed in the editor.

git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8279 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>3f0eb69e688e166c7ed9892a22446132b3a4af16</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a8b793883e904175ec076d6b3874bb0ba6f7a89f</id>
      </parent>
    </parents>
    <author>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </author>
    <url>http://github.com/subtleGradient/ruby.tmbundle/commit/45926f2e711cbac51ce0c36de6314476eb286c0a</url>
    <id>45926f2e711cbac51ce0c36de6314476eb286c0a</id>
    <committed-date>2007-10-10T13:49:06-07:00</committed-date>
    <authored-date>2007-10-10T13:49:06-07:00</authored-date>
    <message>Removing an ancient template that serves no purpose.  Use &#8984;N, &#8963;&#8997;&#8679;E, rb&#8677; instead.


git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/Ruby.tmbundle@8275 dfb7d73b-c2ec-0310-8fea-fb051d288c6d</message>
    <tree>c6a2358078156354dfaf9bc0212107f9139d9bdd</tree>
    <committer>
      <name>JEG2</name>
      <email>JEG2@dfb7d73b-c2ec-0310-8fea-fb051d288c6d</email>
    </committer>
  </commit>
</commits>
