Sha256: 1499281220a5878ecf3dfae87b65daf418cef27652b7fa13eaaad2e70a5b5623
Contents?: true
Size: 882 Bytes
Versions: 2
Compression:
Stored size: 882 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 platform @spec.platform end def installable_platform? # BACKCOMPAT If the file is coming out of a specified file, then we # ignore the platform. This code can be removed in RG 3.0. if @source.kind_of? Gem::Source::SpecificFile return true else Gem::Platform.match @spec.platform end 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.11 | lib/rubygems/dependency_resolver/installed_specification.rb |
rubygems-update-2.1.10 | lib/rubygems/dependency_resolver/installed_specification.rb |