[前][次][番号順一覧][スレッド一覧]

ruby-changes:72641

From: John <ko1@a...>
Date: Fri, 22 Jul 2022 12:06:28 +0900 (JST)
Subject: [ruby-changes:72641] 030c41bf55 (master): Improve user-facing messages by consistent casing of Ruby/RubyGems

https://git.ruby-lang.org/ruby.git/commit/?id=030c41bf55

From 030c41bf557870cfdff9c818e8684451cac78163 Mon Sep 17 00:00:00 2001
From: John Labovitz <johnl@j...>
Date: Thu, 3 Nov 2016 10:21:57 -0400
Subject: 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' https://github.com/ruby/ruby/blob/trunk/bin/gem#L12
 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
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]