[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.217.154: ~ $
# frozen_string_literal: true
##
# A GitSpecification represents a gem that is sourced from a git repository
# and is being loaded through a gem dependencies file through the +git:+
# option.

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

  def add_dependency(dependency) # :nodoc:
    spec.dependencies << dependency
  end

  ##
  # Installing a git gem only involves building the extensions and generating
  # the executables.

  def install(options = {})
    require_relative '../installer'

    installer = Gem::Installer.for_spec spec, options

    yield installer if block_given?

    installer.run_pre_install_hooks
    installer.build_extensions
    installer.run_post_build_hooks
    installer.generate_bin
    installer.run_post_install_hooks
  end

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

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

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

      q.breakable
      q.text "source:"
      q.breakable
      q.pp @source
    end
  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