1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/active_record/version.rb
David Heinemeier Hansson 0633bb865b Update versions to match latest from stable
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3543 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2006-02-05 00:59:57 +00:00

9 lines
144 B
Ruby

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