Files
rails/activemodel/lib/active_model/version.rb
Santiago Pastorino 64146cf7ba Bump to 3.2.8
2012-08-09 16:26:36 -03:00

11 lines
171 B
Ruby

module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
TINY = 8
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end