From 030c41bf557870cfdff9c818e8684451cac78163 Mon Sep 17 00:00:00 2001 From: John Labovitz Date: Thu, 3 Nov 2016 10:21:57 -0400 Subject: [PATCH] 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. --- bin/gem | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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