rails--rails/version.rb

11 lines
159 B
Ruby
Raw Normal View History

module Rails
module VERSION
MAJOR = 4
2013-04-29 16:06:45 +00:00
MINOR = 1
TINY = 0
2013-04-29 16:06:45 +00:00
PRE = "beta"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end