Files
rails/activemodel/lib/active_model/version.rb
Rafael Mendonça França a96df04aac Preparing for 3.2.14.rc2 release
2013-07-16 13:00:33 -03:00

11 lines
174 B
Ruby

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