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