aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/ruby_version_check.rb
blob: 9131c51e91d320ba704865a53bfd8ad657509a11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
if RUBY_VERSION < '2.2.1' && 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.

    You're running
      #{desc}

    Please upgrade to Ruby 2.2.1 or newer to continue.

  end_message
end