rails/version.rb

18 lines
336 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Rails
2022-03-15 20:18:37 +00:00
# Returns the currently loaded version of Rails as a <tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 7
2021-12-07 15:52:30 +00:00
MINOR = 1
TINY = 0
2021-12-07 15:52:30 +00:00
PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end