Sha256: a3cbc3c0e126ba69e5ef3a885f2061c51fca0f866f65206158ad48565960346f
Contents?: true
Size: 353 Bytes
Versions: 9
Compression:
Stored size: 353 Bytes
Contents
# frozen_string_literal: true module ActiveSupport # Returns the version of the currently loaded Active Support as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 6 MINOR = 0 TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
9 entries across 9 versions & 3 rubygems