blob: 5eb7f7e205b4d2b9b98c0dac830605f4be067bcd (
plain) (
tree)
|
|
module ActiveRecord
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
def self.version
Gem::Version.new "4.2.0.alpha"
end
module VERSION #:nodoc:
MAJOR, MINOR, TINY, PRE = ActiveRecord.version.segments
STRING = ActiveRecord.version.to_s
end
end
|