bundler 1.3.0.pre.7 → 1.3.0.pre.8
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/.rspec +1 -1
- data/.travis.yml +5 -0
- data/CHANGELOG.md +47 -0
- data/CONTRIBUTE.md +1 -2
- data/CONTRIBUTING.md +1 -1
- data/{LICENSE → LICENSE.md} +1 -1
- data/Rakefile +16 -13
- data/bundler.gemspec +20 -24
- data/lib/bundler.rb +6 -6
- data/lib/bundler/cli.rb +48 -11
- data/lib/bundler/deployment.rb +2 -1
- data/lib/bundler/deprecate.rb +1 -1
- data/lib/bundler/dsl.rb +4 -1
- data/lib/bundler/env.rb +1 -1
- data/lib/bundler/fetcher.rb +85 -57
- data/lib/bundler/friendly_errors.rb +0 -12
- data/lib/bundler/index.rb +2 -2
- data/lib/bundler/injector.rb +1 -1
- data/lib/bundler/installer.rb +7 -3
- data/lib/bundler/resolver.rb +17 -0
- data/lib/bundler/rubygems_ext.rb +4 -3
- data/lib/bundler/rubygems_integration.rb +38 -19
- data/lib/bundler/runtime.rb +9 -3
- data/lib/bundler/source/git.rb +20 -12
- data/lib/bundler/source/git/git_proxy.rb +1 -0
- data/lib/bundler/source/path/installer.rb +1 -1
- data/lib/bundler/source/rubygems.rb +25 -31
- data/lib/bundler/templates/newgem/.travis.yml.tt +3 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +1 -1
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +17 -16
- data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +1 -1
- data/lib/bundler/ui.rb +3 -2
- data/lib/bundler/vendor/net/http/persistent.rb +743 -91
- data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +129 -0
- data/lib/bundler/vendored_persistent.rb +11 -0
- data/lib/bundler/version.rb +1 -1
- data/lib/bundler/vlad.rb +1 -1
- data/man/bundle-config.ronn +3 -2
- data/man/bundle-install.ronn +19 -4
- data/man/bundle-package.ronn +1 -1
- data/man/bundle-platform.ronn +1 -1
- data/man/bundle-update.ronn +5 -5
- data/man/gemfile.5.ronn +1 -1
- data/spec/bundler/bundler_spec.rb +26 -0
- data/spec/cache/git_spec.rb +1 -1
- data/spec/install/gems/dependency_api_spec.rb +12 -23
- data/spec/install/gems/flex_spec.rb +1 -0
- data/spec/install/gems/groups_spec.rb +0 -19
- data/spec/install/gems/simple_case_spec.rb +4 -1
- data/spec/install/gems/sudo_spec.rb +11 -15
- data/spec/install/git_spec.rb +17 -0
- data/spec/install/security_policy_spec.rb +78 -0
- data/spec/other/licenses_spec.rb +18 -0
- data/spec/other/newgem_spec.rb +36 -0
- data/spec/other/outdated_spec.rb +10 -2
- data/spec/other/show_spec.rb +6 -1
- data/spec/realworld/dependency_api_spec.rb +2 -2
- data/spec/realworld/edgecases_spec.rb +3 -3
- data/spec/resolver/basic_spec.rb +7 -1
- data/spec/resolver/platform_spec.rb +1 -1
- data/spec/runtime/executable_spec.rb +2 -2
- data/spec/runtime/setup_spec.rb +14 -1
- data/spec/support/artifice/endpoint.rb +2 -0
- data/spec/support/builders.rb +74 -1
- data/spec/support/fakeweb/windows.rb +1 -1
- data/spec/support/indexes.rb +22 -0
- data/spec/support/path.rb +4 -0
- data/spec/support/rubygems_ext.rb +1 -0
- metadata +63 -83
data/spec/support/builders.rb
CHANGED
@@ -126,6 +126,10 @@ module Spec
|
|
126
126
|
s.add_development_dependency "activesupport", "= 2.3.5"
|
127
127
|
end
|
128
128
|
|
129
|
+
build_gem "with_license" do |s|
|
130
|
+
s.license = "MIT"
|
131
|
+
end
|
132
|
+
|
129
133
|
build_gem "with_implicit_rake_dep" do |s|
|
130
134
|
s.extensions << "Rakefile"
|
131
135
|
s.write "Rakefile", <<-RUBY
|
@@ -261,6 +265,22 @@ module Spec
|
|
261
265
|
end
|
262
266
|
end
|
263
267
|
|
268
|
+
def build_security_repo
|
269
|
+
build_repo security_repo do
|
270
|
+
build_gem "rack"
|
271
|
+
|
272
|
+
build_gem "signed_gem" do |s|
|
273
|
+
cert = 'signing-cert.pem'
|
274
|
+
pkey = 'signing-pkey.pem'
|
275
|
+
s.write cert, TEST_CERT
|
276
|
+
s.write pkey, TEST_PKEY
|
277
|
+
s.signing_key = pkey
|
278
|
+
s.cert_chain = [cert]
|
279
|
+
end
|
280
|
+
end
|
281
|
+
|
282
|
+
end
|
283
|
+
|
264
284
|
def build_repo(path, &blk)
|
265
285
|
return if File.directory?(path)
|
266
286
|
rake_path = Dir["#{Path.base_system_gems}/**/rake*.gem"].first
|
@@ -319,7 +339,8 @@ module Spec
|
|
319
339
|
end
|
320
340
|
|
321
341
|
def update_git(name, *args, &block)
|
322
|
-
build_with(GitUpdater, name, args, &block)
|
342
|
+
spec = build_with(GitUpdater, name, args, &block)
|
343
|
+
GitReader.new lib_path(spec.full_name)
|
323
344
|
end
|
324
345
|
|
325
346
|
private
|
@@ -597,5 +618,57 @@ module Spec
|
|
597
618
|
@context.gem_repo1('gems')
|
598
619
|
end
|
599
620
|
end
|
621
|
+
|
622
|
+
TEST_CERT=<<CERT
|
623
|
+
-----BEGIN CERTIFICATE-----
|
624
|
+
MIIDLDCCAhSgAwIBAgIBADANBgkqhkiG9w0BAQUFADA8MRAwDgYDVQQDDAdleGFt
|
625
|
+
cGxlMRMwEQYKCZImiZPyLGQBGRYDZm9vMRMwEQYKCZImiZPyLGQBGRYDY29tMB4X
|
626
|
+
DTEzMDIwNDIxMTYzNVoXDTE0MDIwNDIxMTYzNVowPDEQMA4GA1UEAwwHZXhhbXBs
|
627
|
+
ZTETMBEGCgmSJomT8ixkARkWA2ZvbzETMBEGCgmSJomT8ixkARkWA2NvbTCCASIw
|
628
|
+
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANVgibTKM0ux14SXQU9M2Ec2mTHG
|
629
|
+
hoPJl/3Qq+p4wEalT87/Ascc2BaT6hXWWfAJ4oxReZnPfVop+fXZZDgtVC0JijPC
|
630
|
+
v+5JHs5KLEG1N+wzaVI7238yv4N62t48XD585bPp1meiVh9wE2kdax1bIJBwcRhd
|
631
|
+
gzR5kFfr2+O7u/g1nO/LN6aAWlKBXqntUmG0wEoWAibWDqpv4AIJhSGrzAqw648F
|
632
|
+
5TWiOEvKyrwohAt7IWbmiS8Cr3qT+GSq6tR9Hi6IC8vFW0gBvd1pSX25oUjdNApX
|
633
|
+
lzf6zkqBTzek9R7FN6TiymbJfCqaMz55rNAGZDDX0DOqJIvRTR6I2MQSfJsCAwEA
|
634
|
+
AaM5MDcwCQYDVR0TBAIwADAdBgNVHQ4EFgQULUiq0A8j8lc03KGvxV4a0tuBqfUw
|
635
|
+
CwYDVR0PBAQDAgSwMA0GCSqGSIb3DQEBBQUAA4IBAQBMqoR/F94kK2ou9Yff+DMp
|
636
|
+
b/hXEnl8lXzW0euUiTQcVRX6HO2AqGTqdZemUmm1uetGiozsuA1nbPInZQTL/zQq
|
637
|
+
oNbg60JxlKWStxF3zsZdKVDNXsXWg4WlzvF6qd4AjDCO//e/BHHe44r+vASqglYO
|
638
|
+
zTrTWYgjtDmPOLDvZTHhZ3kBV0Q0pGCBi7f0VYpqjEHSeyRfqJH1LT8yYC3vuYzZ
|
639
|
+
PPIub1CZNnaS4jvtSKZsEzaijftwI7ddt/S9Yt7BahUrfHCMrA/Nt3XSDu0BcgaF
|
640
|
+
cxrVBbDO8ELUvTY1yFcMYE1gzTIPCYE9TWXgm7A9HcD/7XLXkUL6nuvG3wwpBPTa
|
641
|
+
-----END CERTIFICATE-----
|
642
|
+
CERT
|
643
|
+
|
644
|
+
TEST_PKEY=<<PKEY
|
645
|
+
-----BEGIN RSA PRIVATE KEY-----
|
646
|
+
MIIEogIBAAKCAQEA1WCJtMozS7HXhJdBT0zYRzaZMcaGg8mX/dCr6njARqVPzv8C
|
647
|
+
xxzYFpPqFdZZ8AnijFF5mc99Win59dlkOC1ULQmKM8K/7kkezkosQbU37DNpUjvb
|
648
|
+
fzK/g3ra3jxcPnzls+nWZ6JWH3ATaR1rHVsgkHBxGF2DNHmQV+vb47u7+DWc78s3
|
649
|
+
poBaUoFeqe1SYbTAShYCJtYOqm/gAgmFIavMCrDrjwXlNaI4S8rKvCiEC3shZuaJ
|
650
|
+
LwKvepP4ZKrq1H0eLogLy8VbSAG93WlJfbmhSN00CleXN/rOSoFPN6T1HsU3pOLK
|
651
|
+
Zsl8KpozPnms0AZkMNfQM6oki9FNHojYxBJ8mwIDAQABAoIBAD8AD+iXQun4il+V
|
652
|
+
oSzezYTJNBYkPZcvsHa6Y+gI2wyAxr2hQZq0g4C3D4h/D3L2GDPB4pttTd+PQUQ7
|
653
|
+
eYG0sIPTq0B5Id4jLLtP3x1PekF9NH2ZOselnjId1f2D6OByVAf45NsYbUE/ABwr
|
654
|
+
GXNDcqvy5xGAmrqlod6zvurQhUFVWNYw1Ry6MCxD79S54Rky9cv6qzviPAh570y+
|
655
|
+
aWS+lXJeqVVhmwWnbOUBWu/8dsniJbknassxwOYCShNLGnPMW+gklPaUucOkDF8K
|
656
|
+
R0xYbOpAowQaIOdm7sQtt/CZOD34pgAWlLMev/J5y7+y6jvdqBMoLKIMAj/YqphW
|
657
|
+
FqOY4fECgYEA9t5MqdexzOpz5LTQbqUDDiMtVR5mn/7wPbgNCRuAADTuM8QJkREe
|
658
|
+
JCEG/S9CEmefoa6gr+CyWhq9qbFhLC7rEgBCInW/hL5m8qGVAVcpIUCbpYh7nirN
|
659
|
+
fHQP6zL2RESmJDo3Y0vLZosR+XR1UDSb3tdTQSXt/MX6p+gjcswnzN0CgYEA3UUY
|
660
|
+
ew22HjB1dnS7ps/gdsNwlalYYwSkfuBqNkluvMRE56HGbKeDYjEV4egkWZVYUNDJ
|
661
|
+
P+jVKUTOSfgzXOsR7rKeiaQ3UEZfVpV3iQWtqzS2+BlhWBoQsBLD5CjdP8ykOQGr
|
662
|
+
NQVNegXAFGhsiRNwm4Mpl5+t+Ap9aqSy1WwAu9cCgYBwY0vrlrLvY11XpamudZkq
|
663
|
+
eoFM2wZFmL6umnf0yXxAm9hF4N2qGWzrbc3MvhMKZfqalPG6oEUSGFJ4SrS+dK24
|
664
|
+
CD4Tih+iwzwDAeTgM1oaNVumxLfijgH2wq/sl8rd0ZMBsy88GWmESZPpSUePOCQu
|
665
|
+
E0Fny2jJRyiSAHEC9ka4UQKBgDFBmWKDOeBcjzlwYPmQWvp1JVHbodZhCTFJSbuN
|
666
|
+
+z3AP0qFA8PaQnAQVzuzzqu2iDNtVu+IKDOIopdqzhxII/TMBGjFip6vG7gNi8+P
|
667
|
+
2Qo8sOJn2/idzMs1UjAvPJlgN8qM6YzjAk1AjHK+kDKvhijIOPEM1dBanXKo+Tpz
|
668
|
+
UXJ/AoGABULY7oaW7vW7XLiHVTHeoqi9m9yNTVQRnsMFJm5GhisjavZbCzCGz1Tl
|
669
|
+
hiIdZiAgSpltgy7+R7l7JhmFf04xVnEJc/4lyJc4ZwYXkMGqD1tE9FXowbBFKktB
|
670
|
+
cPFVDEsR7SPkiAmGm99WiigexSwxW9hl+TjgolcXG7HTDsES2Sg=
|
671
|
+
-----END RSA PRIVATE KEY-----
|
672
|
+
PKEY
|
600
673
|
end
|
601
674
|
end
|
@@ -19,5 +19,5 @@ end
|
|
19
19
|
FakeWeb.register_uri(:get, "http://localgemserver.test/gems/rcov-1.0-x86-mswin32.gem",
|
20
20
|
:status => ["404", "Not Found"])
|
21
21
|
|
22
|
-
FakeWeb.register_uri(:get, "http://localgemserver.test/api/v1/dependencies
|
22
|
+
FakeWeb.register_uri(:get, "http://localgemserver.test/api/v1/dependencies",
|
23
23
|
:status => ["404", "Not Found"])
|
data/spec/support/indexes.rb
CHANGED
@@ -108,5 +108,27 @@ module Spec
|
|
108
108
|
end
|
109
109
|
end
|
110
110
|
end
|
111
|
+
|
112
|
+
# Builder 3.1.4 will activate first, but if all
|
113
|
+
# goes well, it should resolve to 3.0.4
|
114
|
+
def a_conflict_index
|
115
|
+
build_index do
|
116
|
+
gem "builder", %w(3.0.4 3.1.4)
|
117
|
+
gem("grape", '0.2.6') do
|
118
|
+
dep "builder", ">= 0"
|
119
|
+
end
|
120
|
+
|
121
|
+
versions '3.2.8 3.2.9 3.2.10 3.2.11' do |version|
|
122
|
+
gem("activemodel", version) do
|
123
|
+
dep "builder", "~> 3.0.0"
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
gem("my_app", '1.0.0') do
|
128
|
+
dep "activemodel", ">= 0"
|
129
|
+
dep "grape", ">= 0"
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
111
133
|
end
|
112
134
|
end
|
data/spec/support/path.rb
CHANGED
metadata
CHANGED
@@ -1,62 +1,60 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 3
|
8
|
-
- 0
|
9
|
-
- pre
|
10
|
-
- 7
|
11
|
-
version: 1.3.0.pre.7
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.3.0.pre.8
|
5
|
+
prerelease: 6
|
12
6
|
platform: ruby
|
13
|
-
authors:
|
14
|
-
-
|
7
|
+
authors:
|
8
|
+
- André Arko
|
15
9
|
- Terence Lee
|
16
10
|
- Carl Lerche
|
17
11
|
- Yehuda Katz
|
18
12
|
autorequire:
|
19
13
|
bindir: bin
|
20
14
|
cert_chain: []
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
dependencies:
|
25
|
-
- !ruby/object:Gem::Dependency
|
15
|
+
date: 2013-02-14 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
26
18
|
name: ronn
|
27
|
-
|
28
|
-
|
29
|
-
requirements:
|
30
|
-
- -
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
|
33
|
-
- 0
|
34
|
-
version: "0"
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.7.3
|
35
25
|
type: :development
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: rspec
|
39
26
|
prerelease: false
|
40
|
-
|
41
|
-
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
42
30
|
- - ~>
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.7.3
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rspec
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.11'
|
48
41
|
type: :development
|
49
|
-
|
50
|
-
|
51
|
-
|
42
|
+
prerelease: false
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ~>
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '2.11'
|
49
|
+
description: Bundler manages an application's dependencies through its entire life,
|
50
|
+
across many machines, systematically and repeatably
|
51
|
+
email:
|
52
52
|
- andre@arko.net
|
53
|
-
executables:
|
53
|
+
executables:
|
54
54
|
- bundle
|
55
55
|
extensions: []
|
56
|
-
|
57
56
|
extra_rdoc_files: []
|
58
|
-
|
59
|
-
files:
|
57
|
+
files:
|
60
58
|
- .gitignore
|
61
59
|
- .rspec
|
62
60
|
- .travis.yml
|
@@ -64,7 +62,7 @@ files:
|
|
64
62
|
- CONTRIBUTE.md
|
65
63
|
- CONTRIBUTING.md
|
66
64
|
- ISSUES.md
|
67
|
-
- LICENSE
|
65
|
+
- LICENSE.md
|
68
66
|
- README.md
|
69
67
|
- Rakefile
|
70
68
|
- UPGRADING.md
|
@@ -119,6 +117,7 @@ files:
|
|
119
117
|
- lib/bundler/templates/Executable
|
120
118
|
- lib/bundler/templates/Executable.standalone
|
121
119
|
- lib/bundler/templates/Gemfile
|
120
|
+
- lib/bundler/templates/newgem/.travis.yml.tt
|
122
121
|
- lib/bundler/templates/newgem/Gemfile.tt
|
123
122
|
- lib/bundler/templates/newgem/LICENSE.txt.tt
|
124
123
|
- lib/bundler/templates/newgem/README.md.tt
|
@@ -137,6 +136,7 @@ files:
|
|
137
136
|
- lib/bundler/vendor/.document
|
138
137
|
- lib/bundler/vendor/net/http/faster.rb
|
139
138
|
- lib/bundler/vendor/net/http/persistent.rb
|
139
|
+
- lib/bundler/vendor/net/http/persistent/ssl_reuse.rb
|
140
140
|
- lib/bundler/vendor/thor.rb
|
141
141
|
- lib/bundler/vendor/thor/actions.rb
|
142
142
|
- lib/bundler/vendor/thor/actions/create_file.rb
|
@@ -209,6 +209,7 @@ files:
|
|
209
209
|
- spec/install/git_spec.rb
|
210
210
|
- spec/install/invalid_spec.rb
|
211
211
|
- spec/install/path_spec.rb
|
212
|
+
- spec/install/security_policy_spec.rb
|
212
213
|
- spec/install/upgrade_spec.rb
|
213
214
|
- spec/integration/inject.rb
|
214
215
|
- spec/lock/git_spec.rb
|
@@ -223,6 +224,7 @@ files:
|
|
223
224
|
- spec/other/ext_spec.rb
|
224
225
|
- spec/other/help_spec.rb
|
225
226
|
- spec/other/init_spec.rb
|
227
|
+
- spec/other/licenses_spec.rb
|
226
228
|
- spec/other/newgem_spec.rb
|
227
229
|
- spec/other/open_spec.rb
|
228
230
|
- spec/other/outdated_spec.rb
|
@@ -266,57 +268,32 @@ files:
|
|
266
268
|
- spec/update/gems_spec.rb
|
267
269
|
- spec/update/git_spec.rb
|
268
270
|
- spec/update/source_spec.rb
|
269
|
-
- lib/bundler/man/bundle
|
270
|
-
- lib/bundler/man/bundle-config
|
271
|
-
- lib/bundler/man/bundle-config.txt
|
272
|
-
- lib/bundler/man/bundle-exec
|
273
|
-
- lib/bundler/man/bundle-exec.txt
|
274
|
-
- lib/bundler/man/bundle-install
|
275
|
-
- lib/bundler/man/bundle-install.txt
|
276
|
-
- lib/bundler/man/bundle-package
|
277
|
-
- lib/bundler/man/bundle-package.txt
|
278
|
-
- lib/bundler/man/bundle-platform
|
279
|
-
- lib/bundler/man/bundle-platform.txt
|
280
|
-
- lib/bundler/man/bundle-update
|
281
|
-
- lib/bundler/man/bundle-update.txt
|
282
|
-
- lib/bundler/man/bundle.txt
|
283
|
-
- lib/bundler/man/gemfile.5
|
284
|
-
- lib/bundler/man/gemfile.5.txt
|
285
|
-
has_rdoc: true
|
286
271
|
homepage: http://gembundler.com
|
287
|
-
licenses:
|
272
|
+
licenses:
|
288
273
|
- MIT
|
289
274
|
post_install_message:
|
290
275
|
rdoc_options: []
|
291
|
-
|
292
|
-
require_paths:
|
276
|
+
require_paths:
|
293
277
|
- lib
|
294
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
- 1
|
300
|
-
- 8
|
301
|
-
- 7
|
278
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
279
|
+
none: false
|
280
|
+
requirements:
|
281
|
+
- - ! '>='
|
282
|
+
- !ruby/object:Gem::Version
|
302
283
|
version: 1.8.7
|
303
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
- 1
|
309
|
-
- 3
|
310
|
-
- 6
|
284
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
285
|
+
none: false
|
286
|
+
requirements:
|
287
|
+
- - ! '>='
|
288
|
+
- !ruby/object:Gem::Version
|
311
289
|
version: 1.3.6
|
312
290
|
requirements: []
|
313
|
-
|
314
|
-
|
315
|
-
rubygems_version: 1.3.6
|
291
|
+
rubyforge_project:
|
292
|
+
rubygems_version: 1.8.24
|
316
293
|
signing_key:
|
317
294
|
specification_version: 3
|
318
295
|
summary: The best way to manage your application's dependencies
|
319
|
-
test_files:
|
296
|
+
test_files:
|
320
297
|
- spec/bundler/bundler_spec.rb
|
321
298
|
- spec/bundler/cli_rspec.rb
|
322
299
|
- spec/bundler/definition_spec.rb
|
@@ -346,6 +323,7 @@ test_files:
|
|
346
323
|
- spec/install/git_spec.rb
|
347
324
|
- spec/install/invalid_spec.rb
|
348
325
|
- spec/install/path_spec.rb
|
326
|
+
- spec/install/security_policy_spec.rb
|
349
327
|
- spec/install/upgrade_spec.rb
|
350
328
|
- spec/integration/inject.rb
|
351
329
|
- spec/lock/git_spec.rb
|
@@ -360,6 +338,7 @@ test_files:
|
|
360
338
|
- spec/other/ext_spec.rb
|
361
339
|
- spec/other/help_spec.rb
|
362
340
|
- spec/other/init_spec.rb
|
341
|
+
- spec/other/licenses_spec.rb
|
363
342
|
- spec/other/newgem_spec.rb
|
364
343
|
- spec/other/open_spec.rb
|
365
344
|
- spec/other/outdated_spec.rb
|
@@ -403,3 +382,4 @@ test_files:
|
|
403
382
|
- spec/update/gems_spec.rb
|
404
383
|
- spec/update/git_spec.rb
|
405
384
|
- spec/update/source_spec.rb
|
385
|
+
has_rdoc:
|