Sha256: de8d9806608da85d6f4baa95ed72840ace8cd2c3d37e6b3a1b1f83861ea1fc14

Contents?: true

Size: 322 Bytes

Versions: 2

Compression:

Stored size: 322 Bytes

Contents

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 = 5
    MINOR = 1
    TINY  = 5
    PRE   = nil

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

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/gem_version.rb
activesupport-5.1.5 lib/active_support/gem_version.rb