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