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