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

10 lines
144 B
Ruby

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