rails/version.rb

16 lines
305 B
Ruby
Raw Normal View History

module Rails
# Returns the version of the currently loaded Rails as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 4
2013-04-30 00:06:45 +08:00
MINOR = 1
2015-10-31 03:55:48 +08:00
TINY = 14
2016-01-26 02:26:09 +08:00
PRE = "1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end