mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
96d0f751f9
[This article](http://weblog.rubyonrails.org/2014/8/20/Rails-4-2-beta1/#maintenance-consequences-and-rails-5-0) states that: > Rails 5.0 is in most likelihood going to target Ruby 2.2. Before the exact minimum version is fully decided, @arthurnn [suggests](https://github.com/rails/rails/pull/17830#issuecomment-64940383) that **at least** version 2.1.0 **must** be required by the `gemspec` files.
13 lines
312 B
Ruby
13 lines
312 B
Ruby
if RUBY_VERSION < '2.1.0'
|
|
desc = defined?(RUBY_DESCRIPTION) ? RUBY_DESCRIPTION : "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE})"
|
|
abort <<-end_message
|
|
|
|
Rails 5 requires to run on Ruby 2.1 or newer.
|
|
|
|
You're running
|
|
#{desc}
|
|
|
|
Please upgrade to Ruby 2.1.0 or newer to continue.
|
|
|
|
end_message
|
|
end
|