Sha256: db6aa8a3f43a198d125010e30b5543c6eb7c47d6e3c0fb95ceae5d255cc1f855
Contents?: true
Size: 346 Bytes
Versions: 9
Compression:
Stored size: 346 Bytes
Contents
# frozen_string_literal: true module ActionPack # Returns the version of the currently loaded Action Pack 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