Sha256: 22a74688cf4a811158066b823233bbf48878bcad334f685bc906268bbfa3e1bb
Contents?: true
Size: 315 Bytes
Versions: 3
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 = 4 MINOR = 2 TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
3 entries across 3 versions & 3 rubygems