bundler 1.8.8 → 1.8.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 974a8897ede822989f7655a8737514711a5c037a
4
- data.tar.gz: c6a75a0b592f1270622f3629edefbe2b4fd6da7c
3
+ metadata.gz: ddf096e691d8e5cc1625221906686441b6d48d45
4
+ data.tar.gz: 0b899a722320c9828c1980fcc19838ba6f7cfe2c
5
5
  SHA512:
6
- metadata.gz: 58cd817f1ed4f0565415847f00ee713042e353bc6814dec6f158f711a3cc4731af3af8183a48c035a76b61b8b36b9256a606962160b83c28ef76fdf157b346df
7
- data.tar.gz: be08f525fd4e7dba10a19c76807112396faf3a8036013a45ccfdb41e26cee97c40c9c0095ee09d051376e85a62f7f16636e89195cd9251415a08b24025b9d3df
6
+ metadata.gz: 41d1b08f9febdc290c8b99c3fe7a37f4d7a7431c989f9fb141212d3f08b6b11348f8b5f60c71fd23e1f98677f59f7b5ffe4cbcb0f96506cce93965940f87e045
7
+ data.tar.gz: ceb61499c262ea1ab1282d80f70322d36d12880dbcb11d5af528383d0b26a301afed9f59863fe926e29627fd7761d3aa7cf2c1cbffbdad9c9ea10b0e3f82016e
@@ -1,3 +1,9 @@
1
+ ## 1.8.9 (2015-05-02)
2
+
3
+ Bugfixes:
4
+
5
+ - Support RubyGems versions above 2.4.6 (@tenderlove, @segiddins, @indirect)
6
+
1
7
  ## 1.8.8 (2015-04-29)
2
8
 
3
9
  Bugfixes:
@@ -115,6 +121,19 @@ Documentation:
115
121
 
116
122
  - add missing Gemfile global `path` explanation (@agenteo)
117
123
 
124
+ ## 1.7.15 (2015-04-29)
125
+
126
+ Bugfixes:
127
+
128
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
129
+
130
+ ## 1.7.14 (2015-03-30)
131
+
132
+ Bugfixes:
133
+
134
+ - Keep gems locked when updating another gem from the same source (#3250, @indirect)
135
+ - Don't add extra quotes around long, quoted config values (@aroben, #3338)
136
+
118
137
  ## 1.7.13 (2015-02-07)
119
138
 
120
139
  Bugfixes:
data/Rakefile CHANGED
@@ -234,12 +234,15 @@ begin
234
234
  task :clean do
235
235
  rm_rf "lib/bundler/man"
236
236
  end
237
+
238
+ task(:require) { }
237
239
  end
238
240
 
239
241
  rescue LoadError
240
242
  namespace :man do
241
- task(:build) { warn "Install the ronn gem to be able to release!" }
242
- task(:clean) { warn "Install the ronn gem to be able to release!" }
243
+ task(:require) { abort "Install the ronn gem to be able to release!" }
244
+ task(:build) { warn "Install the ronn gem to build the help pages" }
245
+ task(:clean) { }
243
246
  end
244
247
  end
245
248
 
@@ -251,6 +254,6 @@ end
251
254
 
252
255
  require 'bundler/gem_tasks'
253
256
  task :build => ["man:clean", "man:build"]
254
- task :release => ["man:clean", "man:build"]
257
+ task :release => ["man:require", "man:clean", "man:build"]
255
258
 
256
259
  task :default => :spec
@@ -521,7 +521,7 @@ module Bundler
521
521
  converged = []
522
522
  @locked_specs.each do |s|
523
523
  # Replace the locked dependency's source with the equivalent source from the Gemfile
524
- dep = @dependencies.find { |dep| s.satisfies?(dep) }
524
+ dep = @dependencies.find { |d| s.satisfies?(d) }
525
525
  s.source = (dep && dep.source) || sources.get(s.source)
526
526
 
527
527
  # Don't add a spec to the list if its source is expired. For example,
@@ -585,6 +585,12 @@ module Bundler
585
585
  def ext_lock
586
586
  Gem::Ext::Builder::CHDIR_MONITOR
587
587
  end
588
+
589
+ def find_name(name)
590
+ Gem::Specification.stubs.find_all do |spec|
591
+ spec.name == name
592
+ end.map(&:to_spec)
593
+ end
588
594
  end
589
595
 
590
596
  end
@@ -3,6 +3,8 @@ module Bundler
3
3
  class Path
4
4
 
5
5
  class Installer < Bundler::GemInstaller
6
+ attr_reader :spec
7
+
6
8
  def initialize(spec, options = {})
7
9
  @spec = spec
8
10
  @tmp_bin_dir = "#{Bundler.tmp(spec.full_name)}/bin"
@@ -208,6 +208,8 @@ module Bundler
208
208
  remotes.map(&method(:suppress_configured_credentials))
209
209
  end
210
210
 
211
+ private
212
+
211
213
  def source_uris_for_spec(spec)
212
214
  specs.search_all(spec.name).inject([]) do |uris, s|
213
215
  uris << s.source_uri.without_credentials if s.source_uri
@@ -215,8 +217,6 @@ module Bundler
215
217
  end
216
218
  end
217
219
 
218
- private
219
-
220
220
  def loaded_from(spec)
221
221
  "#{Bundler.rubygems.gem_dir}/specifications/#{spec.full_name}.gemspec"
222
222
  end
@@ -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.8.8" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.8.9" unless defined?(::Bundler::VERSION)
6
6
  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.8.8
4
+ version: 1.8.9
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: 2015-04-30 00:00:00.000000000 Z
14
+ date: 2015-05-03 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mustache