aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/version.rb
blob: 3d5d6c9be1e51321fe85041431b908c1eb60b232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActionView
  # Returns the version of the currently loaded ActionView as a Gem::Version
  def self.version
    Gem::Version.new "4.1.0.beta2"
  end

  module VERSION #:nodoc:
    MAJOR, MINOR, TINY, PRE = ActionView.version.segments
    STRING = ActionView.version.to_s
  end
end