Sha256: 6393a6aef93ea121ce865f2fdebad510d12fa92c2ae945065505493b5df5e5d1

Contents?: true

Size: 320 Bytes

Versions: 3

Compression:

Stored size: 320 Bytes

Contents

module ActiveSupport
  # Returns the version of the currently loaded ActiveSupport as a <tt>Gem::Version</tt>
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 4
    MINOR = 1
    TINY  = 1
    PRE   = nil

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

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
whos_dated_who-0.1.0 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/gem_version.rb
whos_dated_who-0.0.1 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/gem_version.rb
activesupport-4.1.1 lib/active_support/gem_version.rb