bundler 1.17.2 → 1.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5fc321a02b0fa5dad6b3cd6571aec637a45f08a466b2c4ec606504dd78349c6
4
- data.tar.gz: d35d0334cb32ed98e0acf906e259a2acd7b1bdcc2cd4d28834527fac61e71905
3
+ metadata.gz: 57be2a031c802a256fffbddca6f7cac7814f550ba22a5228ca4d69ffc6219ca0
4
+ data.tar.gz: f1928fbdadc8b1e2dbbedfb9361a7afed83b8d51b5fea407c5bef0857f93fd03
5
5
  SHA512:
6
- metadata.gz: 6c5bb5cb584c6bd1671a4b977521029ad69b30c3f46b878315a434927ad1a24075b35b7e3fbbd65732eaf86dcb21e768ca3168efa73d3b1175ef939623f5dcbf
7
- data.tar.gz: 676eb8c5a72ace883a6c635fc95b481b250d5cf56c212c58ea72ab664c83d3379a22996543d5abb311c8260857364b0fd960db62d29c0f0897c381a9b4ed2bad
6
+ metadata.gz: '08986fab1b004158cb55a6f0ef41e4a17e4b85561a97b24e85a731056af327f801e1d105915e6760e99b4b006da7f9a3c79b388d3ca998d2d12492e9accf7ad6'
7
+ data.tar.gz: fb07fcd0f42267952e5ce1a929825b7c1d7e42cd489f025a03a3a8846616bcd60bb477d12e437206dbb188f4e7c575fc6d0e6f89ab8adaf1bb6b01e91739fe21
@@ -1,6 +1,17 @@
1
+ ## 1.17.3 (2018-12-27)
2
+
3
+ Bugfixes:
4
+
5
+ - Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/bundler/bundler/issues/6839), @colby-swandale)
6
+ - Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/bundler/bundler/issues/6829), @colby-swandale)
7
+
8
+ Documentation:
9
+
10
+ - Add entry for the `bundle remove` command to the main Bundler manual page
11
+
1
12
  ## 1.17.2 (2018-12-11)
2
13
 
3
- - Add compatability for bundler merge with Ruby 2.6
14
+ - Add compatibility for bundler merge with Ruby 2.6
4
15
 
5
16
  ## 1.17.1 (2018-10-25)
6
17
 
@@ -4,8 +4,8 @@ module Bundler
4
4
  # Represents metadata from when the Bundler gem was built.
5
5
  module BuildMetadata
6
6
  # begin ivars
7
- @built_at = "2018-12-11".freeze
8
- @git_commit_sha = "43e950846".freeze
7
+ @built_at = "2018-12-27".freeze
8
+ @git_commit_sha = "d7089abb6".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -10,6 +10,13 @@ module Bundler
10
10
  end
11
11
  end
12
12
 
13
+ attr_reader :options
14
+
15
+ def initialize(gem, options = {})
16
+ @options = {}
17
+ super
18
+ end
19
+
13
20
  def check_executable_overwrite(filename)
14
21
  # Bundler needs to install gems regardless of binstub overwriting
15
22
  end
@@ -19,9 +19,8 @@ module Bundler
19
19
  # can't point to the actual gemspec or else the require paths will be wrong
20
20
  s.loaded_from = File.expand_path("..", __FILE__)
21
21
  end
22
- if loaded_spec = Bundler.rubygems.loaded_specs("bundler")
23
- idx << loaded_spec # this has to come after the fake gemspec, to override it
24
- elsif local_spec = Bundler.rubygems.find_name("bundler").find {|s| s.version.to_s == VERSION }
22
+
23
+ if local_spec = Bundler.rubygems.find_name("bundler").find {|s| s.version.to_s == VERSION }
25
24
  idx << local_spec
26
25
  end
27
26
 
@@ -7,7 +7,7 @@ module Bundler
7
7
  # We're doing this because we might write tests that deal
8
8
  # with other versions of bundler and we are unsure how to
9
9
  # handle this better.
10
- VERSION = "1.17.2" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.17.3" unless defined?(::Bundler::VERSION)
11
11
 
12
12
  def self.overwrite_loaded_gem_version
13
13
  begin
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-ADD" "1" "November 2018" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -49,4 +49,4 @@ OPTIONS
49
49
 
50
50
 
51
51
 
52
- November 2018 BUNDLE-ADD(1)
52
+ December 2018 BUNDLE-ADD(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CLEAN" "1" "November 2018" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
@@ -23,4 +23,4 @@ OPTIONS
23
23
 
24
24
 
25
25
 
26
- November 2018 BUNDLE-CLEAN(1)
26
+ December 2018 BUNDLE-CLEAN(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LIST" "1" "November 2018" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -40,4 +40,4 @@ OPTIONS
40
40
 
41
41
 
42
42
 
43
- November 2018 BUNDLE-LIST(1)
43
+ December 2018 BUNDLE-LIST(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OUTDATED" "1" "November 2018" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -128,4 +128,4 @@ FILTERING OUTPUT
128
128
 
129
129
 
130
130
 
131
- November 2018 BUNDLE-OUTDATED(1)
131
+ December 2018 BUNDLE-OUTDATED(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-REMOVE" "1" "November 2018" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -31,4 +31,4 @@ OPTIONS
31
31
 
32
32
 
33
33
 
34
- November 2018 BUNDLE-REMOVE(1)
34
+ December 2018 BUNDLE-REMOVE(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE" "1" "November 2018" "" ""
4
+ .TH "BUNDLE" "1" "December 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -116,6 +116,10 @@ Clean up unused gems in your Bundler directory
116
116
  \fBbundle doctor(1)\fR \fIbundle\-doctor\.1\.html\fR
117
117
  Display warnings about common problems
118
118
  .
119
+ .TP
120
+ \fBbundle remove(1)\fR \fIbundle\-remove\.1\.html\fR
121
+ Removes gems from the Gemfile
122
+ .
119
123
  .SH "PLUGINS"
120
124
  When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
121
125
  .
@@ -92,6 +92,9 @@ UTILITIES
92
92
  bundle doctor(1) bundle-doctor.1.html
93
93
  Display warnings about common problems
94
94
 
95
+ bundle remove(1) bundle-remove.1.html
96
+ Removes gems from the Gemfile
97
+
95
98
  PLUGINS
96
99
  When running a command that isn't listed in PRIMARY COMMANDS or UTILI-
97
100
  TIES, Bundler will try to find an executable on your path named
@@ -110,4 +113,4 @@ OBSOLETE
110
113
 
111
114
 
112
115
 
113
- November 2018 BUNDLE(1)
116
+ December 2018 BUNDLE(1)
@@ -94,6 +94,9 @@ We divide `bundle` subcommands into primary commands and utilities:
94
94
  * [`bundle doctor(1)`](bundle-doctor.1.html):
95
95
  Display warnings about common problems
96
96
 
97
+ * [`bundle remove(1)`](bundle-remove.1.html):
98
+ Removes gems from the Gemfile
99
+
97
100
  ## PLUGINS
98
101
 
99
102
  When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
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.17.2
4
+ version: 1.17.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -22,7 +22,7 @@ authors:
22
22
  autorequire:
23
23
  bindir: exe
24
24
  cert_chain: []
25
- date: 2018-12-11 00:00:00.000000000 Z
25
+ date: 2018-12-27 00:00:00.000000000 Z
26
26
  dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: automatiek