blob: ab5339bf24aae9982b96237b0f9b8b848351857a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | # frozen_string_literal: true
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.5.0") && RUBY_ENGINE == "ruby"
  desc = defined?(RUBY_DESCRIPTION) ? RUBY_DESCRIPTION : "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE})"
  abort <<-end_message
    Rails 6 requires Ruby 2.5.0 or newer.
    You're running
      #{desc}
    Please upgrade to Ruby 2.5.0 or newer to continue.
  end_message
end
 |