aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJohn Labovitz <johnl@johnlabovitz.com>2016-11-03 10:21:57 -0400
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-07-22 12:06:05 +0900
commit030c41bf557870cfdff9c818e8684451cac78163 (patch)
treea598c49bb9b8a71d2d1a76affc1c03d0c267ad31 /bin
parentc6aa65430fbb94651f4d15e2a976f59b5475ca19 (diff)
downloadruby-030c41bf557870cfdff9c818e8684451cac78163.tar.gz
Improve user-facing messages by consistent casing of Ruby/RubyGems
(when it referred to the general concept and not a path), single-spacing between sentences, and a few other small issues.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gem2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gem b/bin/gem
index a4ec754abb..2869ce928f 100755
--- a/bin/gem
+++ b/bin/gem
@@ -12,7 +12,7 @@ require 'rubygems/exceptions'
required_version = Gem::Requirement.new ">= 1.8.7"
unless required_version.satisfied_by? Gem.ruby_version then
- abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
+ abort "Expected Ruby version #{required_version}, is #{Gem.ruby_version}"
end
args = ARGV.clone