<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/racc, branch ruby_3_0</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Bump racc version to 1.5.2</title>
<updated>2021-11-22T01:51:35+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-11-11T11:14:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5a6f8462dc00ae453268eb7b42b1d395b9f644f8'/>
<id>5a6f8462dc00ae453268eb7b42b1d395b9f644f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Bump version to 1.5.1</title>
<updated>2020-11-10T12:35:04+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-11-10T12:26:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=0b19f33480a026d0ddd17933cbd947466dd58c82'/>
<id>0b19f33480a026d0ddd17933cbd947466dd58c82</id>
<content type='text'>
https://github.com/ruby/racc/commit/2cb3055a73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/2cb3055a73
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Use the Ruby license. Fix #134</title>
<updated>2020-11-10T12:20:31+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-11-10T12:00:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5a19b492dad5a444826d18cf6d1a1261464a02c4'/>
<id>5a19b492dad5a444826d18cf6d1a1261464a02c4</id>
<content type='text'>
https://github.com/ruby/racc/commit/7c881cd548
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/7c881cd548
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/racc/statetransitiontable.rb: Make the racc output stable</title>
<updated>2020-11-09T22:49:19+00:00</updated>
<author>
<name>Yusuke Endoh</name>
<email>mame@ruby-lang.org</email>
</author>
<published>2020-11-09T10:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2fed5f0ad806869139d0e0b1ffc30c517e6baf20'/>
<id>2fed5f0ad806869139d0e0b1ffc30c517e6baf20</id>
<content type='text'>
Racc calls `Array#sort!` to build a state transition table. As
`Array#sort!` is not a stable sort, the output may differ depending upon
the environment.

This changeset makes the sort stable manually, and updates all
expectation files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Racc calls `Array#sort!` to build a state transition table. As
`Array#sort!` is not a stable sort, the output may differ depending upon
the environment.

This changeset makes the sort stable manually, and updates all
expectation files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed needless require for 'enumerator'</title>
<updated>2020-11-09T05:18:38+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-11-09T05:18:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ba1472f43a80b3d9b6853ad4c70c7b1692a4a20f'/>
<id>ba1472f43a80b3d9b6853ad4c70c7b1692a4a20f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Separate `send` into `public_send` and `__send__`</title>
<updated>2020-10-27T07:12:45+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2020-10-27T04:42:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3198e7abd70bd2af977f2bb6c967e9df8f91adb0'/>
<id>3198e7abd70bd2af977f2bb6c967e9df8f91adb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Turn debugging off</title>
<updated>2020-09-28T09:08:51+00:00</updated>
<author>
<name>Marc-Andre Lafortune</name>
<email>github@marc-andre.ca</email>
</author>
<published>2020-08-19T01:26:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=245ed57ddc93901e90388cf479968392299d1067'/>
<id>245ed57ddc93901e90388cf479968392299d1067</id>
<content type='text'>
https://github.com/ruby/racc/commit/872f75cfa7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/872f75cfa7
</pre>
</div>
</content>
</entry>
<entry>
<title>[Fixes #137] Improve reporting</title>
<updated>2020-09-28T09:07:24+00:00</updated>
<author>
<name>Marc-Andre Lafortune</name>
<email>github@marc-andre.ca</email>
</author>
<published>2020-08-14T01:50:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=97d1a381e112e843ff014a05a083e42165b7bb01'/>
<id>97d1a381e112e843ff014a05a083e42165b7bb01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Fixed the licenses field of gemspec</title>
<updated>2020-08-19T10:35:04+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-08-19T10:22:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5b04e2362c03bb82c76c65353c1856d6b0c3d745'/>
<id>5b04e2362c03bb82c76c65353c1856d6b0c3d745</id>
<content type='text'>
https://github.com/ruby/racc/commit/a1aeecff03
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/a1aeecff03
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed nonsense `rubygems_version` in input gemspec files</title>
<updated>2020-06-25T06:44:56+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2020-06-25T06:44:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9a78e24f7d269c9688a0fa50c82751b5ec8d512a'/>
<id>9a78e24f7d269c9688a0fa50c82751b5ec8d512a</id>
<content type='text'>
As it is ignored and set at building packages automatically, it is
just nonsense to set in gemspec file for input.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As it is ignored and set at building packages automatically, it is
just nonsense to set in gemspec file for input.
</pre>
</div>
</content>
</entry>
</feed>
