aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/version.rb
blob: df351c423846daa03a514d13b6db687e971905f1 (plain) (blame)
1
2
3
4
5
6
7
8
require_relative 'gem_version'

module Rails
  # Returns the version of the currently loaded Rails as a string.
  def self.version
    VERSION::STRING
  end
end