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