Sha256: 0333196fd417507e697f01e46904a079fc57d37fb7cb763f9a96a35f6d604fb8

Contents?: true

Size: 545 Bytes

Versions: 2

Compression:

Stored size: 545 Bytes

Contents

class Gem::DependencyResolver::InstalledSpecification

  attr_reader :spec

  def initialize set, spec, source=nil
    @set    = set
    @source = source
    @spec   = spec
  end

  def == other # :nodoc:
    self.class === other and
      @set  == other.set and
      @spec == other.spec
  end

  def dependencies
    @spec.dependencies
  end

  def full_name
    "#{@spec.name}-#{@spec.version}"
  end

  def name
    @spec.name
  end

  def source
    @source ||= Gem::Source::Installed.new
  end

  def version
    @spec.version
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubygems-update-2.1.0.rc.2 lib/rubygems/dependency_resolver/installed_specification.rb
rubygems-update-2.1.0.rc.1 lib/rubygems/dependency_resolver/installed_specification.rb