Sha256: 10689f4115d039b299b16f47ad0d9726330b35c8d7128405b1079962f4099e96
Contents?: true
Size: 315 Bytes
Versions: 4
Compression:
Stored size: 315 Bytes
Contents
module ActionView # Returns the version of the currently loaded ActionView 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