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