Sha256: e837f244f7aff07e7472785988555ed9e7ac20693af737a527dc138b9b6928ae
Contents?: true
Size: 346 Bytes
Versions: 9
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 = 6 MINOR = 0 TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
9 entries across 9 versions & 3 rubygems