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 c7a6b9862d Prepared for release of 0.14.2 (RC3)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2737 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-10-25 22:11:48 +00:00

9 lines
144 B
Ruby

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