Sha256: 4ceb5e3e3e0ffd2033b47f0a4ca264b1ba0b2a4ebf656afe8a277f9db2b4397d

Contents?: true

Size: 342 Bytes

Versions: 2

Compression:

Stored size: 342 Bytes

Contents

# frozen_string_literal: true

module ActiveSupport
  # Returns the currently loaded version of Active Support as a +Gem::Version+.
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 7
    MINOR = 1
    TINY  = 3
    PRE   = nil

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3/lib/active_support/gem_version.rb
activesupport-7.1.3 lib/active_support/gem_version.rb