Files
rails/activerecord/lib/active_record/version.rb
David Heinemeier Hansson f9db7695fe Making ready for release of 2.1
2008-05-31 17:03:03 -07:00

10 lines
143 B
Ruby

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