1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/version.rb
David Heinemeier Hansson 54a75de3ec Prep for RC2
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-11-29 00:27:53 +00:00

9 lines
137 B
Ruby

module Rails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 99
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
end