1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/readline] Use a box to make easier to see the message

https://github.com/ruby/readline/commit/e49e942053
This commit is contained in:
aycabta 2019-12-25 10:47:34 +09:00
parent 57c74841c7
commit e51a34511c

View file

@ -18,13 +18,15 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.post_install_message = <<~EOM
This is just a loader for "readline". If Ruby has "readline-ext" gem that
is a native extension, this gem will load it first. If Ruby doesn't have
the "readline-ext" gem this gem will load "reline" that is a compatible
library with "readline-ext" gem and is implemented by pure Ruby.
If you intend to use GNU Readline by `require 'readline'`, please install
"readline-ext" gem.
+---------------------------------------------------------------------------+
| This is just a loader for "readline". If Ruby has "readline-ext" gem that |
| is a native extension, this gem will load it first. If Ruby doesn't have |
| the "readline-ext" gem this gem will load "reline" that is a compatible   |
| library with "readline-ext" gem and is implemented by pure Ruby.          |
|                                                                           |
| If you intend to use GNU Readline by `require 'readline'`, please install |
| "readline-ext" gem.                                                       |
+---------------------------------------------------------------------------+
EOM
spec.add_runtime_dependency 'reline'