1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/version.rb
David Heinemeier Hansson 1acd54a5b4 Make ready for 2.0.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8330 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-12-07 13:37:13 +00:00

9 lines
144 B
Ruby

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