<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/sample, branch v3_1_6</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Fix typos [ci skip]</title>
<updated>2021-11-03T10:11:45+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-11-03T10:11:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e9a13332e838b12a253ed7fda9f8b622a059b6b1'/>
<id>e9a13332e838b12a253ed7fda9f8b622a059b6b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up lambda output from exyacc.rb</title>
<updated>2021-08-26T01:23:56+00:00</updated>
<author>
<name>Kevin Newton</name>
<email>kddnewton@gmail.com</email>
</author>
<published>2021-08-25T13:32:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f4b88959d51e02d6253f0132833dc47cf915ffa2'/>
<id>f4b88959d51e02d6253f0132833dc47cf915ffa2</id>
<content type='text'>
The `lambda_body` grammar rule has a `"}"`, which is throwing off the `exyacc.rb` regular expressions. This changes the regular expression to account for `"}"` as well, which makes the output of `ruby sample/exyacc.rb &lt; parse.y` change by the following diff:

```diff
632,634d631
&lt; 		    ", &amp;@3);
&lt; 			$$ = $2;
&lt; 		    }
```

Which makes it closer to a valid EBNF.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `lambda_body` grammar rule has a `"}"`, which is throwing off the `exyacc.rb` regular expressions. This changes the regular expression to account for `"}"` as well, which makes the output of `ruby sample/exyacc.rb &lt; parse.y` change by the following diff:

```diff
632,634d631
&lt; 		    ", &amp;@3);
&lt; 			$$ = $2;
&lt; 		    }
```

Which makes it closer to a valid EBNF.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer qualified names under Thread</title>
<updated>2021-06-29T02:41:10+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-06-28T14:01:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9eae8cdefba61e9e51feb30a4b98525593169666'/>
<id>9eae8cdefba61e9e51feb30a4b98525593169666</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Doc] Fix a typo s/interseting/interesting/</title>
<updated>2021-03-22T06:33:32+00:00</updated>
<author>
<name>Kenichi Kamiya</name>
<email>kachick1@gmail.com</email>
</author>
<published>2021-03-22T04:27:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ec4a41c4dd40a09e58389a2cb3a956df6046a710'/>
<id>ec4a41c4dd40a09e58389a2cb3a956df6046a710</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/openssl] sample: update obsolete API use</title>
<updated>2021-03-16T10:37:06+00:00</updated>
<author>
<name>Kazuki Yamaguchi</name>
<email>k@rhe.jp</email>
</author>
<published>2021-02-25T07:55:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7f0b3fb9060b75b4f15b8e7e5866d2c13c132c29'/>
<id>7f0b3fb9060b75b4f15b8e7e5866d2c13c132c29</id>
<content type='text'>
https://github.com/ruby/openssl/commit/dafa851c0d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/openssl/commit/dafa851c0d
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/openssl] sample: avoid "include OpenSSL"</title>
<updated>2021-03-16T10:37:06+00:00</updated>
<author>
<name>Kazuki Yamaguchi</name>
<email>k@rhe.jp</email>
</author>
<published>2021-02-25T07:49:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e35d3623de47b1a8d699f431460fbcba36de84f2'/>
<id>e35d3623de47b1a8d699f431460fbcba36de84f2</id>
<content type='text'>
It is not a common practice and should not be done since it causes name
clash: for example, Digest and Random are provided by other standard
libraries of Ruby.

Fixes: https://github.com/ruby/openssl/issues/419

https://github.com/ruby/openssl/commit/6a6444984b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is not a common practice and should not be done since it causes name
clash: for example, Digest and Random are provided by other standard
libraries of Ruby.

Fixes: https://github.com/ruby/openssl/issues/419

https://github.com/ruby/openssl/commit/6a6444984b
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/openssl] pkey: prefer PKey.read over PKey::RSA.new in docs</title>
<updated>2021-03-16T10:16:10+00:00</updated>
<author>
<name>Kazuki Yamaguchi</name>
<email>k@rhe.jp</email>
</author>
<published>2017-03-21T18:51:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=10d360847baf3394b7d9cd0dca6fa6908a2ce604'/>
<id>10d360847baf3394b7d9cd0dca6fa6908a2ce604</id>
<content type='text'>
https://github.com/ruby/openssl/commit/cf92a3ffba
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/openssl/commit/cf92a3ffba
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove samples for test-unit</title>
<updated>2021-01-16T21:08:21+00:00</updated>
<author>
<name>Sutou Kouhei</name>
<email>kou@clear-code.com</email>
</author>
<published>2021-01-16T21:08:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a4a6cb036e4b374a9616cf38f4d8d74ac4478d8d'/>
<id>a4a6cb036e4b374a9616cf38f4d8d74ac4478d8d</id>
<content type='text'>
They are no longer needed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
They are no longer needed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move rss samples to ruby/rss</title>
<updated>2021-01-16T21:07:54+00:00</updated>
<author>
<name>Sutou Kouhei</name>
<email>kou@clear-code.com</email>
</author>
<published>2021-01-16T21:07:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f2767cf09174bfe5340c9269a2fa53f226f97ba8'/>
<id>f2767cf09174bfe5340c9269a2fa53f226f97ba8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sample/trick2015/kinaba/entry.rb: The constant "Data" has been removed</title>
<updated>2020-12-23T16:51:46+00:00</updated>
<author>
<name>Yusuke Endoh</name>
<email>mame@ruby-lang.org</email>
</author>
<published>2020-12-23T16:50:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a8fc72f5a8c30ef7b5e78824e15e9868f52a3c33'/>
<id>a8fc72f5a8c30ef7b5e78824e15e9868f52a3c33</id>
<content type='text'>
Instead, use "Proc" as a 4-letter constant.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead, use "Proc" as a 4-letter constant.
</pre>
</div>
</content>
</entry>
</feed>
