blob: ba6763a5724626d796ef3c3cadf8511fe25ce3b7 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
 | # frozen_string_literal: true
require_relative "gem_version"
module Rails
  # Returns the version of the currently loaded Rails as a string.
  def self.version
    VERSION::STRING
  end
end
 |