Sha256: d2cfef48b7992bc436a89d084a3aad7057791442319b4852676c1b59276ca73e

Contents?: true

Size: 293 Bytes

Versions: 2

Compression:

Stored size: 293 Bytes

Contents

module ActiveSupport
  # Returns the version of the currently loaded ActiveSupport as a Gem::Version
  def self.version
    Gem::Version.new "4.0.0"
  end

  module VERSION #:nodoc:
    MAJOR, MINOR, TINY, PRE = ActiveSupport.version.segments
    STRING = ActiveSupport.version.to_s
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
challah-1.0.0 vendor/bundle/gems/activesupport-4.0.0/lib/active_support/version.rb
activesupport-4.0.0 lib/active_support/version.rb