diff options
-rw-r--r-- | lib/rubygems/basic_specification.rb | 22 | ||||
-rw-r--r-- | lib/rubygems/ext/builder.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/ext/rake_builder.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/rdoc.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/request_set.rb | 20 | ||||
-rw-r--r-- | lib/rubygems/request_set/lockfile.rb | 25 | ||||
-rw-r--r-- | lib/rubygems/resolver/best_set.rb | 10 | ||||
-rw-r--r-- | lib/rubygems/resolver/git_set.rb | 23 | ||||
-rw-r--r-- | lib/rubygems/resolver/index_set.rb | 24 | ||||
-rw-r--r-- | lib/rubygems/resolver/lock_set.rb | 18 | ||||
-rw-r--r-- | lib/rubygems/resolver/vendor_set.rb | 15 | ||||
-rw-r--r-- | lib/rubygems/source.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/source/git.rb | 34 | ||||
-rw-r--r-- | lib/rubygems/source/installed.rb | 3 | ||||
-rw-r--r-- | lib/rubygems/source/local.rb | 3 | ||||
-rw-r--r-- | lib/rubygems/source/lock.rb | 44 | ||||
-rw-r--r-- | lib/rubygems/source/vendor.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/specification.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/test_utilities.rb | 18 | ||||
-rw-r--r-- | lib/rubygems/validator.rb | 1 |
20 files changed, 252 insertions, 20 deletions
@@ -5,6 +5,16 @@ class Gem::BasicSpecification ## # The path this gemspec was loaded from. This attribute is not persisted. attr_reader :loaded_from @@ -68,8 +78,9 @@ class Gem::BasicSpecification # end def extension_install_dir - File.join base_dir, 'extensions', Gem::Platform.local.to_s, - Gem.extension_api_version, full_name end def find_full_gem_path # :nodoc: @@ -141,9 +152,10 @@ class Gem::BasicSpecification def loaded_from= path @loaded_from = path && path.to_s - @full_gem_path = nil - @gems_dir = nil - @base_dir = nil end ## @@ -98,7 +98,7 @@ class Gem::Ext::Builder def initialize spec, build_args = spec.build_args @spec = spec @build_args = build_args - @gem_dir = spec.gem_dir @ran_rake = nil end @@ -19,7 +19,7 @@ class Gem::Ext::RakeBuilder < Gem::Ext::Builder rake = ENV['rake'] rake ||= begin - "\"#{Gem.ruby}\" -rubygems #{Gem.bin_path('rake', 'rake')}" rescue Gem::Exception end @@ -8,7 +8,7 @@ rescue Gem::LoadError # swallow else # This will force any deps that 'rdoc' might have - # (such as json) that are ambigious to be activated, which # is important because we end up using Specification.reset # and we don't want the warning it pops out. Gem.finish_resolve @@ -67,6 +67,7 @@ class Gem::RequestSet @dependency_names = {} @development = false @git_set = nil @requests = [] @sets = [] @soft_missing = false @@ -143,7 +144,11 @@ class Gem::RequestSet # dependencies file are not used. See Gem::Installer for other +options+. def install_from_gemdeps options, &block - load_gemdeps options[:gemdeps], options[:without_groups] resolve @@ -154,7 +159,12 @@ class Gem::RequestSet puts " #{s}" end else - install options, &block end end @@ -194,6 +204,11 @@ class Gem::RequestSet @git_set = Gem::Resolver::GitSet.new @vendor_set = Gem::Resolver::VendorSet.new gf = Gem::RequestSet::GemDependencyAPI.new self, path gf.without_groups = without_groups if without_groups gf.load @@ -264,3 +279,4 @@ class Gem::RequestSet end require 'rubygems/request_set/gem_dependency_api' @@ -1,3 +1,8 @@ class Gem::RequestSet::Lockfile ## @@ -100,7 +105,7 @@ class Gem::RequestSet::Lockfile out << nil end - def relative_path_from(dest, base) dest = File.expand_path(dest) base = File.expand_path(base) @@ -263,6 +268,9 @@ class Gem::RequestSet::Lockfile get while not @tokens.empty? and peek.first == type end def to_s @set.resolve @@ -293,6 +301,10 @@ class Gem::RequestSet::Lockfile [byte_offset - @line_pos, @line] end def tokenize # :nodoc: @line = 0 @line_pos = 0 @@ -343,6 +355,8 @@ class Gem::RequestSet::Lockfile end @tokens end ## @@ -352,5 +366,14 @@ class Gem::RequestSet::Lockfile @tokens.unshift @current_token end end @@ -17,5 +17,15 @@ class Gem::Resolver::BestSet < Gem::Resolver::ComposedSet end end end @@ -11,6 +11,12 @@ class Gem::Resolver::GitSet < Gem::Resolver::Set ## # Contains repositories needing submodules attr_reader :need_submodules # :nodoc: @@ -30,6 +36,7 @@ class Gem::Resolver::GitSet < Gem::Resolver::Set @git = ENV['git'] || 'git' @need_submodules = {} @repositories = {} @specs = {} end @@ -57,6 +64,7 @@ class Gem::Resolver::GitSet < Gem::Resolver::Set @repositories.each do |name, (repository, reference)| source = Gem::Source::Git.new name, repository, reference source.specs.each do |spec| git_spec = Gem::Resolver::GitSpecification.new self, spec, source @@ -66,5 +74,20 @@ class Gem::Resolver::GitSet < Gem::Resolver::Set end end end @@ -46,5 +46,29 @@ class Gem::Resolver::IndexSet < Gem::Resolver::Set res end end @@ -9,7 +9,7 @@ class Gem::Resolver::LockSet < Gem::Resolver::Set # Creates a new LockSet from the given +source+ def initialize source - @source = source @specs = [] end @@ -56,5 +56,21 @@ class Gem::Resolver::LockSet < Gem::Resolver::Set found.source.fetch_spec tuple end end @@ -64,5 +64,20 @@ class Gem::Resolver::VendorSet < Gem::Resolver::Set @specs.fetch key end end @@ -49,6 +49,7 @@ class Gem::Source case other when Gem::Source::Installed, Gem::Source::Local, Gem::Source::SpecificFile, Gem::Source::Git, Gem::Source::Vendor then @@ -213,5 +214,6 @@ require 'rubygems/source/git' require 'rubygems/source/installed' require 'rubygems/source/specific_file' require 'rubygems/source/local' require 'rubygems/source/vendor' @@ -31,6 +31,11 @@ class Gem::Source::Git < Gem::Source attr_reader :repository ## # Does this repository need submodules checked out too? attr_reader :need_submodules @@ -50,14 +55,16 @@ class Gem::Source::Git < Gem::Source @reference = reference @need_submodules = submodules - @git = ENV['git'] || 'git' end def <=> other case other when Gem::Source::Git then 0 - when Gem::Source::Installed then -1 when Gem::Source then 1 @@ -114,6 +121,13 @@ class Gem::Source::Git < Gem::Source end ## # A short reference for use in git gem directories def dir_shortref # :nodoc: @@ -130,14 +144,14 @@ class Gem::Source::Git < Gem::Source # The directory where the git gem will be installed. def install_dir # :nodoc: - File.join Gem.dir, 'bundler', 'gems', "#{@name}-#{dir_shortref}" end ## # The directory where the git gem's repository will be cached. def repo_cache_dir # :nodoc: - File.join Gem.dir, 'cache', 'bundler', 'git', "#{@name}-#{uri_hash}" end ## @@ -162,7 +176,17 @@ class Gem::Source::Git < Gem::Source Dir.chdir directory do spec = Gem::Specification.load file - spec.full_gem_path = File.expand_path '.' if spec spec end end.compact @@ -12,7 +12,8 @@ class Gem::Source::Installed < Gem::Source def <=> other case other - when Gem::Source::Vendor then -1 when Gem::Source::Installed then 0 @@ -15,7 +15,8 @@ class Gem::Source::Local < Gem::Source def <=> other case other - when Gem::Source::Installed then -1 when Gem::Source::Local then 0 @@ -0,0 +1,44 @@ @@ -12,6 +12,8 @@ class Gem::Source::Vendor < Gem::Source::Installed def <=> other case other when Gem::Source::Vendor then 0 when Gem::Source then @@ -1031,7 +1031,7 @@ class Gem::Specification < Gem::BasicSpecification spec = eval code, binding, file if Gem::Specification === spec - spec.loaded_from = file.to_s LOAD_CACHE[file] = spec return spec end @@ -101,6 +101,24 @@ class Gem::FakeFetcher response end def fetch_size(path) path = path.to_s @paths << path @@ -86,6 +86,7 @@ class Gem::Validator Gem::Specification.each do |spec| next unless gems.include? spec.name unless gems.empty? gem_name = spec.file_name gem_path = spec.cache_file |