1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionview/lib/action_view/version.rb
2013-06-20 19:11:32 +02:00

11 lines
286 B
Ruby

module ActionView
# Returns the version of the currently loaded ActionView as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta"
end
module VERSION #:nodoc:
MAJOR, MINOR, TINY, PRE = ActionView.version.segments
STRING = ActionView.version.to_s
end
end