Put quotes around gem name in post-install message.

The post-install message for this gem instructs the user to run `require
treat` from irb, however, the actual, functioning line of code involves
quotes, namely, `require 'treat'`.
This commit is contained in:
jbranchaud 2015-02-14 00:21:39 -06:00
parent e753389911
commit b7c6ae452b
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ Gem::Specification.new do |s|
# Post-install message
s.post_install_message = %q{Thanks for installing Treat.
To complete the installation, run `require treat` in an IRB
To complete the installation, run `require 'treat'` in an IRB
terminal, followed by `Treat::Core::Installer.install`. }
end