Sha256: 5671d7a59347595389322f59c6eb1254cc8b74252e9695e273bd4336446c3bee
Contents?: true
Size: 335 Bytes
Versions: 13
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 = 3 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
13 entries across 13 versions & 3 rubygems