diff options
author | Jon Atack <jonnyatack@gmail.com> | 2015-04-14 08:41:56 +0530 |
---|---|---|
committer | Jon Atack <jonnyatack@gmail.com> | 2015-04-14 08:41:56 +0530 |
commit | 32f7491808d2c4e097ed7b3ee875e4d1cea8c442 (patch) | |
tree | 9bc4424d700aaccebf6284858d3668cc721adc98 /railties/lib | |
parent | 347266280efd887fd6f41ac8583ba87c9281b22e (diff) | |
download | rails-32f7491808d2c4e097ed7b3ee875e4d1cea8c442.tar.gz rails-32f7491808d2c4e097ed7b3ee875e4d1cea8c442.tar.bz2 rails-32f7491808d2c4e097ed7b3ee875e4d1cea8c442.zip |
Upgrade to Ruby 2.2.2
and fix the grammar in the ruby_version_check.rb user message.
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/ruby_version_check.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/ruby_version_check.rb b/railties/lib/rails/ruby_version_check.rb index 9131c51e91..67a19d8a94 100644 --- a/railties/lib/rails/ruby_version_check.rb +++ b/railties/lib/rails/ruby_version_check.rb @@ -1,13 +1,13 @@ -if RUBY_VERSION < '2.2.1' && RUBY_ENGINE == 'ruby' +if RUBY_VERSION < '2.2.2' && RUBY_ENGINE == 'ruby' desc = defined?(RUBY_DESCRIPTION) ? RUBY_DESCRIPTION : "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE})" abort <<-end_message - Rails 5 requires to run on Ruby 2.2.1 or newer. + Rails 5 requires Ruby 2.2.2 or newer. You're running #{desc} - Please upgrade to Ruby 2.2.1 or newer to continue. + Please upgrade to Ruby 2.2.2 or newer to continue. end_message end |