Files
rails/activerecord/lib/active_record/version.rb
David Heinemeier Hansson 00050dfedb Include the calculations fix for a new release of AR
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4203 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2006-04-09 21:27:32 +00:00

10 lines
144 B
Ruby

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