mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
267 B
Ruby
11 lines
267 B
Ruby
module Rails
|
|
# Returns the version of the currently loaded Rails as a Gem::Version
|
|
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
|