version.rb 285 字节
Newer Older
1
module ActionPack
2 3
  # Returns the version of the currently loaded ActionPack as a Gem::Version
  def self.version
D
David Heinemeier Hansson 已提交
4
    Gem::Version.new "4.0.0.rc1"
5
  end
J
Jeremy Kemper 已提交
6

7 8 9
  module VERSION #:nodoc:
    MAJOR, MINOR, TINY, PRE = ActionPack.version.segments
    STRING = ActionPack.version.to_s
10 11
  end
end