Files
rails/activemodel/lib/active_model/version.rb
Rafael Mendonça França 2fcd13eff2 Preparing for 3.2.14 release
2013-07-22 12:05:41 -03:00

11 lines
172 B
Ruby

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