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
Jeremy Kemper 335c15005d Bump versions for 1.2.4 release.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7744 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-10-05 05:20:37 +00:00

9 lines
144 B
Ruby

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