[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.217.154: ~ $
# frozen_string_literal: true
##
# An InstalledSpecification represents a gem that is already installed
# locally.

class Gem::Resolver::InstalledSpecification < Gem::Resolver::SpecSpecification
  def ==(other) # :nodoc:
    self.class === other and
      @set  == other.set and
      @spec == other.spec
  end

  ##
  # This is a null install as this specification is already installed.
  # +options+ are ignored.

  def install(options = {})
    yield nil
  end

  ##
  # Returns +true+ if this gem is installable for the current platform.

  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.
    return true if @source.kind_of? Gem::Source::SpecificFile

    super
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[InstalledSpecification', ']' do
      q.breakable
      q.text "name: #{name}"

      q.breakable
      q.text "version: #{version}"

      q.breakable
      q.text "platform: #{platform}"

      q.breakable
      q.text 'dependencies:'
      q.breakable
      q.pp spec.dependencies
    end
  end

  ##
  # The source for this specification

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

Filemanager

Name Type Size Permission Actions
api_set Folder 0755
molinillo Folder 0755
activation_request.rb File 2.9 KB 0644
api_set.rb File 2.84 KB 0644
api_specification.rb File 2.74 KB 0644
best_set.rb File 1.62 KB 0644
composed_set.rb File 1.18 KB 0644
conflict.rb File 3.25 KB 0644
current_set.rb File 280 B 0644
dependency_request.rb File 2.25 KB 0644
git_set.rb File 2.88 KB 0644
git_specification.rb File 1.27 KB 0644
index_set.rb File 1.41 KB 0644
index_specification.rb File 2.29 KB 0644
installed_specification.rb File 1.21 KB 0644
installer_set.rb File 6.47 KB 0644
local_specification.rb File 805 B 0644
lock_set.rb File 1.67 KB 0644
lock_specification.rb File 1.81 KB 0644
molinillo.rb File 73 B 0644
requirement_list.rb File 1.33 KB 0644
set.rb File 1.22 KB 0644
source_set.rb File 900 B 0644
spec_specification.rb File 1.33 KB 0644
specification.rb File 2.66 KB 0644
stats.rb File 957 B 0644
vendor_set.rb File 1.91 KB 0644
vendor_specification.rb File 579 B 0644