<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/reline/kill_ring.rb, branch v3_4_9</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/reline] Ensure compatibility with frozen string literals</title>
<updated>2024-03-14T16:09:12+00:00</updated>
<author>
<name>Jean byroot Boussier</name>
<email>jean.boussier+github@shopify.com</email>
</author>
<published>2024-03-14T16:09:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=161545d55d894f42535fa5de7ac19cfb57122a2d'/>
<id>161545d55d894f42535fa5de7ac19cfb57122a2d</id>
<content type='text'>
(https://github.com/ruby/reline/pull/643)

Ref: https://bugs.ruby-lang.org/issues/20205

Ruby is moving forward with enabling frozen string literals
in the future.

Reline being part of the ruby-core test suite should work when
ruby is ran with `--enable-frozen-string-literal`.

https://github.com/ruby/reline/commit/7e2de64cf0

Co-authored-by: Jean Boussier &lt;jean.boussier@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(https://github.com/ruby/reline/pull/643)

Ref: https://bugs.ruby-lang.org/issues/20205

Ruby is moving forward with enabling frozen string literals
in the future.

Reline being part of the ruby-core test suite should work when
ruby is ran with `--enable-frozen-string-literal`.

https://github.com/ruby/reline/commit/7e2de64cf0

Co-authored-by: Jean Boussier &lt;jean.boussier@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/reline] Revert kill_ring.rb file permission</title>
<updated>2023-12-29T08:23:28+00:00</updated>
<author>
<name>tomoya ishida</name>
<email>tomoyapenguin@gmail.com</email>
</author>
<published>2023-12-29T08:23:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6f33e3c53dd97426b91b97b7239a1b9a3dd6a446'/>
<id>6f33e3c53dd97426b91b97b7239a1b9a3dd6a446</id>
<content type='text'>
(https://github.com/ruby/reline/pull/623)

https://github.com/ruby/reline/commit/38e9cb2899
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(https://github.com/ruby/reline/pull/623)

https://github.com/ruby/reline/commit/38e9cb2899
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/reline] Replace `object_id` comparison with `equal?`</title>
<updated>2023-12-29T04:05:28+00:00</updated>
<author>
<name>Alexander Momchilov</name>
<email>amomchilov@users.noreply.github.com</email>
</author>
<published>2023-12-29T04:05:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bc3b9356b2c885b1ea268330afcf20e1ab3a4704'/>
<id>bc3b9356b2c885b1ea268330afcf20e1ab3a4704</id>
<content type='text'>
(https://github.com/ruby/reline/pull/617)

https://github.com/ruby/reline/commit/63deef4ae5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(https://github.com/ruby/reline/pull/617)

https://github.com/ruby/reline/commit/63deef4ae5
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/reline] Add Enumerable to KillRing for debugging</title>
<updated>2020-12-18T17:12:11+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2020-12-18T13:25:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=671f2762fb8a4832d2c17322ee600f53c91f76f5'/>
<id>671f2762fb8a4832d2c17322ee600f53c91f76f5</id>
<content type='text'>
https://github.com/ruby/reline/commit/d208874152
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/reline/commit/d208874152
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Reline as a fallback library for Readline</title>
<updated>2019-04-30T02:44:20+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2019-04-27T05:53:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=17350c7e5534c8678097d70698fe08614a6c3997'/>
<id>17350c7e5534c8678097d70698fe08614a6c3997</id>
<content type='text'>
* lib/reine.rb, lib/reline/*: Reline is a readline stdlib compatible
  library.
* lib/readline.rb: Readline uses a fallback to Reline when ext/readline
  doesn't exist.
* tool/sync_default_gems.rb: add ruby/reline as a default gem.
* appveyor.yml: add "set RELINE_TEST_ENCODING=Windows-31J" for test suit
  of Reline, and add "--exclude readline" to "nmake test-all" on Visual
  Studio builds because of strange behavior.
* spec/ruby/library/readline/spec_helper.rb: skip Reline as with
  RbReadline.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lib/reine.rb, lib/reline/*: Reline is a readline stdlib compatible
  library.
* lib/readline.rb: Readline uses a fallback to Reline when ext/readline
  doesn't exist.
* tool/sync_default_gems.rb: add ruby/reline as a default gem.
* appveyor.yml: add "set RELINE_TEST_ENCODING=Windows-31J" for test suit
  of Reline, and add "--exclude readline" to "nmake test-all" on Visual
  Studio builds because of strange behavior.
* spec/ruby/library/readline/spec_helper.rb: skip Reline as with
  RbReadline.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "IRB is improved with Reline and RDoc, take 2"</title>
<updated>2019-04-23T12:55:29+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2019-04-23T12:55:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f4f66bd11c65882b86e0acf4d58f15fb596f25cf'/>
<id>f4f66bd11c65882b86e0acf4d58f15fb596f25cf</id>
<content type='text'>
Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42
"Adjusted indents".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42
"Adjusted indents".
</pre>
</div>
</content>
</entry>
<entry>
<title>IRB is improved with Reline and RDoc, take 2</title>
<updated>2019-04-23T11:08:02+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2019-04-23T09:09:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f2cd4f4cd0a1e352fcc48a216127beaeda2b2399'/>
<id>f2cd4f4cd0a1e352fcc48a216127beaeda2b2399</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "IRB is improved with Reline and RDoc"</title>
<updated>2019-04-21T09:13:49+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2019-04-21T09:13:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=51cec00953ff8d7baa483d3846aa1dbdb89101aa'/>
<id>51cec00953ff8d7baa483d3846aa1dbdb89101aa</id>
<content type='text'>
This reverts commit 7f273ac6d0f05208b5b228da95205e20c0e8286c.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 7f273ac6d0f05208b5b228da95205e20c0e8286c.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>IRB is improved with Reline and RDoc</title>
<updated>2019-04-20T08:51:20+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2019-04-20T08:51:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7f273ac6d0f05208b5b228da95205e20c0e8286c'/>
<id>7f273ac6d0f05208b5b228da95205e20c0e8286c</id>
<content type='text'>
Reline is a readline stdlib compatible library. It also supports
multiline input. IRB is improved with Reline and supports multiline.
Besides, supports showing documents when completed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reline is a readline stdlib compatible library. It also supports
multiline input. IRB is improved with Reline and supports multiline.
Besides, supports showing documents when completed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
