Sha256: fd9f6438d4c6244a6facb3d1458fdcc4c043933ccf9d4214a24cbe5bfbab2de7
Contents?: true
Size: 349 Bytes
Versions: 2
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true module ActiveSupport # Returns the currently loaded version of Active Support as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 0 TINY = 4 PRE = "3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
fluent-plugin-google-cloud-logging-on-prem-0.1.0 | vendor/ruby/3.1.0/gems/activesupport-7.0.4.3/lib/active_support/gem_version.rb |
activesupport-7.0.4.3 | lib/active_support/gem_version.rb |