mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
800bab79b3
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
23 lines
572 B
Ruby
23 lines
572 B
Ruby
if RUBY_VERSION < '1.8.7'
|
|
desc = defined?(RUBY_DESCRIPTION) ? RUBY_DESCRIPTION : "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE})"
|
|
abort <<-end_message
|
|
|
|
Rails 3 requires Ruby 1.8.7 or 1.9.2.
|
|
|
|
You're running
|
|
#{desc}
|
|
|
|
Please upgrade to continue.
|
|
|
|
end_message
|
|
elsif RUBY_VERSION > '1.9' and RUBY_VERSION < '1.9.2'
|
|
$stderr.puts <<-end_message
|
|
|
|
Rails 3 doesn't officially support Ruby 1.9.1 since recent stable
|
|
releases have segfaulted the test suite. Please upgrade to Ruby 1.9.2.
|
|
|
|
You're running
|
|
#{RUBY_DESCRIPTION}
|
|
|
|
end_message
|
|
end
|