mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
87b3e226d6
This reverts commit3420a14590
, reversing changes made toafb66a5a59
.
13 lines
329 B
Ruby
13 lines
329 B
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 Ruby 2.2.2 or newer.
|
|
|
|
You're running
|
|
#{desc}
|
|
|
|
Please upgrade to Ruby 2.2.2 or newer to continue.
|
|
|
|
end_message
|
|
end
|