blob: dd652190f7b5b12bdfe546069f3a742f9dd4b5d6 (
plain) (
tree)
|
|
module ActiveModel
# Returns the version of the currently loaded Active Model as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 4
MINOR = 2
TINY = 0
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end
|