Sha256: f46a36c366e261db0f71ee44db03c5f34c4ceb5552b7f4e418aaa0fca96a0e6f
Contents?: true
Size: 353 Bytes
Versions: 5
Compression:
Stored size: 353 Bytes
Contents
# frozen_string_literal: true module ActiveSupport # Returns the version of the currently loaded Active Support as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 6 MINOR = 1 TINY = 4 PRE = "4" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
5 entries across 5 versions & 3 rubygems