Sha256: 332cbcb88080afa0606bd8d391c6f4d8fc0463540b841c985b18478a3a52387d
Contents?: true
Size: 335 Bytes
Versions: 48
Compression:
Stored size: 335 Bytes
Contents
# frozen_string_literal: true module Rails # Returns the version of the currently loaded Rails as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 5 MINOR = 2 TINY = 2 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
48 entries across 48 versions & 2 rubygems