9 lines
161 B
Ruby
9 lines
161 B
Ruby
|
require_relative "gem_version"
|
||
|
|
||
|
module Rails
|
||
|
# Returns the version of the currently loaded Rails as a string.
|
||
|
def self.version
|
||
|
VERSION::STRING
|
||
|
end
|
||
|
end
|