summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-12-25 10:47:34 +0900
committeraycabta <aycabta@gmail.com>2019-12-25 10:57:38 +0900
commite51a34511c9e4394467cde24deee19cf8536a3e7 (patch)
treef067ddc003ec41f5d4e869f3bdca0f39bcc26370 /lib
parent57c74841c7bc2bb2ffbb8ed89597e993116e26a8 (diff)
[ruby/readline] Use a box to make easier to see the message
https://github.com/ruby/readline/commit/e49e942053
Diffstat (limited to 'lib')
-rw-r--r--lib/readline.gemspec16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/readline.gemspec b/lib/readline.gemspec
index 480c87945a..1fcec04702 100644
--- a/lib/readline.gemspec
+++ b/lib/readline.gemspec
@@ -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'