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 /guides | |
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 'guides')
-rw-r--r-- | guides/source/command_line.md | 4 | ||||
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index b409f20122..8f6428db36 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -402,8 +402,8 @@ INFO: You can also use `rake -T` to get the list of tasks. $ bin/rake about About your application's environment Rails version 5.0.0 -Ruby version 2.2.1 (x86_64-linux) -RubyGems version 2.4.5 +Ruby version 2.2.2 (x86_64-linux) +RubyGems version 2.4.6 Rack version 1.6 JavaScript Runtime Node.js (V8) Middleware Rack::Sendfile, ActionDispatch::Static, Rack::Lock, #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x007ffd131a7c88>, Rack::Runtime, Rack::MethodOverride, ActionDispatch::RequestId, Rails::Rack::Logger, ActionDispatch::ShowExceptions, ActionDispatch::DebugExceptions, ActionDispatch::RemoteIp, ActionDispatch::Reloader, ActionDispatch::Callbacks, ActiveRecord::Migration::CheckPending, ActiveRecord::ConnectionAdapters::ConnectionManagement, ActiveRecord::QueryCache, ActionDispatch::Cookies, ActionDispatch::Session::CookieStore, ActionDispatch::Flash, ActionDispatch::ParamsParser, Rack::Head, Rack::ConditionalGet, Rack::ETag diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 5a6f267360..dcc53455f4 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -20,7 +20,7 @@ The best way to be sure that your application still works after upgrading is to Rails generally stays close to the latest released Ruby version when it's released: -* Rails 5 requires Ruby 2.2.1 or newer. +* Rails 5 requires Ruby 2.2.2 or newer. * Rails 4 prefers Ruby 2.0 and requires 1.9.3 or newer. * Rails 3.2.x is the last branch to support Ruby 1.8.7. * Rails 3 and above require Ruby 1.8.7 or higher. Support for all of the previous Ruby versions has been dropped officially. You should upgrade as early as possible. |