rails/activesupport/lib/active_support/version.rb
David Heinemeier Hansson 2555b885ed Really ready for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2687 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-10-19 14:28:55 +00:00

10 lines
144 B
Ruby

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