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
Michael Koziarski 5f86451a4c Bump the Version constants to align with the *next* release rather than the previous release.
This allows people tracking non-release gems or git submodules to use the constants.
2008-09-22 21:32:12 +02:00

9 lines
144 B
Ruby

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