1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_pack/version.rb

12 lines
286 B
Ruby
Raw Normal View History

module ActionPack
# Returns the version of the currently loaded ActionPack as a Gem::Version
def self.version
2013-04-29 12:06:45 -04:00
Gem::Version.new "4.1.0.beta"
end
module VERSION #:nodoc:
MAJOR, MINOR, TINY, PRE = ActionPack.version.segments
STRING = ActionPack.version.to_s
end
end