mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
10 lines
195 B
Ruby
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
|