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