bundler 1.5.2 → 1.5.3
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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +7 -0
- data/Rakefile +2 -2
- data/lib/bundler/installer.rb +1 -1
- data/lib/bundler/source/rubygems.rb +1 -12
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +1 -1
- data/lib/bundler/version.rb +1 -1
- data/spec/bundler/definition_spec.rb +2 -2
- data/spec/bundler/dsl_spec.rb +3 -3
- data/spec/bundler/gem_helper_spec.rb +7 -5
- data/spec/bundler/safe_catch_spec.rb +6 -6
- data/spec/bundler/source_spec.rb +1 -1
- data/spec/commands/newgem_spec.rb +2 -2
- data/spec/install/gems/simple_case_spec.rb +1 -17
- data/spec/other/ext_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/builders.rb +43 -42
- data/spec/support/permissions.rb +0 -1
- metadata +7 -13
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: db6caecfa1400ecabac4e4166056f9ca616d09f3
|
4
|
+
data.tar.gz: 6bfb9eb62ab62260215ec47765005e9650689dbd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a6ecdc3b43845393951056fd8d93d942e4903f371defee233b410d26620b1ba79532eb51d6e08bef565dddf4f23a26f8efeef8a610ccc80acc76be489f4f6e0a
|
7
|
+
data.tar.gz: b17a2361fcabdb360f6ec68c9750430c9dcefcbc8ec2757dc9e54a32fa35315b4203523ff3588cb8e3e3fa9aa164910c21d9d98e8426f6fa43384122db7f3b62
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -28,8 +28,8 @@ end
|
|
28
28
|
namespace :spec do
|
29
29
|
desc "Ensure spec dependencies are installed"
|
30
30
|
task :deps do
|
31
|
-
{"rdiscount" => "~> 1.6", "ronn" => "~> 0.7.3", "rspec" => "~>
|
32
|
-
sh "#{Gem.ruby} -S gem list -i
|
31
|
+
{"rdiscount" => "~> 1.6", "ronn" => "~> 0.7.3", "rspec" => "~> 3.0.beta"}.each do |name, version|
|
32
|
+
sh "#{Gem.ruby} -S gem list -i '^#{name}$' -v '#{version}' || " \
|
33
33
|
"#{Gem.ruby} -S gem install #{name} -v '#{version}' --no-ri --no-rdoc"
|
34
34
|
end
|
35
35
|
end
|
data/lib/bundler/installer.rb
CHANGED
@@ -90,7 +90,7 @@ module Bundler
|
|
90
90
|
# dependencies might actually affect the installation of a gem.
|
91
91
|
# that said, it's a rare situation (other than rake), and parallel
|
92
92
|
# installation is just SO MUCH FASTER. so we let people opt in.
|
93
|
-
jobs = [Bundler.settings[:jobs].to_i, 1].max
|
93
|
+
jobs = [Bundler.settings[:jobs].to_i-1, 1].max
|
94
94
|
if jobs > 1 && can_install_parallely?
|
95
95
|
install_in_parallel jobs, options[:standalone]
|
96
96
|
else
|
@@ -4,7 +4,6 @@ require 'rubygems/spec_fetcher'
|
|
4
4
|
|
5
5
|
module Bundler
|
6
6
|
module Source
|
7
|
-
# TODO: Refactor this class
|
8
7
|
class Rubygems
|
9
8
|
API_REQUEST_LIMIT = 100 # threshold for switching back to the modern index instead of fetching every spec
|
10
9
|
|
@@ -68,7 +67,7 @@ module Bundler
|
|
68
67
|
end
|
69
68
|
|
70
69
|
def install(spec)
|
71
|
-
if installed_specs[spec].any?
|
70
|
+
if installed_specs[spec].any?
|
72
71
|
return ["Using #{spec.name} (#{spec.version})", nil]
|
73
72
|
end
|
74
73
|
|
@@ -277,16 +276,6 @@ module Bundler
|
|
277
276
|
end
|
278
277
|
end
|
279
278
|
|
280
|
-
def gem_dir_exists?(spec)
|
281
|
-
return true if spec.name == "bundler"
|
282
|
-
# Ruby 2 default gems
|
283
|
-
return true if spec.loaded_from.include?("specifications/default/")
|
284
|
-
# Ruby 1.9 default gems
|
285
|
-
return true if spec.summary =~ /is bundled with Ruby/
|
286
|
-
|
287
|
-
File.directory?(spec.full_gem_path)
|
288
|
-
end
|
289
279
|
end
|
290
|
-
|
291
280
|
end
|
292
281
|
end
|
data/lib/bundler/version.rb
CHANGED
@@ -2,5 +2,5 @@ module Bundler
|
|
2
2
|
# We're doing this because we might write tests that deal
|
3
3
|
# with other versions of bundler and we are unsure how to
|
4
4
|
# handle this better.
|
5
|
-
VERSION = "1.5.
|
5
|
+
VERSION = "1.5.3" unless defined?(::Bundler::VERSION)
|
6
6
|
end
|
@@ -3,7 +3,7 @@ require 'bundler/definition'
|
|
3
3
|
|
4
4
|
describe Bundler::Definition do
|
5
5
|
before do
|
6
|
-
Bundler.
|
6
|
+
allow(Bundler).to receive(:settings){ Bundler::Settings.new(".") }
|
7
7
|
end
|
8
8
|
|
9
9
|
describe "#lock" do
|
@@ -11,7 +11,7 @@ describe Bundler::Definition do
|
|
11
11
|
subject{ Bundler::Definition.new(nil, [], [], []) }
|
12
12
|
|
13
13
|
before do
|
14
|
-
File.
|
14
|
+
expect(File).to receive(:open).with("Gemfile.lock", "wb").
|
15
15
|
and_raise(Errno::EACCES)
|
16
16
|
end
|
17
17
|
|
data/spec/bundler/dsl_spec.rb
CHANGED
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe Bundler::Dsl do
|
4
4
|
before do
|
5
5
|
@rubygems = double("rubygems")
|
6
|
-
Bundler::Source::Rubygems.
|
6
|
+
allow(Bundler::Source::Rubygems).to receive(:new){ @rubygems }
|
7
7
|
end
|
8
8
|
|
9
9
|
describe "#_normalize_options" do
|
@@ -34,7 +34,7 @@ describe Bundler::Dsl do
|
|
34
34
|
|
35
35
|
describe "#method_missing" do
|
36
36
|
it "raises an error for unknown DSL methods" do
|
37
|
-
Bundler.
|
37
|
+
expect(Bundler).to receive(:read_file).with("Gemfile").and_return("unknown")
|
38
38
|
error_msg = "Undefined local variable or method `unknown'" \
|
39
39
|
" for Gemfile\\s+from Gemfile:1"
|
40
40
|
expect { subject.eval_gemfile("Gemfile") }.
|
@@ -44,7 +44,7 @@ describe Bundler::Dsl do
|
|
44
44
|
|
45
45
|
describe "#eval_gemfile" do
|
46
46
|
it "handles syntax errors with a useful message" do
|
47
|
-
Bundler.
|
47
|
+
expect(Bundler).to receive(:read_file).with("Gemfile").and_return("}")
|
48
48
|
expect { subject.eval_gemfile("Gemfile") }.
|
49
49
|
to raise_error(Bundler::GemfileError, /Gemfile syntax error/)
|
50
50
|
end
|
@@ -43,7 +43,7 @@ describe "Bundler::GemHelper tasks" do
|
|
43
43
|
|
44
44
|
context "gem management" do
|
45
45
|
def mock_confirm_message(message)
|
46
|
-
Bundler.ui.
|
46
|
+
expect(Bundler.ui).to receive(:confirm).with(message)
|
47
47
|
end
|
48
48
|
|
49
49
|
def mock_build_message
|
@@ -116,7 +116,7 @@ describe "Bundler::GemHelper tasks" do
|
|
116
116
|
end
|
117
117
|
|
118
118
|
it "raises an appropriate error when the install fails" do
|
119
|
-
@helper.
|
119
|
+
expect(@helper).to receive(:build_gem) do
|
120
120
|
# write an invalid gem file, so we can simulate install failure...
|
121
121
|
FileUtils.mkdir_p(File.join(@app.to_s, 'pkg'))
|
122
122
|
path = "#{@app.to_s}/pkg/test-0.0.1.gem"
|
@@ -146,7 +146,9 @@ describe "Bundler::GemHelper tasks" do
|
|
146
146
|
end
|
147
147
|
|
148
148
|
it "raises an appropriate error if there is no git remote" do
|
149
|
-
|
149
|
+
# silence messages
|
150
|
+
allow(Bundler.ui).to receive(:confirm)
|
151
|
+
allow(Bundler.ui).to receive(:error)
|
150
152
|
|
151
153
|
Dir.chdir(gem_repo1) { `git init --bare` }
|
152
154
|
Dir.chdir(@app) { `git commit -a -m "initial commit"` }
|
@@ -159,7 +161,7 @@ describe "Bundler::GemHelper tasks" do
|
|
159
161
|
mock_confirm_message(/Tagged v0.0.1/)
|
160
162
|
mock_confirm_message("Pushed git commits and tags.")
|
161
163
|
|
162
|
-
@helper.
|
164
|
+
expect(@helper).to receive(:rubygem_push).with(bundled_app('test/pkg/test-0.0.1.gem').to_s)
|
163
165
|
|
164
166
|
Dir.chdir(gem_repo1) { `git init --bare` }
|
165
167
|
Dir.chdir(@app) do
|
@@ -175,7 +177,7 @@ describe "Bundler::GemHelper tasks" do
|
|
175
177
|
mock_build_message
|
176
178
|
mock_confirm_message("Tag v0.0.1 has already been created.")
|
177
179
|
|
178
|
-
@helper.
|
180
|
+
expect(@helper).to receive(:rubygem_push).with(bundled_app('test/pkg/test-0.0.1.gem').to_s)
|
179
181
|
|
180
182
|
Dir.chdir(gem_repo1) {
|
181
183
|
`git init --bare`
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require 'spec_helper'
|
3
3
|
require 'bundler'
|
4
|
-
require
|
5
|
-
require
|
4
|
+
require 'bundler/safe_catch'
|
5
|
+
require 'bundler/current_ruby'
|
6
6
|
|
7
7
|
class RecursiveTmpResolver
|
8
8
|
include Bundler::SafeCatch
|
@@ -13,8 +13,8 @@ describe Bundler::SafeCatch do
|
|
13
13
|
|
14
14
|
it "should use safe_catch on jruby" do
|
15
15
|
if Bundler.current_ruby.jruby?
|
16
|
-
Bundler::SafeCatch::Internal.
|
17
|
-
Bundler::SafeCatch::Internal.
|
16
|
+
expect(Bundler::SafeCatch::Internal).to receive(:catch).and_call_original
|
17
|
+
expect(Bundler::SafeCatch::Internal).to receive(:throw).and_call_original
|
18
18
|
|
19
19
|
retval = resolver.safe_catch(:resolve) do
|
20
20
|
resolver.safe_throw(:resolve, "good bye world")
|
@@ -25,8 +25,8 @@ describe Bundler::SafeCatch do
|
|
25
25
|
|
26
26
|
it "should use regular catch/throw on MRI" do
|
27
27
|
if Bundler.current_ruby.mri?
|
28
|
-
Bundler::SafeCatch::Internal.
|
29
|
-
Bundler::SafeCatch::Internal.
|
28
|
+
expect(Bundler::SafeCatch::Internal).to_not receive(:catch)
|
29
|
+
expect(Bundler::SafeCatch::Internal).to_not receive(:throw)
|
30
30
|
|
31
31
|
retval = resolver.safe_catch(:resolve) do
|
32
32
|
resolver.safe_throw(:resolve, "good bye world")
|
data/spec/bundler/source_spec.rb
CHANGED
@@ -154,7 +154,7 @@ describe "bundle gem" do
|
|
154
154
|
end
|
155
155
|
|
156
156
|
it "creates a default test which fails" do
|
157
|
-
expect(bundled_app("test_gem/spec/test_gem_spec.rb").read).to match(/false.should
|
157
|
+
expect(bundled_app("test_gem/spec/test_gem_spec.rb").read).to match(/false.should eq(true)/)
|
158
158
|
end
|
159
159
|
end
|
160
160
|
|
@@ -330,7 +330,7 @@ describe "bundle gem" do
|
|
330
330
|
end
|
331
331
|
|
332
332
|
it "creates a default test which fails" do
|
333
|
-
expect(bundled_app("test-gem/spec/test/gem_spec.rb").read).to match(/false.should
|
333
|
+
expect(bundled_app("test-gem/spec/test/gem_spec.rb").read).to match(/false.should eq(true)/)
|
334
334
|
end
|
335
335
|
|
336
336
|
it "creates a default rake task to run the specs" do
|
@@ -298,7 +298,7 @@ describe "bundle install with gem sources" do
|
|
298
298
|
install_gemfile <<-G
|
299
299
|
G
|
300
300
|
|
301
|
-
expect(File.exists?(bundled_app("Gemfile.lock"))).to
|
301
|
+
expect(File.exists?(bundled_app("Gemfile.lock"))).to eq(true)
|
302
302
|
end
|
303
303
|
|
304
304
|
it "gracefully handles error when rubygems server is unavailable" do
|
@@ -337,22 +337,6 @@ describe "bundle install with gem sources" do
|
|
337
337
|
G
|
338
338
|
expect(exitstatus).to eq(0)
|
339
339
|
end
|
340
|
-
|
341
|
-
it "reinstalls the gem if the gem dir is missing but the specification file exists" do
|
342
|
-
gemfile(<<-G)
|
343
|
-
source "file://#{gem_repo1}"
|
344
|
-
|
345
|
-
gem 'foo'
|
346
|
-
G
|
347
|
-
|
348
|
-
bundle "install --path vendor/bundle"
|
349
|
-
|
350
|
-
FileUtils.rm_rf(vendored_gems('gems/foo-1.0'))
|
351
|
-
|
352
|
-
bundle "install"
|
353
|
-
|
354
|
-
expect(vendored_gems('gems/foo-1.0')).to exist
|
355
|
-
end
|
356
340
|
end
|
357
341
|
|
358
342
|
describe "when Bundler root contains regex chars" do
|
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 eq(false)
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
data/spec/spec_helper.rb
CHANGED
data/spec/support/builders.rb
CHANGED
@@ -627,53 +627,54 @@ module Spec
|
|
627
627
|
|
628
628
|
TEST_CERT=<<CERT
|
629
629
|
-----BEGIN CERTIFICATE-----
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
630
|
+
MIIDMjCCAhqgAwIBAgIBATANBgkqhkiG9w0BAQUFADAnMQwwCgYDVQQDDAN5b3Ux
|
631
|
+
FzAVBgoJkiaJk/IsZAEZFgdleGFtcGxlMB4XDTE0MDIwNTE0MTEwNloXDTE1MDIw
|
632
|
+
NTE0MTEwNlowJzEMMAoGA1UEAwwDeW91MRcwFQYKCZImiZPyLGQBGRYHZXhhbXBs
|
633
|
+
ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANlvFdpN43c4DMS9Jo06
|
634
|
+
m0a7k3bQ3HWQ1yrYhZMi77F1F73NpBknYHIzDktQpGn6hs/4QFJT4m4zNEBF47UL
|
635
|
+
jHU5nTK5rjkS3niGYUjvh3ZEzVeo9zHUlD/UwflDo4ALl3TSo2KY/KdPS/UTdLXL
|
636
|
+
ajkQvaVJtEDgBPE3DPhlj5whp+Ik3mDHej7qpV6F502leAwYaFyOtlEG/ZGNG+nZ
|
637
|
+
L0clH0j77HpP42AylHDi+vakEM3xcjo9BeWQ6Vkboic93c9RTt6CWBWxMQP7Nol1
|
638
|
+
MOebz9XOSQclxpxWteXNfPRtMdAhmRl76SMI8ywzThNPpa4EH/yz34ftebVOgKyM
|
639
|
+
nd0CAwEAAaNpMGcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFA7D
|
640
|
+
n9qo0np23qi3aOYuAAPn/5IdMBYGA1UdEQQPMA2BC3lvdUBleGFtcGxlMBYGA1Ud
|
641
|
+
EgQPMA2BC3lvdUBleGFtcGxlMA0GCSqGSIb3DQEBBQUAA4IBAQB5N+71KiNX3k0Y
|
642
|
+
FWizUHUYOqo+fEk3aBoFbOFcx+M5TXPiA91pH8mgyyD9tVzqiYgCGk7g/UrOv5Ec
|
643
|
+
NHjYqsFecNPayj8u2Po07pp2Nbc9aqt9uxoRSENZ72Dzrk3YDStgji7Sk/LZW5Kn
|
644
|
+
4JFTeRof+B7/ZijLZWBEnMfSHSIPaQu0Ig6c19OEhiiuhGOn4WUhGFYCadciKgnj
|
645
|
+
PtaUcxKuvXMwRPG3NZqeGZivTlrhAmmf7iPV/E334qzMytvAV8zycZFj2J5hvyLk
|
646
|
+
432zLezmbFGc0uLIUjXDu9bM5WYGy1BOTuzuApyuCs9S1greqz17f8f01J87DX3X
|
647
|
+
wJsshs4b
|
647
648
|
-----END CERTIFICATE-----
|
648
649
|
CERT
|
649
650
|
|
650
651
|
TEST_PKEY=<<PKEY
|
651
652
|
-----BEGIN RSA PRIVATE KEY-----
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
653
|
+
MIIEowIBAAKCAQEA2W8V2k3jdzgMxL0mjTqbRruTdtDcdZDXKtiFkyLvsXUXvc2k
|
654
|
+
GSdgcjMOS1CkafqGz/hAUlPibjM0QEXjtQuMdTmdMrmuORLeeIZhSO+HdkTNV6j3
|
655
|
+
MdSUP9TB+UOjgAuXdNKjYpj8p09L9RN0tctqORC9pUm0QOAE8TcM+GWPnCGn4iTe
|
656
|
+
YMd6PuqlXoXnTaV4DBhoXI62UQb9kY0b6dkvRyUfSPvsek/jYDKUcOL69qQQzfFy
|
657
|
+
Oj0F5ZDpWRuiJz3dz1FO3oJYFbExA/s2iXUw55vP1c5JByXGnFa15c189G0x0CGZ
|
658
|
+
GXvpIwjzLDNOE0+lrgQf/LPfh+15tU6ArIyd3QIDAQABAoIBACbDqz20TS1gDMa2
|
659
|
+
gj0DidNedbflHKjJHdNBru7Ad8NHgOgR1YO2hXdWquG6itVqGMbTF4SV9/R1pIcg
|
660
|
+
7qvEV1I+50u31tvOBWOvcYCzU48+TO2n7gowQA3xPHPYHzog1uu48fAOHl0lwgD7
|
661
|
+
av9OOK3b0jO5pC08wyTOD73pPWU0NrkTh2+N364leIi1pNuI1z4V+nEuIIm7XpVd
|
662
|
+
5V4sXidMTiEMJwE6baEDfTjHKaoRndXrrPo3ryIXmcX7Ag1SwAQwF5fBCRToCgIx
|
663
|
+
dszEZB1bJD5gA6r+eGnJLB/F60nK607az5o3EdguoB2LKa6q6krpaRCmZU5svvoF
|
664
|
+
J7xgBPECgYEA8RIzHAQ3zbaibKdnllBLIgsqGdSzebTLKheFuigRotEV3Or/z5Lg
|
665
|
+
k/nVnThWVkTOSRqXTNpJAME6a4KTdcVSxYP+SdZVO1esazHrGb7xPVb7MWSE1cqp
|
666
|
+
WEk3Yy8OUOPoPQMc4dyGzd30Mi8IBB6gnFIYOTrpUo0XtkBv8rGGhfsCgYEA5uYn
|
667
|
+
6QgL4NqNT84IXylmMb5ia3iBt6lhxI/A28CDtQvfScl4eYK0IjBwdfG6E1vJgyzg
|
668
|
+
nJzv3xEVo9bz+Kq7CcThWpK5JQaPnsV0Q74Wjk0ShHet15txOdJuKImnh5F6lylC
|
669
|
+
GTLR9gnptytfMH/uuw4ws0Q2kcg4l5NHKOWOnAcCgYEAvAwIVkhsB0n59Wu4gCZu
|
670
|
+
FUZENxYWUk/XUyQ6KnZrG2ih90xQ8+iMyqFOIm/52R2fFKNrdoWoALC6E3ct8+ZS
|
671
|
+
pMRLrelFXx8K3it4SwMJR2H8XBEfFW4bH0UtsW7Zafv+AunUs9LETP5gKG1LgXsq
|
672
|
+
qgXX43yy2LQ61O365YPZfdUCgYBVbTvA3MhARbvYldrFEnUL3GtfZbNgdxuD9Mee
|
673
|
+
xig0eJMBIrgfBLuOlqtVB70XYnM4xAbKCso4loKSHnofO1N99siFkRlM2JOUY2tz
|
674
|
+
kMWZmmxKdFjuF0WZ5f/5oYxI/QsFGC+rUQEbbWl56mMKd5qkvEhKWudxoklF0yiV
|
675
|
+
ufC8SwKBgDWb8iWqWN5a/kfvKoxFcDM74UHk/SeKMGAL+ujKLf58F+CbweM5pX9C
|
676
|
+
EUsxeoUEraVWTiyFVNqD81rCdceus9TdBj0ZIK1vUttaRZyrMAwF0uQSfjtxsOpd
|
677
|
+
l69BkyvzjgDPkmOHVGiSZDLi3YDvypbUpo6LOy4v5rVg5U2F/A0v
|
677
678
|
-----END RSA PRIVATE KEY-----
|
678
679
|
PKEY
|
679
680
|
end
|
data/spec/support/permissions.rb
CHANGED
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
5
|
-
prerelease:
|
4
|
+
version: 1.5.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- André Arko
|
@@ -12,12 +11,11 @@ authors:
|
|
12
11
|
autorequire:
|
13
12
|
bindir: bin
|
14
13
|
cert_chain: []
|
15
|
-
date: 2014-
|
14
|
+
date: 2014-02-06 00:00:00.000000000 Z
|
16
15
|
dependencies:
|
17
16
|
- !ruby/object:Gem::Dependency
|
18
17
|
name: ronn
|
19
18
|
requirement: !ruby/object:Gem::Requirement
|
20
|
-
none: false
|
21
19
|
requirements:
|
22
20
|
- - ~>
|
23
21
|
- !ruby/object:Gem::Version
|
@@ -25,7 +23,6 @@ dependencies:
|
|
25
23
|
type: :development
|
26
24
|
prerelease: false
|
27
25
|
version_requirements: !ruby/object:Gem::Requirement
|
28
|
-
none: false
|
29
26
|
requirements:
|
30
27
|
- - ~>
|
31
28
|
- !ruby/object:Gem::Version
|
@@ -33,7 +30,6 @@ dependencies:
|
|
33
30
|
- !ruby/object:Gem::Dependency
|
34
31
|
name: rspec
|
35
32
|
requirement: !ruby/object:Gem::Requirement
|
36
|
-
none: false
|
37
33
|
requirements:
|
38
34
|
- - ~>
|
39
35
|
- !ruby/object:Gem::Version
|
@@ -41,7 +37,6 @@ dependencies:
|
|
41
37
|
type: :development
|
42
38
|
prerelease: false
|
43
39
|
version_requirements: !ruby/object:Gem::Requirement
|
44
|
-
none: false
|
45
40
|
requirements:
|
46
41
|
- - ~>
|
47
42
|
- !ruby/object:Gem::Version
|
@@ -320,27 +315,26 @@ files:
|
|
320
315
|
homepage: http://bundler.io
|
321
316
|
licenses:
|
322
317
|
- MIT
|
318
|
+
metadata: {}
|
323
319
|
post_install_message:
|
324
320
|
rdoc_options: []
|
325
321
|
require_paths:
|
326
322
|
- lib
|
327
323
|
required_ruby_version: !ruby/object:Gem::Requirement
|
328
|
-
none: false
|
329
324
|
requirements:
|
330
|
-
- -
|
325
|
+
- - '>='
|
331
326
|
- !ruby/object:Gem::Version
|
332
327
|
version: 1.8.7
|
333
328
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
334
|
-
none: false
|
335
329
|
requirements:
|
336
|
-
- -
|
330
|
+
- - '>='
|
337
331
|
- !ruby/object:Gem::Version
|
338
332
|
version: 1.3.6
|
339
333
|
requirements: []
|
340
334
|
rubyforge_project:
|
341
|
-
rubygems_version:
|
335
|
+
rubygems_version: 2.0.14
|
342
336
|
signing_key:
|
343
|
-
specification_version:
|
337
|
+
specification_version: 4
|
344
338
|
summary: The best way to manage your application's dependencies
|
345
339
|
test_files:
|
346
340
|
- spec/bundler/bundler_spec.rb
|