1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/version.rb
2013-03-21 19:56:07 +11:00

10 lines
195 B
Ruby

module Rails
def self.version
Gem::Version.new "4.0.0.beta1"
end
module VERSION #:nodoc:
MAJOR, MINOR, TINY, PRE = Rails.version.segments
STRING = Rails.version.to_s
end
end