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