diff options
author | aycabta <[email protected]> | 2019-04-27 14:53:09 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-04-30 11:44:20 +0900 |
commit | 17350c7e5534c8678097d70698fe08614a6c3997 (patch) | |
tree | 0f41959093014a97d50aeb06a052f5450b4cb6b1 /lib/readline.rb | |
parent | eb45ba61160dbae412407f232fe9b3252eb99362 (diff) |
Add Reline as a fallback library for Readline
* 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.
Diffstat (limited to 'lib/readline.rb')
-rw-r--r-- | lib/readline.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/readline.rb b/lib/readline.rb new file mode 100644 index 0000000000..690441e05c --- /dev/null +++ b/lib/readline.rb @@ -0,0 +1,6 @@ +begin + require 'readline.so' +rescue LoadError + require 'reline' + Readline = Reline +end |