aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/version.rb
blob: b746c55e55ddb20477bd84ae6133cf8e718a8847 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActionPack
  # Returns the version of the currently loaded ActionView 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