bundler 1.4.0.rc.1 → 1.5.0.rc.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.
- data/.travis.yml +18 -15
- data/CHANGELOG.md +23 -2
- data/Rakefile +3 -1
- data/bundler.gemspec +1 -1
- data/lib/bundler.rb +3 -2
- data/lib/bundler/capistrano.rb +1 -0
- data/lib/bundler/cli.rb +19 -5
- data/lib/bundler/definition.rb +6 -2
- data/lib/bundler/dsl.rb +7 -3
- data/lib/bundler/endpoint_specification.rb +1 -1
- data/lib/bundler/fetcher.rb +22 -41
- data/lib/bundler/installer.rb +1 -11
- data/lib/bundler/lazy_specification.rb +1 -1
- data/lib/bundler/parallel_workers/unix_worker.rb +6 -0
- data/lib/bundler/remote_specification.rb +1 -1
- data/lib/bundler/retry.rb +4 -3
- data/lib/bundler/ruby_version.rb +1 -1
- data/lib/bundler/rubygems_ext.rb +7 -2
- data/lib/bundler/rubygems_integration.rb +31 -30
- data/lib/bundler/settings.rb +21 -0
- data/lib/bundler/source.rb +13 -2
- data/lib/bundler/source/git/git_proxy.rb +1 -1
- data/lib/bundler/source/rubygems.rb +43 -13
- data/lib/bundler/templates/newgem/README.md.tt +1 -1
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -2
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-config.ronn +9 -0
- data/man/bundle-install.ronn +9 -5
- data/man/gemfile.5.ronn +6 -0
- data/spec/bundler/retry_spec.rb +26 -3
- data/spec/commands/config_spec.rb +14 -0
- data/spec/{integration/inject.rb → commands/inject_spec.rb} +0 -0
- data/spec/commands/newgem_spec.rb +2 -2
- data/spec/commands/outdated_spec.rb +17 -0
- data/spec/install/binstubs_spec.rb +24 -0
- data/spec/install/bundler_spec.rb +146 -0
- data/spec/install/{gemspec_spec.rb → gemfile/gemspec_spec.rb} +0 -0
- data/spec/install/{git_spec.rb → gemfile/git_spec.rb} +2 -2
- data/spec/install/gemfile/path_spec.rb +468 -0
- data/spec/install/gemfile_spec.rb +44 -0
- data/spec/install/gems/groups_spec.rb +236 -177
- data/spec/install/gems/mirror_spec.rb +39 -0
- data/spec/install/gems/platform_spec.rb +2 -14
- data/spec/install/gems/simple_case_spec.rb +1 -450
- data/spec/install/gemspecs_spec.rb +50 -0
- data/spec/install/path_spec.rb +91 -409
- data/spec/install/prereleases_spec.rb +43 -0
- data/spec/other/bundle_ruby_spec.rb +2 -2
- data/spec/other/ext_spec.rb +1 -1
- data/spec/other/platform_spec.rb +29 -2
- data/spec/realworld/parallel_install_spec.rb +2 -1
- data/spec/realworld/parallel_update_spec.rb +31 -0
- data/spec/runtime/platform_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -2
- data/spec/support/{rubygems_hax/platform.rb → hax.rb} +0 -0
- metadata +110 -67
- checksums.yaml +0 -7
- data/spec/install/invalid_spec.rb +0 -50
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "bundle install" do
|
4
|
+
|
5
|
+
describe "when prerelease gems are available" do
|
6
|
+
it "finds prereleases" do
|
7
|
+
install_gemfile <<-G
|
8
|
+
source "file://#{gem_repo1}"
|
9
|
+
gem "not_released"
|
10
|
+
G
|
11
|
+
should_be_installed "not_released 1.0.pre"
|
12
|
+
end
|
13
|
+
|
14
|
+
it "uses regular releases if available" do
|
15
|
+
install_gemfile <<-G
|
16
|
+
source "file://#{gem_repo1}"
|
17
|
+
gem "has_prerelease"
|
18
|
+
G
|
19
|
+
should_be_installed "has_prerelease 1.0"
|
20
|
+
end
|
21
|
+
|
22
|
+
it "uses prereleases if requested" do
|
23
|
+
install_gemfile <<-G
|
24
|
+
source "file://#{gem_repo1}"
|
25
|
+
gem "has_prerelease", "1.1.pre"
|
26
|
+
G
|
27
|
+
should_be_installed "has_prerelease 1.1.pre"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe "when prerelease gems are not available" do
|
32
|
+
it "still works" do
|
33
|
+
build_repo3
|
34
|
+
install_gemfile <<-G
|
35
|
+
source "file://#{gem_repo3}"
|
36
|
+
gem "rack"
|
37
|
+
G
|
38
|
+
|
39
|
+
should_be_installed "rack 1.0"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -116,7 +116,7 @@ describe "bundle_ruby" do
|
|
116
116
|
it "returns the ruby version" do
|
117
117
|
gemfile <<-G
|
118
118
|
source "file://#{gem_repo1}"
|
119
|
-
ruby "1.9.3", :patchlevel => 429, :engine => 'ruby', :engine_version => '1.9.3'
|
119
|
+
ruby "1.9.3", :patchlevel => '429', :engine => 'ruby', :engine_version => '1.9.3'
|
120
120
|
|
121
121
|
gem "foo"
|
122
122
|
G
|
@@ -129,7 +129,7 @@ describe "bundle_ruby" do
|
|
129
129
|
it "handles an engine" do
|
130
130
|
gemfile <<-G
|
131
131
|
source "file://#{gem_repo1}"
|
132
|
-
ruby "1.9.3", :patchlevel => 392, :engine => 'jruby', :engine_version => '1.7.4'
|
132
|
+
ruby "1.9.3", :patchlevel => '392', :engine => 'jruby', :engine_version => '1.7.4'
|
133
133
|
|
134
134
|
gem "foo"
|
135
135
|
G
|
data/spec/other/ext_spec.rb
CHANGED
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe "Gem::Specification#match_platform" do
|
4
4
|
it "does not match platforms other than the gem platform" do
|
5
5
|
darwin = gem "lol", "1.0", "platform_specific-1.0-x86-darwin-10"
|
6
|
-
expect(darwin.match_platform(pl('java'))).to
|
6
|
+
expect(darwin.match_platform(pl('java'))).to be false
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
data/spec/other/platform_spec.rb
CHANGED
@@ -198,11 +198,12 @@ G
|
|
198
198
|
|
199
199
|
let(:ruby_version_correct) { "ruby \"#{RUBY_VERSION}\", :engine => \"#{local_ruby_engine}\", :engine_version => \"#{local_engine_version}\"" }
|
200
200
|
let(:ruby_version_correct_engineless) { "ruby \"#{RUBY_VERSION}\"" }
|
201
|
-
let(:ruby_version_correct_patchlevel) { "#{ruby_version_correct}, :patchlevel => #{RUBY_PATCHLEVEL}" }
|
201
|
+
let(:ruby_version_correct_patchlevel) { "#{ruby_version_correct}, :patchlevel => '#{RUBY_PATCHLEVEL}'" }
|
202
202
|
let(:ruby_version_incorrect) { "ruby \"#{not_local_ruby_version}\", :engine => \"#{local_ruby_engine}\", :engine_version => \"#{not_local_ruby_version}\"" }
|
203
203
|
let(:engine_incorrect) { "ruby \"#{RUBY_VERSION}\", :engine => \"#{not_local_tag}\", :engine_version => \"#{RUBY_VERSION}\"" }
|
204
204
|
let(:engine_version_incorrect) { "ruby \"#{RUBY_VERSION}\", :engine => \"#{local_ruby_engine}\", :engine_version => \"#{not_local_engine_version}\"" }
|
205
|
-
let(:patchlevel_incorrect) { "#{ruby_version_correct}, :patchlevel => #{not_local_patchlevel}" }
|
205
|
+
let(:patchlevel_incorrect) { "#{ruby_version_correct}, :patchlevel => '#{not_local_patchlevel}'" }
|
206
|
+
let(:patchlevel_fixnum) { "#{ruby_version_correct}, :patchlevel => #{RUBY_PATCHLEVEL}1" }
|
206
207
|
|
207
208
|
def should_be_ruby_version_incorrect(opts = {:exitstatus => true})
|
208
209
|
expect(exitstatus).to eq(18) if opts[:exitstatus]
|
@@ -225,6 +226,12 @@ G
|
|
225
226
|
expect(out).to be_include("Your Ruby patchlevel is #{RUBY_PATCHLEVEL}, but your Gemfile specified #{not_local_patchlevel}")
|
226
227
|
end
|
227
228
|
|
229
|
+
def should_be_patchlevel_fixnum(opts = {:exitstatus => true})
|
230
|
+
expect(exitstatus).to eq(18) if opts[:exitstatus]
|
231
|
+
|
232
|
+
expect(out).to be_include("The Ruby patchlevel in your Gemfile must be a string")
|
233
|
+
end
|
234
|
+
|
228
235
|
context "bundle install" do
|
229
236
|
it "installs fine when the ruby version matches" do
|
230
237
|
install_gemfile <<-G
|
@@ -1254,5 +1261,25 @@ G
|
|
1254
1261
|
should_be_patchlevel_incorrect
|
1255
1262
|
end
|
1256
1263
|
end
|
1264
|
+
|
1265
|
+
it "fails when the patchlevel is a fixnum" do
|
1266
|
+
simulate_ruby_engine "jruby" do
|
1267
|
+
update_repo2 do
|
1268
|
+
build_gem "activesupport", "3.0"
|
1269
|
+
update_git "foo", :path => lib_path("foo")
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
gemfile <<-G
|
1273
|
+
source "file://#{gem_repo2}"
|
1274
|
+
gem "activesupport", "2.3.5"
|
1275
|
+
gem "foo", :git => "#{lib_path('foo')}"
|
1276
|
+
|
1277
|
+
#{patchlevel_fixnum}
|
1278
|
+
G
|
1279
|
+
|
1280
|
+
bundle "outdated", :exitstatus => true
|
1281
|
+
should_be_patchlevel_fixnum
|
1282
|
+
end
|
1283
|
+
end
|
1257
1284
|
end
|
1258
1285
|
end
|
@@ -8,7 +8,8 @@ describe "installing dependencies parallely", :realworld => true do
|
|
8
8
|
gem 'faker', '~> 1.1.2'
|
9
9
|
G
|
10
10
|
|
11
|
-
bundle :install, :jobs => 4
|
11
|
+
bundle :install, :jobs => 4, :env => {"DEBUG" => "1"}
|
12
|
+
(0..3).each {|i| expect(out).to include("#{i}: ") }
|
12
13
|
|
13
14
|
bundle "show activesupport"
|
14
15
|
expect(out).to match(/activesupport/)
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "updating dependencies parallely", :realworld => true do
|
4
|
+
before :each do
|
5
|
+
install_gemfile <<-G
|
6
|
+
source "https://rubygems.org"
|
7
|
+
gem 'activesupport', '~> 3.2.12'
|
8
|
+
gem 'faker', '~> 1.1.2'
|
9
|
+
G
|
10
|
+
end
|
11
|
+
|
12
|
+
it "installs gems parallely" do
|
13
|
+
gemfile <<-G
|
14
|
+
source "https://rubygems.org"
|
15
|
+
gem 'activesupport', '3.2.13'
|
16
|
+
gem 'faker', '~> 1.1.2'
|
17
|
+
G
|
18
|
+
|
19
|
+
bundle :update, :jobs => 4, :env => {"DEBUG" => "1"}
|
20
|
+
(0..3).each {|i| expect(out).to include("#{i}: ") }
|
21
|
+
|
22
|
+
bundle "show activesupport"
|
23
|
+
expect(out).to match(/activesupport-3\.2\.13/)
|
24
|
+
|
25
|
+
bundle "show faker"
|
26
|
+
expect(out).to match(/faker/)
|
27
|
+
|
28
|
+
bundle "config jobs"
|
29
|
+
expect(out).to match(/: "4"/)
|
30
|
+
end
|
31
|
+
end
|
@@ -75,10 +75,10 @@ describe "Bundler.setup with multi platform stuff" do
|
|
75
75
|
nokogiri
|
76
76
|
G
|
77
77
|
|
78
|
-
system_gems "nokogiri-1.4.2", "platform_specific-1.0-x86-darwin-100"
|
79
|
-
|
80
78
|
simulate_platform "x86-darwin-100"
|
81
79
|
|
80
|
+
system_gems "nokogiri-1.4.2", "platform_specific-1.0-x86-darwin-100"
|
81
|
+
|
82
82
|
gemfile <<-G
|
83
83
|
source "file://#{gem_repo1}"
|
84
84
|
gem "nokogiri"
|
data/spec/spec_helper.rb
CHANGED
@@ -28,7 +28,7 @@ $show_err = true
|
|
28
28
|
|
29
29
|
Spec::Rubygems.setup
|
30
30
|
FileUtils.rm_rf(Spec::Path.gem_repo1)
|
31
|
-
ENV['RUBYOPT'] = "#{ENV['RUBYOPT']} -r#{Spec::Path.root}/spec/support/
|
31
|
+
ENV['RUBYOPT'] = "#{ENV['RUBYOPT']} -r#{Spec::Path.root}/spec/support/hax.rb"
|
32
32
|
ENV['BUNDLE_SPEC_RUN'] = "true"
|
33
33
|
|
34
34
|
# Don't wrap output in tests
|
@@ -88,7 +88,7 @@ RSpec.configure do |config|
|
|
88
88
|
in_app_root
|
89
89
|
end
|
90
90
|
|
91
|
-
config.after :each do
|
91
|
+
config.after :each do |example|
|
92
92
|
puts @out if example.exception
|
93
93
|
|
94
94
|
Dir.chdir(original_wd)
|
File without changes
|
metadata
CHANGED
@@ -1,56 +1,72 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: -3177594936
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
- rc
|
11
|
+
- 1
|
12
|
+
version: 1.5.0.rc.1
|
5
13
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
-
|
14
|
+
authors:
|
15
|
+
- "Andr\xC3\xA9 Arko"
|
8
16
|
- Terence Lee
|
9
17
|
- Carl Lerche
|
10
18
|
- Yehuda Katz
|
11
19
|
autorequire:
|
12
20
|
bindir: bin
|
13
21
|
cert_chain: []
|
14
|
-
|
15
|
-
|
16
|
-
|
22
|
+
|
23
|
+
date: 2013-11-10 00:00:00 Z
|
24
|
+
dependencies:
|
25
|
+
- !ruby/object:Gem::Dependency
|
17
26
|
name: ronn
|
18
|
-
requirement: !ruby/object:Gem::Requirement
|
19
|
-
requirements:
|
20
|
-
- - ~>
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.7.3
|
23
|
-
type: :development
|
24
27
|
prerelease: false
|
25
|
-
|
26
|
-
|
28
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
27
31
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
hash: 5
|
34
|
+
segments:
|
35
|
+
- 0
|
36
|
+
- 7
|
37
|
+
- 3
|
29
38
|
version: 0.7.3
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: rspec
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
requirements:
|
34
|
-
- - ~>
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
version: '2.11'
|
37
39
|
type: :development
|
40
|
+
version_requirements: *id001
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
38
43
|
prerelease: false
|
39
|
-
|
40
|
-
|
44
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
41
47
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
hash: -1680146190
|
50
|
+
segments:
|
51
|
+
- 2
|
52
|
+
- 99
|
53
|
+
- 0
|
54
|
+
- beta
|
55
|
+
- 1
|
56
|
+
version: 2.99.0.beta1
|
57
|
+
type: :development
|
58
|
+
version_requirements: *id002
|
59
|
+
description: Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
|
60
|
+
email:
|
47
61
|
- andre@arko.net
|
48
|
-
executables:
|
62
|
+
executables:
|
49
63
|
- bundle
|
50
64
|
- bundler
|
51
65
|
extensions: []
|
66
|
+
|
52
67
|
extra_rdoc_files: []
|
53
|
-
|
68
|
+
|
69
|
+
files:
|
54
70
|
- .gitignore
|
55
71
|
- .rspec
|
56
72
|
- .travis.yml
|
@@ -211,17 +227,25 @@ files:
|
|
211
227
|
- spec/commands/exec_spec.rb
|
212
228
|
- spec/commands/help_spec.rb
|
213
229
|
- spec/commands/init_spec.rb
|
230
|
+
- spec/commands/inject_spec.rb
|
214
231
|
- spec/commands/licenses_spec.rb
|
215
232
|
- spec/commands/newgem_spec.rb
|
216
233
|
- spec/commands/open_spec.rb
|
217
234
|
- spec/commands/outdated_spec.rb
|
218
235
|
- spec/commands/show_spec.rb
|
236
|
+
- spec/install/binstubs_spec.rb
|
237
|
+
- spec/install/bundler_spec.rb
|
219
238
|
- spec/install/deploy_spec.rb
|
239
|
+
- spec/install/gemfile/gemspec_spec.rb
|
240
|
+
- spec/install/gemfile/git_spec.rb
|
241
|
+
- spec/install/gemfile/path_spec.rb
|
242
|
+
- spec/install/gemfile_spec.rb
|
220
243
|
- spec/install/gems/c_ext_spec.rb
|
221
244
|
- spec/install/gems/dependency_api_spec.rb
|
222
245
|
- spec/install/gems/env_spec.rb
|
223
246
|
- spec/install/gems/flex_spec.rb
|
224
247
|
- spec/install/gems/groups_spec.rb
|
248
|
+
- spec/install/gems/mirror_spec.rb
|
225
249
|
- spec/install/gems/packed_spec.rb
|
226
250
|
- spec/install/gems/platform_spec.rb
|
227
251
|
- spec/install/gems/post_install_spec.rb
|
@@ -230,14 +254,12 @@ files:
|
|
230
254
|
- spec/install/gems/standalone_spec.rb
|
231
255
|
- spec/install/gems/sudo_spec.rb
|
232
256
|
- spec/install/gems/win32_spec.rb
|
233
|
-
- spec/install/
|
234
|
-
- spec/install/git_spec.rb
|
235
|
-
- spec/install/invalid_spec.rb
|
257
|
+
- spec/install/gemspecs_spec.rb
|
236
258
|
- spec/install/path_spec.rb
|
237
259
|
- spec/install/post_bundle_message_spec.rb
|
260
|
+
- spec/install/prereleases_spec.rb
|
238
261
|
- spec/install/security_policy_spec.rb
|
239
262
|
- spec/install/upgrade_spec.rb
|
240
|
-
- spec/integration/inject.rb
|
241
263
|
- spec/lock/git_spec.rb
|
242
264
|
- spec/lock/lockfile_spec.rb
|
243
265
|
- spec/other/bundle_ruby_spec.rb
|
@@ -248,6 +270,7 @@ files:
|
|
248
270
|
- spec/realworld/dependency_api_spec.rb
|
249
271
|
- spec/realworld/edgecases_spec.rb
|
250
272
|
- spec/realworld/parallel_install_spec.rb
|
273
|
+
- spec/realworld/parallel_update_spec.rb
|
251
274
|
- spec/resolver/basic_spec.rb
|
252
275
|
- spec/resolver/platform_spec.rb
|
253
276
|
- spec/runtime/executable_spec.rb
|
@@ -272,6 +295,7 @@ files:
|
|
272
295
|
- spec/support/builders.rb
|
273
296
|
- spec/support/fakeweb/rack-1.0.0.marshal
|
274
297
|
- spec/support/fakeweb/windows.rb
|
298
|
+
- spec/support/hax.rb
|
275
299
|
- spec/support/helpers.rb
|
276
300
|
- spec/support/indexes.rb
|
277
301
|
- spec/support/matchers.rb
|
@@ -279,53 +303,65 @@ files:
|
|
279
303
|
- spec/support/platforms.rb
|
280
304
|
- spec/support/ruby_ext.rb
|
281
305
|
- spec/support/rubygems_ext.rb
|
282
|
-
- spec/support/rubygems_hax/platform.rb
|
283
306
|
- spec/support/streams.rb
|
284
307
|
- spec/support/sudo.rb
|
285
308
|
- spec/update/gems_spec.rb
|
286
309
|
- spec/update/git_spec.rb
|
287
310
|
- spec/update/source_spec.rb
|
288
|
-
- lib/bundler/man/bundle
|
289
|
-
- lib/bundler/man/bundle-config
|
290
|
-
- lib/bundler/man/bundle-config.txt
|
291
311
|
- lib/bundler/man/bundle-exec
|
292
|
-
- lib/bundler/man/bundle
|
312
|
+
- lib/bundler/man/bundle
|
293
313
|
- lib/bundler/man/bundle-install
|
294
|
-
- lib/bundler/man/
|
295
|
-
- lib/bundler/man/bundle-package
|
296
|
-
- lib/bundler/man/bundle-package.txt
|
314
|
+
- lib/bundler/man/gemfile.5
|
297
315
|
- lib/bundler/man/bundle-platform
|
298
|
-
- lib/bundler/man/bundle-
|
316
|
+
- lib/bundler/man/bundle-package
|
299
317
|
- lib/bundler/man/bundle-update
|
318
|
+
- lib/bundler/man/bundle-exec.txt
|
319
|
+
- lib/bundler/man/gemfile.5.txt
|
300
320
|
- lib/bundler/man/bundle-update.txt
|
321
|
+
- lib/bundler/man/bundle-config
|
322
|
+
- lib/bundler/man/bundle-platform.txt
|
323
|
+
- lib/bundler/man/bundle-config.txt
|
301
324
|
- lib/bundler/man/bundle.txt
|
302
|
-
- lib/bundler/man/
|
303
|
-
- lib/bundler/man/
|
325
|
+
- lib/bundler/man/bundle-package.txt
|
326
|
+
- lib/bundler/man/bundle-install.txt
|
304
327
|
homepage: http://bundler.io
|
305
|
-
licenses:
|
328
|
+
licenses:
|
306
329
|
- MIT
|
307
|
-
metadata: {}
|
308
330
|
post_install_message:
|
309
331
|
rdoc_options: []
|
310
|
-
|
332
|
+
|
333
|
+
require_paths:
|
311
334
|
- lib
|
312
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
313
|
-
|
314
|
-
|
315
|
-
|
335
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
336
|
+
none: false
|
337
|
+
requirements:
|
338
|
+
- - ">="
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
hash: 57
|
341
|
+
segments:
|
342
|
+
- 1
|
343
|
+
- 8
|
344
|
+
- 7
|
316
345
|
version: 1.8.7
|
317
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
318
|
-
|
319
|
-
|
320
|
-
|
346
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
347
|
+
none: false
|
348
|
+
requirements:
|
349
|
+
- - ">="
|
350
|
+
- !ruby/object:Gem::Version
|
351
|
+
hash: 23
|
352
|
+
segments:
|
353
|
+
- 1
|
354
|
+
- 3
|
355
|
+
- 6
|
321
356
|
version: 1.3.6
|
322
357
|
requirements: []
|
358
|
+
|
323
359
|
rubyforge_project:
|
324
|
-
rubygems_version:
|
360
|
+
rubygems_version: 1.8.24
|
325
361
|
signing_key:
|
326
|
-
specification_version:
|
362
|
+
specification_version: 3
|
327
363
|
summary: The best way to manage your application's dependencies
|
328
|
-
test_files:
|
364
|
+
test_files:
|
329
365
|
- spec/bundler/bundler_spec.rb
|
330
366
|
- spec/bundler/cli_rspec.rb
|
331
367
|
- spec/bundler/definition_spec.rb
|
@@ -348,17 +384,25 @@ test_files:
|
|
348
384
|
- spec/commands/exec_spec.rb
|
349
385
|
- spec/commands/help_spec.rb
|
350
386
|
- spec/commands/init_spec.rb
|
387
|
+
- spec/commands/inject_spec.rb
|
351
388
|
- spec/commands/licenses_spec.rb
|
352
389
|
- spec/commands/newgem_spec.rb
|
353
390
|
- spec/commands/open_spec.rb
|
354
391
|
- spec/commands/outdated_spec.rb
|
355
392
|
- spec/commands/show_spec.rb
|
393
|
+
- spec/install/binstubs_spec.rb
|
394
|
+
- spec/install/bundler_spec.rb
|
356
395
|
- spec/install/deploy_spec.rb
|
396
|
+
- spec/install/gemfile/gemspec_spec.rb
|
397
|
+
- spec/install/gemfile/git_spec.rb
|
398
|
+
- spec/install/gemfile/path_spec.rb
|
399
|
+
- spec/install/gemfile_spec.rb
|
357
400
|
- spec/install/gems/c_ext_spec.rb
|
358
401
|
- spec/install/gems/dependency_api_spec.rb
|
359
402
|
- spec/install/gems/env_spec.rb
|
360
403
|
- spec/install/gems/flex_spec.rb
|
361
404
|
- spec/install/gems/groups_spec.rb
|
405
|
+
- spec/install/gems/mirror_spec.rb
|
362
406
|
- spec/install/gems/packed_spec.rb
|
363
407
|
- spec/install/gems/platform_spec.rb
|
364
408
|
- spec/install/gems/post_install_spec.rb
|
@@ -367,14 +411,12 @@ test_files:
|
|
367
411
|
- spec/install/gems/standalone_spec.rb
|
368
412
|
- spec/install/gems/sudo_spec.rb
|
369
413
|
- spec/install/gems/win32_spec.rb
|
370
|
-
- spec/install/
|
371
|
-
- spec/install/git_spec.rb
|
372
|
-
- spec/install/invalid_spec.rb
|
414
|
+
- spec/install/gemspecs_spec.rb
|
373
415
|
- spec/install/path_spec.rb
|
374
416
|
- spec/install/post_bundle_message_spec.rb
|
417
|
+
- spec/install/prereleases_spec.rb
|
375
418
|
- spec/install/security_policy_spec.rb
|
376
419
|
- spec/install/upgrade_spec.rb
|
377
|
-
- spec/integration/inject.rb
|
378
420
|
- spec/lock/git_spec.rb
|
379
421
|
- spec/lock/lockfile_spec.rb
|
380
422
|
- spec/other/bundle_ruby_spec.rb
|
@@ -385,6 +427,7 @@ test_files:
|
|
385
427
|
- spec/realworld/dependency_api_spec.rb
|
386
428
|
- spec/realworld/edgecases_spec.rb
|
387
429
|
- spec/realworld/parallel_install_spec.rb
|
430
|
+
- spec/realworld/parallel_update_spec.rb
|
388
431
|
- spec/resolver/basic_spec.rb
|
389
432
|
- spec/resolver/platform_spec.rb
|
390
433
|
- spec/runtime/executable_spec.rb
|
@@ -409,6 +452,7 @@ test_files:
|
|
409
452
|
- spec/support/builders.rb
|
410
453
|
- spec/support/fakeweb/rack-1.0.0.marshal
|
411
454
|
- spec/support/fakeweb/windows.rb
|
455
|
+
- spec/support/hax.rb
|
412
456
|
- spec/support/helpers.rb
|
413
457
|
- spec/support/indexes.rb
|
414
458
|
- spec/support/matchers.rb
|
@@ -416,7 +460,6 @@ test_files:
|
|
416
460
|
- spec/support/platforms.rb
|
417
461
|
- spec/support/ruby_ext.rb
|
418
462
|
- spec/support/rubygems_ext.rb
|
419
|
-
- spec/support/rubygems_hax/platform.rb
|
420
463
|
- spec/support/streams.rb
|
421
464
|
- spec/support/sudo.rb
|
422
465
|
- spec/update/gems_spec.rb
|