Class: Bundler::RubygemsIntegration::Future

Inherits:
Bundler::RubygemsIntegration show all
Defined in:
lib/bundler/rubygems_integration.rb

Overview

Rubygems 2.0

Direct Known Subclasses

MoreFuture

Constant Summary

Constants inherited from Bundler::RubygemsIntegration

EXT_LOCK

Instance Method Summary collapse

Methods inherited from Bundler::RubygemsIntegration

#backport_base_dir, #backport_cache_file, #backport_segment_generation, #backport_spec_file, #backport_yaml_initialize, #bin_path, #build_args, #build_args=, #build_gem, #clear_paths, #config_map, #configuration, #ext_lock, #fetch_prerelease_specs, #gem_bindir, #gem_cache, #gem_dir, #gem_path, #inflate, #loaded_gem_paths, #loaded_specs, #mark_loaded, #marshal_spec_dir, #path, #platforms, #preserve_paths, #provides?, provides?, #read_binary, #redefine_method, #replace_bin_path, #replace_entrypoints, #replace_gem, #replace_refresh, #reverse_rubygems_kernel_mixin, #ruby_engine, #security_policies, #security_policy_keys, #sources, #sources=, #spec_cache_dirs, #spec_from_gem, #stub_source_index, #ui=, #user_home, #validate, version, #version, #with_build_args

Instance Method Details

#all_specsObject



550
551
552
# File 'lib/bundler/rubygems_integration.rb', line 550

def all_specs
  Gem::Specification.to_a
end

#build(spec, skip_validation = false) ⇒ Object



598
599
600
601
# File 'lib/bundler/rubygems_integration.rb', line 598

def build(spec, skip_validation = false)
  require 'rubygems/package'
  Gem::Package.build(spec, skip_validation)
end

#download_gem(spec, uri, path) ⇒ Object



583
584
585
586
587
588
589
# File 'lib/bundler/rubygems_integration.rb', line 583

def download_gem(spec, uri, path)
  require 'resolv'
  uri = Bundler.settings.mirror_for(uri)
  proxy, dns = configuration[:http_proxy], Resolv::DNS.new
  fetcher = Gem::RemoteFetcher.new(proxy, dns)
  fetcher.download(spec, uri, path)
end

#fetch_all_remote_specsObject



567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
# File 'lib/bundler/rubygems_integration.rb', line 567

def fetch_all_remote_specs
  # Since SpecFetcher now returns NameTuples, we just fetch directly
  # and unmarshal the array ourselves.
  hash = {}

  Gem.sources.each do |source|
    source = URI.parse(source.to_s) unless source.is_a?(URI)
    hash[source] = fetch_specs(source, "specs")

    pres = fetch_specs(source, "prerelease_specs")
    hash[source].push(*pres) if pres && !pres.empty?
  end

  hash
end

#fetch_specs(source, name) ⇒ Object



558
559
560
561
562
563
564
565
# File 'lib/bundler/rubygems_integration.rb', line 558

def fetch_specs(source, name)
  path = source + "#{name}.#{Gem.marshal_version}.gz"
  string = Gem::RemoteFetcher.fetcher.fetch_path(path)
  Bundler.load_marshal(string)
rescue Gem::RemoteFetcher::FetchError => e
  # it's okay for prerelease to fail
  raise e unless name == "prerelease_specs"
end

#find_name(name) ⇒ Object



554
555
556
# File 'lib/bundler/rubygems_integration.rb', line 554

def find_name(name)
  Gem::Specification.find_all_by_name name
end

#gem_from_path(path, policy = nil) ⇒ Object



591
592
593
594
595
596
# File 'lib/bundler/rubygems_integration.rb', line 591

def gem_from_path(path, policy = nil)
  require 'rubygems/package'
  p = Gem::Package.new(path)
  p.security_policy = policy if policy
  return p
end

#repository_subdirectoriesObject



603
604
605
# File 'lib/bundler/rubygems_integration.rb', line 603

def repository_subdirectories
  Gem::REPOSITORY_SUBDIRECTORIES
end

#stub_rubygems(specs) ⇒ Object



542
543
544
545
546
547
548
# File 'lib/bundler/rubygems_integration.rb', line 542

def stub_rubygems(specs)
  Gem::Specification.all = specs

  Gem.post_reset do
    Gem::Specification.all = specs
  end
end