bundler 1.0.22 → 1.1.pre

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

Files changed (114) hide show
  1. data/CHANGELOG.md +15 -181
  2. data/ISSUES.md +11 -26
  3. data/LICENSE +0 -2
  4. data/Rakefile +67 -116
  5. data/UPGRADING.md +4 -4
  6. data/bin/bundle +10 -10
  7. data/bundler.gemspec +5 -5
  8. data/lib/bundler.rb +15 -25
  9. data/lib/bundler/capistrano.rb +2 -2
  10. data/lib/bundler/cli.rb +41 -72
  11. data/lib/bundler/definition.rb +11 -37
  12. data/lib/bundler/dependency.rb +9 -13
  13. data/lib/bundler/deployment.rb +3 -8
  14. data/lib/bundler/dsl.rb +10 -24
  15. data/lib/bundler/fetcher.rb +101 -0
  16. data/lib/bundler/gem_helper.rb +6 -11
  17. data/lib/bundler/index.rb +8 -15
  18. data/lib/bundler/installer.rb +55 -35
  19. data/lib/bundler/lazy_specification.rb +7 -10
  20. data/lib/bundler/remote_specification.rb +6 -8
  21. data/lib/bundler/resolver.rb +18 -12
  22. data/lib/bundler/rubygems_ext.rb +3 -20
  23. data/lib/bundler/runtime.rb +57 -8
  24. data/lib/bundler/settings.rb +6 -4
  25. data/lib/bundler/setup.rb +5 -12
  26. data/lib/bundler/shared_helpers.rb +100 -4
  27. data/lib/bundler/source.rb +61 -106
  28. data/lib/bundler/spec_set.rb +8 -9
  29. data/lib/bundler/templates/newgem/Rakefile.tt +2 -1
  30. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +0 -2
  31. data/lib/bundler/templates/newgem/newgem.gemspec.tt +3 -6
  32. data/lib/bundler/ui.rb +1 -4
  33. data/lib/bundler/vendor/net/http/faster.rb +27 -0
  34. data/lib/bundler/vendor/net/http/persistent.rb +464 -0
  35. data/lib/bundler/vendor/thor.rb +4 -43
  36. data/lib/bundler/vendor/thor/actions.rb +11 -28
  37. data/lib/bundler/vendor/thor/actions/create_file.rb +2 -2
  38. data/lib/bundler/vendor/thor/actions/directory.rb +2 -2
  39. data/lib/bundler/vendor/thor/actions/empty_directory.rb +0 -0
  40. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +15 -56
  41. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +10 -15
  42. data/lib/bundler/vendor/thor/base.rb +4 -24
  43. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +0 -0
  44. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +0 -0
  45. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +0 -0
  46. data/lib/bundler/vendor/thor/error.rb +0 -0
  47. data/lib/bundler/vendor/thor/invocation.rb +0 -0
  48. data/lib/bundler/vendor/thor/parser.rb +0 -0
  49. data/lib/bundler/vendor/thor/parser/argument.rb +0 -0
  50. data/lib/bundler/vendor/thor/parser/arguments.rb +2 -2
  51. data/lib/bundler/vendor/thor/parser/option.rb +1 -1
  52. data/lib/bundler/vendor/thor/parser/options.rb +16 -17
  53. data/lib/bundler/vendor/thor/shell.rb +0 -0
  54. data/lib/bundler/vendor/thor/shell/basic.rb +13 -40
  55. data/lib/bundler/vendor/thor/shell/color.rb +0 -0
  56. data/lib/bundler/vendor/thor/task.rb +4 -3
  57. data/lib/bundler/vendor/thor/util.rb +2 -2
  58. data/lib/bundler/vendor/thor/version.rb +1 -1
  59. data/lib/bundler/version.rb +1 -1
  60. data/lib/bundler/vlad.rb +0 -2
  61. data/man/bundle-install.ronn +3 -6
  62. data/man/gemfile.5.ronn +2 -7
  63. data/spec/cache/gems_spec.rb +0 -11
  64. data/spec/cache/git_spec.rb +2 -5
  65. data/spec/install/deploy_spec.rb +8 -8
  66. data/spec/install/gems/dependency_api_spec.rb +85 -0
  67. data/spec/install/gems/flex_spec.rb +4 -4
  68. data/spec/install/gems/groups_spec.rb +3 -17
  69. data/spec/install/gems/platform_spec.rb +16 -0
  70. data/spec/install/gems/simple_case_spec.rb +24 -88
  71. data/spec/install/gems/standalone_spec.rb +162 -0
  72. data/spec/install/gems/sudo_spec.rb +2 -3
  73. data/spec/install/gemspec_spec.rb +0 -38
  74. data/spec/install/git_spec.rb +4 -3
  75. data/spec/install/invalid_spec.rb +0 -18
  76. data/spec/install/path_spec.rb +1 -53
  77. data/spec/lock/git_spec.rb +1 -1
  78. data/spec/lock/lockfile_spec.rb +16 -72
  79. data/spec/other/check_spec.rb +6 -6
  80. data/spec/other/clean_spec.rb +202 -0
  81. data/spec/other/exec_spec.rb +7 -14
  82. data/spec/other/ext_spec.rb +0 -21
  83. data/spec/{bundler → other}/gem_helper_spec.rb +1 -16
  84. data/spec/other/help_spec.rb +1 -2
  85. data/spec/other/init_spec.rb +3 -3
  86. data/spec/other/newgem_spec.rb +1 -23
  87. data/spec/pack/gems_spec.rb +22 -0
  88. data/spec/quality_spec.rb +2 -6
  89. data/spec/runtime/require_spec.rb +10 -10
  90. data/spec/runtime/setup_spec.rb +12 -54
  91. data/spec/spec_helper.rb +7 -14
  92. data/spec/support/artifice/endpoint.rb +50 -0
  93. data/spec/support/artifice/endpoint_fallback.rb +22 -0
  94. data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
  95. data/spec/support/artifice/endpoint_redirect.rb +11 -0
  96. data/spec/support/builders.rb +2 -25
  97. data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
  98. data/spec/support/fakeweb/windows.rb +23 -0
  99. data/spec/support/helpers.rb +12 -5
  100. data/spec/support/matchers.rb +16 -4
  101. data/spec/support/path.rb +2 -0
  102. data/spec/support/rubygems_ext.rb +2 -6
  103. data/spec/update/gems_spec.rb +2 -3
  104. data/spec/update/git_spec.rb +2 -2
  105. metadata +41 -24
  106. data/.travis.yml +0 -31
  107. data/lib/bundler/gem_installer.rb +0 -9
  108. data/lib/bundler/gem_tasks.rb +0 -2
  109. data/lib/bundler/rubygems_integration.rb +0 -344
  110. data/lib/bundler/vendor/thor/actions/create_link.rb +0 -57
  111. data/lib/bundler/vendor/thor/group.rb +0 -273
  112. data/lib/bundler/vendor/thor/rake_compat.rb +0 -66
  113. data/lib/bundler/vendor/thor/runner.rb +0 -309
  114. data/lib/bundler/vendored_thor.rb +0 -7
@@ -0,0 +1,50 @@
1
+ require File.expand_path("../../path.rb", __FILE__)
2
+ include Spec::Path
3
+
4
+ # Set up pretend http gem server with FakeWeb
5
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/artifice*/lib")].first}"
6
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/rack-*/lib")].first}"
7
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/rack-*/lib")].last}"
8
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/tilt*/lib")].first}"
9
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/sinatra*/lib")].first}"
10
+ require 'artifice'
11
+ require 'sinatra/base'
12
+
13
+ class Endpoint < Sinatra::Base
14
+
15
+ helpers do
16
+ def dependencies_for(gem_names)
17
+ require 'rubygems'
18
+ Marshal.load(File.open(gem_repo1("Marshal.4.8")).read).map do |gem, spec|
19
+ if gem_names.include?(spec.name)
20
+ {
21
+ :name => spec.name,
22
+ :number => spec.version.version,
23
+ :platform => spec.platform.to_s,
24
+ :dependencies => spec.dependencies.select {|dep| dep.type == :runtime }.map do |dep|
25
+ [dep.name, dep.requirement.requirements.map {|a| a.join(" ") }.join(", ")]
26
+ end
27
+ }
28
+ end
29
+ end.compact
30
+ end
31
+ end
32
+
33
+ get "/quick/Marshal.4.8/:id" do
34
+ redirect "/fetch/actual/gem/#{params[:id]}"
35
+ end
36
+
37
+ get "/fetch/actual/gem/:id" do
38
+ File.read("#{gem_repo1}/quick/Marshal.4.8/#{params[:id]}")
39
+ end
40
+
41
+ get "/gems/:id" do
42
+ File.read("#{gem_repo1}/gems/#{params[:id]}")
43
+ end
44
+
45
+ get "/api/v1/dependencies" do
46
+ Marshal.dump(dependencies_for(params[:gems]))
47
+ end
48
+ end
49
+
50
+ Artifice.activate_with(Endpoint)
@@ -0,0 +1,22 @@
1
+ require File.expand_path("../endpoint", __FILE__)
2
+
3
+ Artifice.deactivate
4
+
5
+ class EndpointFallback < Endpoint
6
+ DEPENDENCY_LIMIT = 60
7
+
8
+ get "/specs.4.8.gz" do
9
+ File.read("#{gem_repo1}/specs.4.8.gz")
10
+ end
11
+
12
+ get "/api/v1/dependencies" do
13
+ if params[:gems].size <= DEPENDENCY_LIMIT
14
+ Marshal.dump(dependencies_for(params[:gems]))
15
+ else
16
+ status 413
17
+ "Too many gems to resolve, please request less than #{DEPENDENCY_LIMIT} gems"
18
+ end
19
+ end
20
+ end
21
+
22
+ Artifice.activate_with(EndpointFallback)
@@ -0,0 +1,11 @@
1
+ require File.expand_path("../endpoint_fallback", __FILE__)
2
+
3
+ Artifice.deactivate
4
+
5
+ class EndpointMarshalFail < EndpointFallback
6
+ get "/api/v1/dependencies" do
7
+ "f0283y01hasf"
8
+ end
9
+ end
10
+
11
+ Artifice.activate_with(EndpointMarshalFail)
@@ -0,0 +1,11 @@
1
+ require File.expand_path("../endpoint", __FILE__)
2
+
3
+ Artifice.deactivate
4
+
5
+ class EndpointRedirect < Endpoint
6
+ get "/fetch/actual/gem/:id" do
7
+ redirect "/fetch/actual/gem/#{params[:id]}"
8
+ end
9
+ end
10
+
11
+ Artifice.activate_with(EndpointRedirect)
@@ -32,7 +32,7 @@ module Spec
32
32
 
33
33
  build_gem "rails", "2.3.2" do |s|
34
34
  s.executables = "rails"
35
- s.add_dependency "rake", "0.8.7"
35
+ s.add_dependency "rake"
36
36
  s.add_dependency "actionpack", "2.3.2"
37
37
  s.add_dependency "activerecord", "2.3.2"
38
38
  s.add_dependency "actionmailer", "2.3.2"
@@ -167,12 +167,7 @@ module Spec
167
167
  # The yard gem iterates over Gem.source_index looking for plugins
168
168
  build_gem "yard" do |s|
169
169
  s.write "lib/yard.rb", <<-Y
170
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new("1.8.10")
171
- specs = Gem::Specification
172
- else
173
- specs = Gem.source_index.find_name('')
174
- end
175
- specs.each do |gem|
170
+ Gem.source_index.find_name('').each do |gem|
176
171
  puts gem.full_name
177
172
  end
178
173
  Y
@@ -222,12 +217,6 @@ module Spec
222
217
  s.add_dependency "net_d"
223
218
  end
224
219
 
225
- # Capistrano did this (at least until version 2.5.10)
226
- build_gem "double_deps" do |s|
227
- s.add_dependency "net-ssh", ">= 1.0.0"
228
- s.add_dependency "net-ssh"
229
- end
230
-
231
220
  build_gem "foo"
232
221
  end
233
222
  end
@@ -327,9 +316,6 @@ module Spec
327
316
 
328
317
  Array(versions).each do |version|
329
318
  spec = builder.new(self, name, version)
330
- if !spec.authors or spec.authors.empty?
331
- spec.authors = ["no one"]
332
- end
333
319
  yield spec if block_given?
334
320
  spec._build(options)
335
321
  end
@@ -462,8 +448,6 @@ module Spec
462
448
  @files = _default_files.merge(@files)
463
449
  end
464
450
 
465
- @spec.authors = ["no one"]
466
-
467
451
  @files.each do |file, source|
468
452
  file = Pathname.new(path).join(file)
469
453
  FileUtils.mkdir_p(file.dirname)
@@ -489,8 +473,6 @@ module Spec
489
473
  Dir.chdir(path) do
490
474
  `git init`
491
475
  `git add *`
492
- `git config user.email "lol@wut.com"`
493
- `git config user.name "lolwut"`
494
476
  `git commit -m 'OMG INITIAL COMMIT'`
495
477
  end
496
478
  end
@@ -575,11 +557,6 @@ module Spec
575
557
  Dir.chdir(lib_path) do
576
558
  destination = opts[:path] || _default_path
577
559
  FileUtils.mkdir_p(destination)
578
-
579
- if !@spec.authors or @spec.authors.empty?
580
- @spec.authors = ["that guy"]
581
- end
582
-
583
560
  Gem::Builder.new(@spec).build
584
561
  if opts[:to_system]
585
562
  `gem install --ignore-dependencies #{@spec.full_name}.gem`
@@ -0,0 +1,2 @@
1
+ [{ :dependencies[ [" thin" >= 0["ruby-openid"
2
+ 1.0.0
@@ -0,0 +1,23 @@
1
+ require File.expand_path("../../path.rb", __FILE__)
2
+ include Spec::Path
3
+
4
+ files = [ 'specs.4.8.gz',
5
+ 'prerelease_specs.4.8.gz',
6
+ 'quick/Marshal.4.8/rcov-1.0-mswin32.gemspec.rz',
7
+ 'gems/rcov-1.0-mswin32.gem' ]
8
+
9
+ # Set up pretend http gem server with FakeWeb
10
+ $LOAD_PATH.unshift "#{Dir[base_system_gems.join("gems/fakeweb*/lib")].first}"
11
+ require 'fakeweb'
12
+
13
+ FakeWeb.allow_net_connect = false
14
+
15
+ files.each do |file|
16
+ FakeWeb.register_uri(:get, "http://localgemserver.test/#{file}",
17
+ :body => File.read("#{gem_repo1}/#{file}"))
18
+ end
19
+ FakeWeb.register_uri(:get, "http://localgemserver.test/gems/rcov-1.0-x86-mswin32.gem",
20
+ :status => ["404", "Not Found"])
21
+
22
+ FakeWeb.register_uri(:get, "http://localgemserver.test/api/v1/dependencies?gems=rcov",
23
+ :status => ["404", "Not Found"])
@@ -3,7 +3,7 @@ module Spec
3
3
  def reset!
4
4
  @in_p, @out_p, @err_p = nil, nil, nil
5
5
  Dir["#{tmp}/{gems/*,*}"].each do |dir|
6
- next if %(base remote1 gems rubygems).include?(File.basename(dir))
6
+ next if %(base remote1 gems rubygems_v1.3.5 rubygems_v1.3.6 rubygems_v1.3.7 rubygems_v1.4.0 rubygems_v1.4.1 rubygems_master).include?(File.basename(dir))
7
7
  unless ENV['BUNDLER_SUDO_TESTS']
8
8
  FileUtils.rm_rf(dir)
9
9
  else
@@ -13,7 +13,7 @@ module Spec
13
13
  FileUtils.mkdir_p(tmp)
14
14
  FileUtils.mkdir_p(home)
15
15
  Gem.sources = ["file://#{gem_repo1}/"]
16
- # Gem.configuration.write
16
+ Gem.configuration.write
17
17
  end
18
18
 
19
19
  attr_reader :out, :err, :exitstatus
@@ -44,12 +44,18 @@ module Spec
44
44
  exitstatus = options.delete(:exitstatus)
45
45
  options["no-color"] = true unless options.key?("no-color") || cmd.to_s[0..3] == "exec"
46
46
 
47
+ bundle_bin = File.expand_path('../../../bin/bundle', __FILE__)
48
+ fake_file = options.delete(:fakeweb)
49
+ fakeweb = fake_file ? "-r#{File.expand_path('../fakeweb/'+fake_file+'.rb', __FILE__)}" : nil
50
+ artifice_file = options.delete(:artifice)
51
+ artifice = artifice_file ? "-r#{File.expand_path('../artifice/'+artifice_file+'.rb', __FILE__)}" : nil
52
+
47
53
  env = (options.delete(:env) || {}).map{|k,v| "#{k}='#{v}' "}.join
48
54
  args = options.map do |k,v|
49
55
  v == true ? " --#{k}" : " --#{k} #{v}" if v
50
56
  end.join
51
- gemfile = File.expand_path('../../../bin/bundle', __FILE__)
52
- cmd = "#{env}#{Gem.ruby} -I#{lib} #{gemfile} #{cmd}#{args}"
57
+
58
+ cmd = "#{env}#{Gem.ruby} -I#{lib} #{fakeweb} #{artifice} #{bundle_bin} #{cmd}#{args}"
53
59
 
54
60
  if exitstatus
55
61
  sys_status(cmd)
@@ -62,7 +68,8 @@ module Spec
62
68
  expect_err = options.delete(:expect_err)
63
69
  env = (options.delete(:env) || {}).map{|k,v| "#{k}='#{v}' "}.join
64
70
  ruby.gsub!(/["`\$]/) {|m| "\\#{m}" }
65
- sys_exec(%{#{env}#{Gem.ruby} -I#{lib} -e "#{ruby}"}, expect_err)
71
+ lib_option = options[:no_lib] ? "" : " -I#{lib}"
72
+ sys_exec(%{#{env}#{Gem.ruby}#{lib_option} -e "#{ruby}"}, expect_err)
66
73
  end
67
74
 
68
75
  def gembin(cmd)
@@ -35,7 +35,7 @@ module Spec
35
35
  version_const = name == 'bundler' ? 'Bundler::VERSION' : Spec::Builders.constantize(name)
36
36
  run "require '#{name}.rb'; puts #{version_const}", *groups
37
37
  actual_version, actual_platform = out.split(/\s+/)
38
- Gem::Version.new(actual_version).should eq(Gem::Version.new(version))
38
+ check Gem::Version.new(actual_version).should == Gem::Version.new(version)
39
39
  actual_platform.should == platform
40
40
  end
41
41
  end
@@ -67,11 +67,23 @@ module Spec
67
67
  bundled_app("Gemfile.lock").should exist
68
68
  end
69
69
 
70
- def lockfile_should_be(expected)
71
- should_be_locked
70
+ RSpec::Matchers.define :be_with_diff do |expected|
72
71
  spaces = expected[/\A\s+/, 0] || ""
73
72
  expected.gsub!(/^#{spaces}/, '')
74
- bundled_app("Gemfile.lock").read.should == expected
73
+
74
+ failure_message_for_should do |actual|
75
+ "The lockfile did not match.\n=== Expected:\n" <<
76
+ expected << "\n=== Got:\n" << actual << "\n===========\n"
77
+ end
78
+
79
+ match do |actual|
80
+ expected == actual
81
+ end
82
+ end
83
+
84
+ def lockfile_should_be(expected)
85
+ lock = File.read(bundled_app("Gemfile.lock"))
86
+ lock.should be_with_diff(expected)
75
87
  end
76
88
  end
77
89
  end
@@ -1,3 +1,5 @@
1
+ require 'pathname'
2
+
1
3
  module Spec
2
4
  module Path
3
5
  def root
@@ -1,5 +1,3 @@
1
- require 'rubygems/user_interaction'
2
-
3
1
  module Spec
4
2
  module Rubygems
5
3
  def self.setup
@@ -11,10 +9,8 @@ module Spec
11
9
 
12
10
  unless File.exist?("#{Path.base_system_gems}")
13
11
  FileUtils.mkdir_p(Path.base_system_gems)
14
- puts "running `gem install rake fakeweb --no-rdoc --no-ri`"
15
- `gem install fakeweb --no-rdoc --no-ri`
16
- # Rake version has to be consistent for tests to pass
17
- `gem install rake --version 0.8.7 --no-rdoc --no-ri`
12
+ puts "running `gem install rake fakeweb artifice sinatra --no-rdoc --no-ri`"
13
+ `gem install rake fakeweb artifice sinatra --no-rdoc --no-ri`
18
14
  # 3.0.0 breaks 1.9.2 specs
19
15
  puts "running `gem install builder --version 2.1.2 --no-rdoc --no-ri`"
20
16
  `gem install builder --version 2.1.2 --no-rdoc --no-ri`
@@ -115,8 +115,7 @@ describe "bundle update when a gem depends on a newer version of bundler" do
115
115
 
116
116
  it "should explain that bundler conflicted" do
117
117
  bundle "update"
118
- out.should_not =~ /in snapshot/i
119
- out.should =~ /current Bundler version/i
120
- out.should =~ /perhaps you need to update bundler/i
118
+ out.should_not =~ /In snapshot/
119
+ out.should =~ /Current Bundler version/
121
120
  end
122
121
  end
@@ -145,7 +145,7 @@ describe "bundle update" do
145
145
  G
146
146
 
147
147
  run "require 'submodule'"
148
- out.should eq('GEM')
148
+ check out.should == 'GEM'
149
149
 
150
150
  install_gemfile <<-G
151
151
  git "#{lib_path('has_submodule-1.0')}", :submodules => true do
@@ -166,7 +166,7 @@ describe "bundle update" do
166
166
  G
167
167
 
168
168
  run "require 'submodule'"
169
- out.should eq('GIT')
169
+ check out.should == 'GIT'
170
170
 
171
171
  install_gemfile <<-G
172
172
  git "#{lib_path('has_submodule-1.0')}" do
metadata CHANGED
@@ -1,25 +1,25 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 59
5
- prerelease: false
4
+ hash: 961915928
5
+ prerelease: true
6
6
  segments:
7
7
  - 1
8
- - 0
9
- - 22
10
- version: 1.0.22
8
+ - 1
9
+ - pre
10
+ version: 1.1.pre
11
11
  platform: ruby
12
12
  authors:
13
- - "Andr\xC3\xA9 Arko"
14
- - Terence Lee
15
13
  - Carl Lerche
16
14
  - Yehuda Katz
15
+ - "Andr\xC3\xA9 Arko"
16
+ - Terence Lee
17
17
  autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2012-02-08 00:00:00 -08:00
22
- default_executable:
21
+ date: 2011-01-21 00:00:00 -08:00
22
+ default_executable: bundle
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: ronn
@@ -41,17 +41,20 @@ dependencies:
41
41
  requirement: &id002 !ruby/object:Gem::Requirement
42
42
  none: false
43
43
  requirements:
44
- - - ">="
44
+ - - "="
45
45
  - !ruby/object:Gem::Version
46
- hash: 3
46
+ hash: 7712058
47
47
  segments:
48
+ - 2
48
49
  - 0
49
- version: "0"
50
+ - 0
51
+ - rc
52
+ version: 2.0.0.rc
50
53
  type: :development
51
54
  version_requirements: *id002
52
55
  description: Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
53
56
  email:
54
- - andre@arko.net
57
+ - carlhuda@engineyard.com
55
58
  executables:
56
59
  - bundle
57
60
  extensions: []
@@ -60,7 +63,6 @@ extra_rdoc_files: []
60
63
 
61
64
  files:
62
65
  - .gitignore
63
- - .travis.yml
64
66
  - CHANGELOG.md
65
67
  - ISSUES.md
66
68
  - LICENSE
@@ -77,9 +79,8 @@ files:
77
79
  - lib/bundler/deployment.rb
78
80
  - lib/bundler/dsl.rb
79
81
  - lib/bundler/environment.rb
82
+ - lib/bundler/fetcher.rb
80
83
  - lib/bundler/gem_helper.rb
81
- - lib/bundler/gem_installer.rb
82
- - lib/bundler/gem_tasks.rb
83
84
  - lib/bundler/graph.rb
84
85
  - lib/bundler/index.rb
85
86
  - lib/bundler/installer.rb
@@ -88,7 +89,6 @@ files:
88
89
  - lib/bundler/remote_specification.rb
89
90
  - lib/bundler/resolver.rb
90
91
  - lib/bundler/rubygems_ext.rb
91
- - lib/bundler/rubygems_integration.rb
92
92
  - lib/bundler/runtime.rb
93
93
  - lib/bundler/settings.rb
94
94
  - lib/bundler/setup.rb
@@ -105,10 +105,11 @@ files:
105
105
  - lib/bundler/templates/newgem/lib/newgem/version.rb.tt
106
106
  - lib/bundler/templates/newgem/newgem.gemspec.tt
107
107
  - lib/bundler/ui.rb
108
+ - lib/bundler/vendor/net/http/faster.rb
109
+ - lib/bundler/vendor/net/http/persistent.rb
108
110
  - lib/bundler/vendor/thor.rb
109
111
  - lib/bundler/vendor/thor/actions.rb
110
112
  - lib/bundler/vendor/thor/actions/create_file.rb
111
- - lib/bundler/vendor/thor/actions/create_link.rb
112
113
  - lib/bundler/vendor/thor/actions/directory.rb
113
114
  - lib/bundler/vendor/thor/actions/empty_directory.rb
114
115
  - lib/bundler/vendor/thor/actions/file_manipulation.rb
@@ -118,15 +119,12 @@ files:
118
119
  - lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
119
120
  - lib/bundler/vendor/thor/core_ext/ordered_hash.rb
120
121
  - lib/bundler/vendor/thor/error.rb
121
- - lib/bundler/vendor/thor/group.rb
122
122
  - lib/bundler/vendor/thor/invocation.rb
123
123
  - lib/bundler/vendor/thor/parser.rb
124
124
  - lib/bundler/vendor/thor/parser/argument.rb
125
125
  - lib/bundler/vendor/thor/parser/arguments.rb
126
126
  - lib/bundler/vendor/thor/parser/option.rb
127
127
  - lib/bundler/vendor/thor/parser/options.rb
128
- - lib/bundler/vendor/thor/rake_compat.rb
129
- - lib/bundler/vendor/thor/runner.rb
130
128
  - lib/bundler/vendor/thor/shell.rb
131
129
  - lib/bundler/vendor/thor/shell/basic.rb
132
130
  - lib/bundler/vendor/thor/shell/color.rb
@@ -134,7 +132,6 @@ files:
134
132
  - lib/bundler/vendor/thor/task.rb
135
133
  - lib/bundler/vendor/thor/util.rb
136
134
  - lib/bundler/vendor/thor/version.rb
137
- - lib/bundler/vendored_thor.rb
138
135
  - lib/bundler/version.rb
139
136
  - lib/bundler/vlad.rb
140
137
  - man/bundle-config.ronn
@@ -145,7 +142,6 @@ files:
145
142
  - man/bundle.ronn
146
143
  - man/gemfile.5.ronn
147
144
  - man/index.txt
148
- - spec/bundler/gem_helper_spec.rb
149
145
  - spec/cache/gems_spec.rb
150
146
  - spec/cache/git_spec.rb
151
147
  - spec/cache/path_spec.rb
@@ -153,6 +149,7 @@ files:
153
149
  - spec/install/deploy_spec.rb
154
150
  - spec/install/deprecated_spec.rb
155
151
  - spec/install/gems/c_ext_spec.rb
152
+ - spec/install/gems/dependency_api_spec.rb
156
153
  - spec/install/gems/env_spec.rb
157
154
  - spec/install/gems/flex_spec.rb
158
155
  - spec/install/gems/groups_spec.rb
@@ -160,6 +157,7 @@ files:
160
157
  - spec/install/gems/platform_spec.rb
161
158
  - spec/install/gems/resolving_spec.rb
162
159
  - spec/install/gems/simple_case_spec.rb
160
+ - spec/install/gems/standalone_spec.rb
163
161
  - spec/install/gems/sudo_spec.rb
164
162
  - spec/install/gems/win32_spec.rb
165
163
  - spec/install/gemspec_spec.rb
@@ -170,15 +168,18 @@ files:
170
168
  - spec/lock/git_spec.rb
171
169
  - spec/lock/lockfile_spec.rb
172
170
  - spec/other/check_spec.rb
171
+ - spec/other/clean_spec.rb
173
172
  - spec/other/config_spec.rb
174
173
  - spec/other/console_spec.rb
175
174
  - spec/other/exec_spec.rb
176
175
  - spec/other/ext_spec.rb
176
+ - spec/other/gem_helper_spec.rb
177
177
  - spec/other/help_spec.rb
178
178
  - spec/other/init_spec.rb
179
179
  - spec/other/newgem_spec.rb
180
180
  - spec/other/open_spec.rb
181
181
  - spec/other/show_spec.rb
182
+ - spec/pack/gems_spec.rb
182
183
  - spec/quality_spec.rb
183
184
  - spec/resolver/basic_spec.rb
184
185
  - spec/resolver/platform_spec.rb
@@ -189,7 +190,13 @@ files:
189
190
  - spec/runtime/setup_spec.rb
190
191
  - spec/runtime/with_clean_env_spec.rb
191
192
  - spec/spec_helper.rb
193
+ - spec/support/artifice/endpoint.rb
194
+ - spec/support/artifice/endpoint_fallback.rb
195
+ - spec/support/artifice/endpoint_marshal_fail.rb
196
+ - spec/support/artifice/endpoint_redirect.rb
192
197
  - spec/support/builders.rb
198
+ - spec/support/fakeweb/rack-1.0.0.marshal
199
+ - spec/support/fakeweb/windows.rb
193
200
  - spec/support/helpers.rb
194
201
  - spec/support/indexes.rb
195
202
  - spec/support/matchers.rb
@@ -253,7 +260,6 @@ signing_key:
253
260
  specification_version: 3
254
261
  summary: The best way to manage your application's dependencies
255
262
  test_files:
256
- - spec/bundler/gem_helper_spec.rb
257
263
  - spec/cache/gems_spec.rb
258
264
  - spec/cache/git_spec.rb
259
265
  - spec/cache/path_spec.rb
@@ -261,6 +267,7 @@ test_files:
261
267
  - spec/install/deploy_spec.rb
262
268
  - spec/install/deprecated_spec.rb
263
269
  - spec/install/gems/c_ext_spec.rb
270
+ - spec/install/gems/dependency_api_spec.rb
264
271
  - spec/install/gems/env_spec.rb
265
272
  - spec/install/gems/flex_spec.rb
266
273
  - spec/install/gems/groups_spec.rb
@@ -268,6 +275,7 @@ test_files:
268
275
  - spec/install/gems/platform_spec.rb
269
276
  - spec/install/gems/resolving_spec.rb
270
277
  - spec/install/gems/simple_case_spec.rb
278
+ - spec/install/gems/standalone_spec.rb
271
279
  - spec/install/gems/sudo_spec.rb
272
280
  - spec/install/gems/win32_spec.rb
273
281
  - spec/install/gemspec_spec.rb
@@ -278,15 +286,18 @@ test_files:
278
286
  - spec/lock/git_spec.rb
279
287
  - spec/lock/lockfile_spec.rb
280
288
  - spec/other/check_spec.rb
289
+ - spec/other/clean_spec.rb
281
290
  - spec/other/config_spec.rb
282
291
  - spec/other/console_spec.rb
283
292
  - spec/other/exec_spec.rb
284
293
  - spec/other/ext_spec.rb
294
+ - spec/other/gem_helper_spec.rb
285
295
  - spec/other/help_spec.rb
286
296
  - spec/other/init_spec.rb
287
297
  - spec/other/newgem_spec.rb
288
298
  - spec/other/open_spec.rb
289
299
  - spec/other/show_spec.rb
300
+ - spec/pack/gems_spec.rb
290
301
  - spec/quality_spec.rb
291
302
  - spec/resolver/basic_spec.rb
292
303
  - spec/resolver/platform_spec.rb
@@ -297,7 +308,13 @@ test_files:
297
308
  - spec/runtime/setup_spec.rb
298
309
  - spec/runtime/with_clean_env_spec.rb
299
310
  - spec/spec_helper.rb
311
+ - spec/support/artifice/endpoint.rb
312
+ - spec/support/artifice/endpoint_fallback.rb
313
+ - spec/support/artifice/endpoint_marshal_fail.rb
314
+ - spec/support/artifice/endpoint_redirect.rb
300
315
  - spec/support/builders.rb
316
+ - spec/support/fakeweb/rack-1.0.0.marshal
317
+ - spec/support/fakeweb/windows.rb
301
318
  - spec/support/helpers.rb
302
319
  - spec/support/indexes.rb
303
320
  - spec/support/matchers.rb