Sha256: e02385b3b56cafbc76d099608f9ad0a48bb42682fd1856ca9e9679d6e0f73311
Contents?: true
Size: 322 Bytes
Versions: 16
Compression:
Stored size: 322 Bytes
Contents
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 = 5 MINOR = 0 TINY = 2 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
16 entries across 15 versions & 4 rubygems