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, #load_path_insert_index, #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, #set_installed_by_version, #sources, #sources=, #spec_cache_dirs, #spec_from_gem, #spec_missing_extensions?, #stub_source_index, #ui=, #user_home, #validate, version, #version, #with_build_args

Instance Method Details

#all_specsObject



583
584
585
# File 'lib/bundler/rubygems_integration.rb', line 583

def all_specs
  Gem::Specification.to_a
end

#build(spec, skip_validation = false) ⇒ Object



632
633
634
635
# File 'lib/bundler/rubygems_integration.rb', line 632

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

#download_gem(spec, uri, path) ⇒ Object



611
612
613
614
615
616
# File 'lib/bundler/rubygems_integration.rb', line 611

def download_gem(spec, uri, path)
  uri = Bundler.settings.mirror_for(uri)
  fetcher = gem_remote_fetcher
  fetcher.headers = { "X-Gemfile-Source" => spec.remote.original_uri.to_s } if spec.remote.original_uri
  fetcher.download(spec, uri, path)
end

#fetch_all_remote_specs(remote) ⇒ Object



602
603
604
605
606
607
608
609
# File 'lib/bundler/rubygems_integration.rb', line 602

def fetch_all_remote_specs(remote)
  source = remote.uri.is_a?(URI) ? remote.uri : URI.parse(source.to_s)

  specs = fetch_specs(source, remote, "specs")
  pres = fetch_specs(source, remote, "prerelease_specs") || []

  specs.push(*pres)
end

#fetch_specs(source, remote, name) ⇒ Object



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

def fetch_specs(source, remote, name)
  path = source + "#{name}.#{Gem.marshal_version}.gz"
  fetcher = gem_remote_fetcher
  fetcher.headers = { "X-Gemfile-Source" => remote.original_uri.to_s } if remote.original_uri
  string = 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



587
588
589
# File 'lib/bundler/rubygems_integration.rb', line 587

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

#gem_from_path(path, policy = nil) ⇒ Object



625
626
627
628
629
630
# File 'lib/bundler/rubygems_integration.rb', line 625

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

#gem_remote_fetcherObject



618
619
620
621
622
623
# File 'lib/bundler/rubygems_integration.rb', line 618

def gem_remote_fetcher
  require "resolv"
  proxy = configuration[:http_proxy]
  dns = Resolv::DNS.new
  Bundler::GemRemoteFetcher.new(proxy, dns)
end

#repository_subdirectoriesObject



637
638
639
# File 'lib/bundler/rubygems_integration.rb', line 637

def repository_subdirectories
  Gem::REPOSITORY_SUBDIRECTORIES
end

#stub_rubygems(specs) ⇒ Object



575
576
577
578
579
580
581
# File 'lib/bundler/rubygems_integration.rb', line 575

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

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