rails--rails/version.rb

11 lines
158 B
Ruby
Raw Normal View History

module Rails
module VERSION
MAJOR = 4
MINOR = 0
TINY = 0
2013-04-29 15:29:18 +00:00
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end