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

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