bundler 1.3.6 → 1.4.0.pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +1 -3
- data/CHANGELOG.md +27 -14
- data/CONTRIBUTING.md +2 -2
- data/{CONTRIBUTE.md → DEVELOPMENT.md} +31 -12
- data/ISSUES.md +1 -1
- data/README.md +6 -4
- data/Rakefile +1 -15
- data/bin/bundle +5 -8
- data/bundler.gemspec +1 -1
- data/lib/bundler.rb +37 -21
- data/lib/bundler/cli.rb +33 -21
- data/lib/bundler/constants.rb +5 -0
- data/lib/bundler/current_ruby.rb +88 -0
- data/lib/bundler/definition.rb +35 -11
- data/lib/bundler/dependency.rb +7 -78
- data/lib/bundler/dsl.rb +1 -1
- data/lib/bundler/fetcher.rb +37 -24
- data/lib/bundler/gem_helper.rb +2 -2
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/installer.rb +76 -7
- data/lib/bundler/parallel_workers.rb +18 -0
- data/lib/bundler/parallel_workers/thread_worker.rb +27 -0
- data/lib/bundler/parallel_workers/unix_worker.rb +88 -0
- data/lib/bundler/parallel_workers/worker.rb +68 -0
- data/lib/bundler/resolver.rb +17 -11
- data/lib/bundler/rubygems_ext.rb +2 -2
- data/lib/bundler/rubygems_integration.rb +37 -25
- data/lib/bundler/runtime.rb +8 -1
- data/lib/bundler/safe_catch.rb +101 -0
- data/lib/bundler/shared_helpers.rb +27 -1
- data/lib/bundler/source/git.rb +2 -1
- data/lib/bundler/source/git/git_proxy.rb +3 -3
- data/lib/bundler/source/path.rb +3 -2
- data/lib/bundler/source/rubygems.rb +5 -17
- data/lib/bundler/spec_set.rb +16 -1
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
- data/lib/bundler/vendor/net/http/persistent.rb +136 -38
- data/lib/bundler/vendor/thor.rb +211 -188
- data/lib/bundler/vendor/thor/actions.rb +19 -19
- data/lib/bundler/vendor/thor/actions/create_link.rb +3 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +30 -10
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +3 -19
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +6 -3
- data/lib/bundler/vendor/thor/base.rb +101 -97
- data/lib/bundler/vendor/thor/{task.rb → command.rb} +17 -13
- data/lib/bundler/vendor/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/bundler/vendor/thor/error.rb +8 -11
- data/lib/bundler/vendor/thor/group.rb +35 -38
- data/lib/bundler/vendor/thor/invocation.rb +28 -26
- data/lib/bundler/vendor/thor/parser/options.rb +21 -19
- data/lib/bundler/vendor/thor/rake_compat.rb +3 -2
- data/lib/bundler/vendor/thor/runner.rb +22 -21
- data/lib/bundler/vendor/thor/shell/basic.rb +44 -22
- data/lib/bundler/vendor/thor/shell/color.rb +13 -9
- data/lib/bundler/vendor/thor/shell/html.rb +13 -9
- data/lib/bundler/vendor/thor/util.rb +214 -210
- data/lib/bundler/vendor/thor/version.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-install.ronn +5 -1
- data/man/gemfile.5.ronn +10 -2
- data/spec/bundler/dsl_spec.rb +3 -3
- data/spec/bundler/gem_helper_spec.rb +14 -17
- data/spec/bundler/safe_catch_spec.rb +37 -0
- data/spec/install/gems/dependency_api_spec.rb +1 -36
- data/spec/install/gems/packed_spec.rb +4 -2
- data/spec/install/gems/resolving_spec.rb +37 -0
- data/spec/install/gems/simple_case_spec.rb +18 -16
- data/spec/install/git_spec.rb +1 -1
- data/spec/other/binstubs_spec.rb +24 -13
- data/spec/other/exec_spec.rb +24 -2
- data/spec/other/help_spec.rb +6 -6
- data/spec/other/outdated_spec.rb +3 -3
- data/spec/quality_spec.rb +3 -2
- data/spec/realworld/dependency_api_spec.rb +1 -1
- data/spec/realworld/edgecases_spec.rb +3 -3
- data/spec/realworld/parallel_install_spec.rb +19 -0
- data/spec/resolver/basic_spec.rb +11 -0
- data/spec/runtime/require_spec.rb +9 -0
- data/spec/runtime/setup_spec.rb +2 -3
- data/spec/spec_helper.rb +0 -1
- data/spec/support/builders.rb +2 -4
- data/spec/support/helpers.rb +4 -8
- data/spec/support/indexes.rb +18 -0
- data/spec/support/streams.rb +13 -0
- metadata +19 -11
- data/lib/bundler/vendor/thor/core_ext/dir_escape.rb +0 -0
- data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +0 -9
- data/spec/support/artifice/endpoint_host_redirect.rb +0 -15
- data/spec/support/permissions.rb +0 -11
data/spec/other/help_spec.rb
CHANGED
@@ -11,21 +11,21 @@ describe "bundle help" do
|
|
11
11
|
expect(err).to include("running `gem cleanup bundler`.")
|
12
12
|
end
|
13
13
|
|
14
|
-
it "uses
|
15
|
-
|
14
|
+
it "uses mann when available" do
|
15
|
+
fake_man!
|
16
16
|
|
17
17
|
bundle "help gemfile"
|
18
|
-
expect(out).to eq(%|["
|
18
|
+
expect(out).to eq(%|["#{root}/lib/bundler/man/gemfile.5"]|)
|
19
19
|
end
|
20
20
|
|
21
21
|
it "prefixes bundle commands with bundle- when finding the groff files" do
|
22
|
-
|
22
|
+
fake_man!
|
23
23
|
|
24
24
|
bundle "help install"
|
25
|
-
expect(out).to eq(%|["
|
25
|
+
expect(out).to eq(%|["#{root}/lib/bundler/man/bundle-install"]|)
|
26
26
|
end
|
27
27
|
|
28
|
-
it "simply outputs the txt file when there is no
|
28
|
+
it "simply outputs the txt file when there is no man on the path" do
|
29
29
|
kill_path!
|
30
30
|
|
31
31
|
bundle "help install", :expect_err => true
|
data/spec/other/outdated_spec.rb
CHANGED
@@ -25,7 +25,7 @@ describe "bundle outdated" do
|
|
25
25
|
|
26
26
|
bundle "outdated"
|
27
27
|
|
28
|
-
expect(out).to include("activesupport (3.0 > 2.3.5)")
|
28
|
+
expect(out).to include("activesupport (3.0 > 2.3.5) Gemfile specifies \"= 2.3.5\"")
|
29
29
|
expect(out).to include("foo (1.0")
|
30
30
|
|
31
31
|
# Gem names are one per-line, between "*" and their parenthesized version.
|
@@ -92,7 +92,7 @@ describe "bundle outdated" do
|
|
92
92
|
end
|
93
93
|
|
94
94
|
bundle "outdated --pre"
|
95
|
-
expect(out).to include("activesupport (3.0.0.beta > 2.3.5)")
|
95
|
+
expect(out).to include("activesupport (3.0.0.beta > 2.3.5) Gemfile specifies \"= 2.3.5\"")
|
96
96
|
end
|
97
97
|
end
|
98
98
|
|
@@ -109,7 +109,7 @@ describe "bundle outdated" do
|
|
109
109
|
G
|
110
110
|
|
111
111
|
bundle "outdated"
|
112
|
-
expect(out).to include("activesupport (3.0.0.beta.2 > 3.0.0.beta.1)")
|
112
|
+
expect(out).to include("activesupport (3.0.0.beta.2 > 3.0.0.beta.1) Gemfile specifies \"= 3.0.0.beta.1\"")
|
113
113
|
end
|
114
114
|
end
|
115
115
|
end
|
data/spec/quality_spec.rb
CHANGED
@@ -32,6 +32,7 @@ describe "The library itself" do
|
|
32
32
|
failing_lines = []
|
33
33
|
File.readlines(filename).each_with_index do |line,number|
|
34
34
|
next if line =~ /^\s+#.*\s+\n$/
|
35
|
+
next if %w(LICENCE.md).include?(line)
|
35
36
|
failing_lines << number + 1 if line =~ /\s+\n$/
|
36
37
|
end
|
37
38
|
|
@@ -54,7 +55,7 @@ describe "The library itself" do
|
|
54
55
|
exempt = /\.gitmodules|\.marshal|fixtures|vendor|ssl_certs|LICENSE/
|
55
56
|
error_messages = []
|
56
57
|
Dir.chdir(File.expand_path("../..", __FILE__)) do
|
57
|
-
`git ls-files
|
58
|
+
`git ls-files`.split("\n").each do |filename|
|
58
59
|
next if filename =~ exempt
|
59
60
|
error_messages << check_for_tab_characters(filename)
|
60
61
|
error_messages << check_for_extra_spaces(filename)
|
@@ -67,7 +68,7 @@ describe "The library itself" do
|
|
67
68
|
included = /spec/
|
68
69
|
error_messages = []
|
69
70
|
Dir.chdir(File.expand_path("../", __FILE__)) do
|
70
|
-
`git ls-files
|
71
|
+
`git ls-files`.split("\n").each do |filename|
|
71
72
|
next unless filename =~ included
|
72
73
|
error_messages << check_for_spec_defs_with_single_quotes(filename)
|
73
74
|
end
|
@@ -10,7 +10,7 @@ describe "real world edgecases", :realworld => true do
|
|
10
10
|
expect(err).to eq("")
|
11
11
|
end
|
12
12
|
|
13
|
-
# https://github.com/
|
13
|
+
# https://github.com/bundler/bundler/issues/1202
|
14
14
|
it "bundle cache works with rubygems 1.3.7 and pre gems", :ruby => "1.8" do
|
15
15
|
install_gemfile <<-G
|
16
16
|
source :rubygems
|
@@ -21,7 +21,7 @@ describe "real world edgecases", :realworld => true do
|
|
21
21
|
expect(out).not_to include("Removing outdated .gem files from vendor/cache")
|
22
22
|
end
|
23
23
|
|
24
|
-
# https://github.com/
|
24
|
+
# https://github.com/bundler/bundler/issues/1486
|
25
25
|
# this is a hash collision that only manifests on 1.8.7
|
26
26
|
it "finds the correct child versions", :ruby => "1.8" do
|
27
27
|
install_gemfile <<-G
|
@@ -35,7 +35,7 @@ describe "real world edgecases", :realworld => true do
|
|
35
35
|
expect(out).to include("activemodel (3.0.5)")
|
36
36
|
end
|
37
37
|
|
38
|
-
# https://github.com/
|
38
|
+
# https://github.com/bundler/bundler/issues/1500
|
39
39
|
it "does not fail install because of gem plugins" do
|
40
40
|
realworld_system_gems("open_gem --version 1.4.2", "rake --version 0.9.2")
|
41
41
|
gemfile <<-G
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "installing dependencies parallely", :realworld => true do
|
4
|
+
it "installs gems parallely" do
|
5
|
+
gemfile <<-G
|
6
|
+
source "https://rubygems.org"
|
7
|
+
|
8
|
+
gem 'activesupport', '~> 3.2.13'
|
9
|
+
gem 'faker', '~> 1.1.2'
|
10
|
+
G
|
11
|
+
|
12
|
+
bundle :install, :jobs => 4
|
13
|
+
bundle "show activesupport"
|
14
|
+
expect(out).to match(/activesupport/)
|
15
|
+
|
16
|
+
bundle "show faker"
|
17
|
+
expect(out).to match(/faker/)
|
18
|
+
end
|
19
|
+
end
|
data/spec/resolver/basic_spec.rb
CHANGED
@@ -23,4 +23,15 @@ describe "Resolving" do
|
|
23
23
|
dep "my_app"
|
24
24
|
should_resolve_as %w(activemodel-3.2.11 builder-3.0.4 grape-0.2.6 my_app-1.0.0)
|
25
25
|
end
|
26
|
+
|
27
|
+
it "should throw error in case of circular dependencies" do
|
28
|
+
@index = a_circular_index
|
29
|
+
dep "circular_app"
|
30
|
+
|
31
|
+
got = resolve
|
32
|
+
expect {
|
33
|
+
got = got.map { |s| s.full_name }.sort
|
34
|
+
}.to raise_error(Bundler::CyclicDependencyError, /please remove either gem 'foo' or gem 'bar'/i)
|
35
|
+
end
|
36
|
+
|
26
37
|
end
|
@@ -33,6 +33,10 @@ describe "Bundler.require" do
|
|
33
33
|
s.write "lib/seven.rb", "puts 'seven'"
|
34
34
|
end
|
35
35
|
|
36
|
+
build_lib "eight", "1.0.0" do |s|
|
37
|
+
s.write "lib/eight.rb", "puts 'eight'"
|
38
|
+
end
|
39
|
+
|
36
40
|
gemfile <<-G
|
37
41
|
path "#{lib_path}"
|
38
42
|
gem "one", :group => :bar, :require => %w(baz qux)
|
@@ -42,6 +46,7 @@ describe "Bundler.require" do
|
|
42
46
|
gem "five"
|
43
47
|
gem "six", :group => "string"
|
44
48
|
gem "seven", :group => :not
|
49
|
+
gem "eight", :require => true, :group => :require_true
|
45
50
|
G
|
46
51
|
end
|
47
52
|
|
@@ -69,6 +74,10 @@ describe "Bundler.require" do
|
|
69
74
|
# required in resolver order instead of gemfile order
|
70
75
|
run("Bundler.require(:not)")
|
71
76
|
expect(out.split("\n").sort).to eq(['seven', 'three'])
|
77
|
+
|
78
|
+
# test require: true
|
79
|
+
run "Bundler.require(:require_true)"
|
80
|
+
expect(out).to eq("eight")
|
72
81
|
end
|
73
82
|
|
74
83
|
it "allows requiring gems with non standard names explicitly" do
|
data/spec/runtime/setup_spec.rb
CHANGED
@@ -631,7 +631,7 @@ describe "Bundler.setup" do
|
|
631
631
|
expect(out).to eq("yay")
|
632
632
|
end
|
633
633
|
|
634
|
-
it "
|
634
|
+
it "ignores Gem.refresh" do
|
635
635
|
system_gems "rack-1.0.0"
|
636
636
|
|
637
637
|
install_gemfile <<-G
|
@@ -640,12 +640,11 @@ describe "Bundler.setup" do
|
|
640
640
|
G
|
641
641
|
|
642
642
|
run <<-R
|
643
|
-
puts Bundler.rubygems.find_name("rack").inspect
|
644
643
|
Gem.refresh
|
645
644
|
puts Bundler.rubygems.find_name("rack").inspect
|
646
645
|
R
|
647
646
|
|
648
|
-
expect(out).to eq("[]
|
647
|
+
expect(out).to eq("[]")
|
649
648
|
end
|
650
649
|
|
651
650
|
describe "when a vendored gem specification uses the :path option" do
|
data/spec/spec_helper.rb
CHANGED
data/spec/support/builders.rb
CHANGED
@@ -234,9 +234,7 @@ module Spec
|
|
234
234
|
end
|
235
235
|
|
236
236
|
# Capistrano did this (at least until version 2.5.10)
|
237
|
-
|
238
|
-
# See https://github.com/rubygems/rubygems/commit/03dbac93a3396a80db258d9bc63500333c25bd2f
|
239
|
-
build_gem "double_deps", "1.0", :skip_validation => true do |s|
|
237
|
+
build_gem "double_deps" do |s|
|
240
238
|
s.add_dependency "net-ssh", ">= 1.0.0"
|
241
239
|
s.add_dependency "net-ssh"
|
242
240
|
end
|
@@ -607,7 +605,7 @@ module Spec
|
|
607
605
|
@spec.authors = ["that guy"]
|
608
606
|
end
|
609
607
|
|
610
|
-
Bundler.rubygems.build(@spec
|
608
|
+
Bundler.rubygems.build(@spec)
|
611
609
|
if opts[:to_system]
|
612
610
|
`gem install --ignore-dependencies #{@spec.full_name}.gem`
|
613
611
|
else
|
data/spec/support/helpers.rb
CHANGED
@@ -94,10 +94,6 @@ module Spec
|
|
94
94
|
requires_str = requires.map{|r| "-r#{r}"}.join(" ")
|
95
95
|
|
96
96
|
env = (options.delete(:env) || {}).map{|k,v| "#{k}='#{v}' "}.join
|
97
|
-
args = options.map do |k,v|
|
98
|
-
v == true ? " --#{k}" : " --#{k} #{v}" if v
|
99
|
-
end.join
|
100
|
-
|
101
97
|
cmd = "#{env}#{Gem.ruby} -I#{lib} #{requires_str} #{bundle_bin}"
|
102
98
|
|
103
99
|
if exitstatus
|
@@ -226,13 +222,13 @@ module Spec
|
|
226
222
|
ENV["PATH"] = "#{tmp("broken_path")}:#{ENV["PATH"]}"
|
227
223
|
end
|
228
224
|
|
229
|
-
def
|
230
|
-
FileUtils.mkdir_p(tmp("
|
231
|
-
File.open(tmp("
|
225
|
+
def fake_man!
|
226
|
+
FileUtils.mkdir_p(tmp("fake_man"))
|
227
|
+
File.open(tmp("fake_man/man"), "w", 0755) do |f|
|
232
228
|
f.puts "#!/usr/bin/env ruby\nputs ARGV.inspect\n"
|
233
229
|
end
|
234
230
|
|
235
|
-
ENV["PATH"] = "#{tmp("
|
231
|
+
ENV["PATH"] = "#{tmp("fake_man")}:#{ENV["PATH"]}"
|
236
232
|
end
|
237
233
|
|
238
234
|
def kill_path!
|
data/spec/support/indexes.rb
CHANGED
@@ -130,5 +130,23 @@ module Spec
|
|
130
130
|
end
|
131
131
|
end
|
132
132
|
end
|
133
|
+
|
134
|
+
def a_circular_index
|
135
|
+
build_index do
|
136
|
+
gem "rack", "1.0.1"
|
137
|
+
gem("foo", '0.2.6') do
|
138
|
+
dep "bar", ">= 0"
|
139
|
+
end
|
140
|
+
|
141
|
+
gem("bar", "1.0.0") do
|
142
|
+
dep "foo", ">= 0"
|
143
|
+
end
|
144
|
+
|
145
|
+
gem("circular_app", '1.0.0') do
|
146
|
+
dep "foo", ">= 0"
|
147
|
+
dep "bar", ">= 0"
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
133
151
|
end
|
134
152
|
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'stringio'
|
2
|
+
|
3
|
+
def capture(*streams)
|
4
|
+
streams.map! { |stream| stream.to_s }
|
5
|
+
begin
|
6
|
+
result = StringIO.new
|
7
|
+
streams.each { |stream| eval "$#{stream} = result" }
|
8
|
+
yield
|
9
|
+
ensure
|
10
|
+
streams.each { |stream| eval("$#{stream} = #{stream.upcase}") }
|
11
|
+
end
|
12
|
+
result.string
|
13
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0.pre.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2013-08-05 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: ronn
|
@@ -54,8 +54,8 @@ files:
|
|
54
54
|
- .rspec
|
55
55
|
- .travis.yml
|
56
56
|
- CHANGELOG.md
|
57
|
-
- CONTRIBUTE.md
|
58
57
|
- CONTRIBUTING.md
|
58
|
+
- DEVELOPMENT.md
|
59
59
|
- ISSUES.md
|
60
60
|
- LICENSE.md
|
61
61
|
- README.md
|
@@ -67,6 +67,8 @@ files:
|
|
67
67
|
- lib/bundler.rb
|
68
68
|
- lib/bundler/capistrano.rb
|
69
69
|
- lib/bundler/cli.rb
|
70
|
+
- lib/bundler/constants.rb
|
71
|
+
- lib/bundler/current_ruby.rb
|
70
72
|
- lib/bundler/definition.rb
|
71
73
|
- lib/bundler/dep_proxy.rb
|
72
74
|
- lib/bundler/dependency.rb
|
@@ -90,6 +92,10 @@ files:
|
|
90
92
|
- lib/bundler/lazy_specification.rb
|
91
93
|
- lib/bundler/lockfile_parser.rb
|
92
94
|
- lib/bundler/match_platform.rb
|
95
|
+
- lib/bundler/parallel_workers.rb
|
96
|
+
- lib/bundler/parallel_workers/thread_worker.rb
|
97
|
+
- lib/bundler/parallel_workers/unix_worker.rb
|
98
|
+
- lib/bundler/parallel_workers/worker.rb
|
93
99
|
- lib/bundler/psyched_yaml.rb
|
94
100
|
- lib/bundler/remote_specification.rb
|
95
101
|
- lib/bundler/resolver.rb
|
@@ -98,6 +104,7 @@ files:
|
|
98
104
|
- lib/bundler/rubygems_ext.rb
|
99
105
|
- lib/bundler/rubygems_integration.rb
|
100
106
|
- lib/bundler/runtime.rb
|
107
|
+
- lib/bundler/safe_catch.rb
|
101
108
|
- lib/bundler/settings.rb
|
102
109
|
- lib/bundler/setup.rb
|
103
110
|
- lib/bundler/shared_helpers.rb
|
@@ -146,9 +153,9 @@ files:
|
|
146
153
|
- lib/bundler/vendor/thor/actions/file_manipulation.rb
|
147
154
|
- lib/bundler/vendor/thor/actions/inject_into_file.rb
|
148
155
|
- lib/bundler/vendor/thor/base.rb
|
149
|
-
- lib/bundler/vendor/thor/
|
150
|
-
- lib/bundler/vendor/thor/core_ext/file_binary_read.rb
|
156
|
+
- lib/bundler/vendor/thor/command.rb
|
151
157
|
- lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
|
158
|
+
- lib/bundler/vendor/thor/core_ext/io_binary_read.rb
|
152
159
|
- lib/bundler/vendor/thor/core_ext/ordered_hash.rb
|
153
160
|
- lib/bundler/vendor/thor/error.rb
|
154
161
|
- lib/bundler/vendor/thor/group.rb
|
@@ -164,7 +171,6 @@ files:
|
|
164
171
|
- lib/bundler/vendor/thor/shell/basic.rb
|
165
172
|
- lib/bundler/vendor/thor/shell/color.rb
|
166
173
|
- lib/bundler/vendor/thor/shell/html.rb
|
167
|
-
- lib/bundler/vendor/thor/task.rb
|
168
174
|
- lib/bundler/vendor/thor/util.rb
|
169
175
|
- lib/bundler/vendor/thor/version.rb
|
170
176
|
- lib/bundler/vendored_persistent.rb
|
@@ -186,6 +192,7 @@ files:
|
|
186
192
|
- spec/bundler/dsl_spec.rb
|
187
193
|
- spec/bundler/gem_helper_spec.rb
|
188
194
|
- spec/bundler/psyched_yaml_spec.rb
|
195
|
+
- spec/bundler/safe_catch_spec.rb
|
189
196
|
- spec/bundler/source_spec.rb
|
190
197
|
- spec/cache/gems_spec.rb
|
191
198
|
- spec/cache/git_spec.rb
|
@@ -234,6 +241,7 @@ files:
|
|
234
241
|
- spec/quality_spec.rb
|
235
242
|
- spec/realworld/dependency_api_spec.rb
|
236
243
|
- spec/realworld/edgecases_spec.rb
|
244
|
+
- spec/realworld/parallel_install_spec.rb
|
237
245
|
- spec/resolver/basic_spec.rb
|
238
246
|
- spec/resolver/platform_spec.rb
|
239
247
|
- spec/runtime/executable_spec.rb
|
@@ -252,7 +260,6 @@ files:
|
|
252
260
|
- spec/support/artifice/endpoint_extra.rb
|
253
261
|
- spec/support/artifice/endpoint_extra_missing.rb
|
254
262
|
- spec/support/artifice/endpoint_fallback.rb
|
255
|
-
- spec/support/artifice/endpoint_host_redirect.rb
|
256
263
|
- spec/support/artifice/endpoint_marshal_fail.rb
|
257
264
|
- spec/support/artifice/endpoint_redirect.rb
|
258
265
|
- spec/support/artifice/endpoint_timeout.rb
|
@@ -263,11 +270,11 @@ files:
|
|
263
270
|
- spec/support/indexes.rb
|
264
271
|
- spec/support/matchers.rb
|
265
272
|
- spec/support/path.rb
|
266
|
-
- spec/support/permissions.rb
|
267
273
|
- spec/support/platforms.rb
|
268
274
|
- spec/support/ruby_ext.rb
|
269
275
|
- spec/support/rubygems_ext.rb
|
270
276
|
- spec/support/rubygems_hax/platform.rb
|
277
|
+
- spec/support/streams.rb
|
271
278
|
- spec/support/sudo.rb
|
272
279
|
- spec/update/gems_spec.rb
|
273
280
|
- spec/update/git_spec.rb
|
@@ -308,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
308
315
|
version: 1.3.6
|
309
316
|
requirements: []
|
310
317
|
rubyforge_project:
|
311
|
-
rubygems_version: 2.0.
|
318
|
+
rubygems_version: 2.0.6
|
312
319
|
signing_key:
|
313
320
|
specification_version: 4
|
314
321
|
summary: The best way to manage your application's dependencies
|
@@ -319,6 +326,7 @@ test_files:
|
|
319
326
|
- spec/bundler/dsl_spec.rb
|
320
327
|
- spec/bundler/gem_helper_spec.rb
|
321
328
|
- spec/bundler/psyched_yaml_spec.rb
|
329
|
+
- spec/bundler/safe_catch_spec.rb
|
322
330
|
- spec/bundler/source_spec.rb
|
323
331
|
- spec/cache/gems_spec.rb
|
324
332
|
- spec/cache/git_spec.rb
|
@@ -367,6 +375,7 @@ test_files:
|
|
367
375
|
- spec/quality_spec.rb
|
368
376
|
- spec/realworld/dependency_api_spec.rb
|
369
377
|
- spec/realworld/edgecases_spec.rb
|
378
|
+
- spec/realworld/parallel_install_spec.rb
|
370
379
|
- spec/resolver/basic_spec.rb
|
371
380
|
- spec/resolver/platform_spec.rb
|
372
381
|
- spec/runtime/executable_spec.rb
|
@@ -385,7 +394,6 @@ test_files:
|
|
385
394
|
- spec/support/artifice/endpoint_extra.rb
|
386
395
|
- spec/support/artifice/endpoint_extra_missing.rb
|
387
396
|
- spec/support/artifice/endpoint_fallback.rb
|
388
|
-
- spec/support/artifice/endpoint_host_redirect.rb
|
389
397
|
- spec/support/artifice/endpoint_marshal_fail.rb
|
390
398
|
- spec/support/artifice/endpoint_redirect.rb
|
391
399
|
- spec/support/artifice/endpoint_timeout.rb
|
@@ -396,11 +404,11 @@ test_files:
|
|
396
404
|
- spec/support/indexes.rb
|
397
405
|
- spec/support/matchers.rb
|
398
406
|
- spec/support/path.rb
|
399
|
-
- spec/support/permissions.rb
|
400
407
|
- spec/support/platforms.rb
|
401
408
|
- spec/support/ruby_ext.rb
|
402
409
|
- spec/support/rubygems_ext.rb
|
403
410
|
- spec/support/rubygems_hax/platform.rb
|
411
|
+
- spec/support/streams.rb
|
404
412
|
- spec/support/sudo.rb
|
405
413
|
- spec/update/gems_spec.rb
|
406
414
|
- spec/update/git_spec.rb
|