mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
287 B
Ruby
11 lines
287 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.beta1"
|
|
end
|
|
|
|
module VERSION #:nodoc:
|
|
MAJOR, MINOR, TINY, PRE = ActionView.version.segments
|
|
STRING = ActionView.version.to_s
|
|
end
|
|
end
|