bundler 1.16.3 → 1.16.4

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.

Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/bundler.gemspec +2 -1
  4. data/lib/bundler.rb +3 -2
  5. data/lib/bundler/build_metadata.rb +2 -2
  6. data/lib/bundler/cli/update.rb +3 -3
  7. data/lib/bundler/env.rb +1 -1
  8. data/lib/bundler/resolver.rb +3 -4
  9. data/lib/bundler/shared_helpers.rb +2 -6
  10. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -1
  11. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +7 -2
  12. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  13. data/lib/bundler/version.rb +1 -1
  14. data/man/bundle-add.1 +1 -1
  15. data/man/bundle-add.1.txt +1 -1
  16. data/man/bundle-binstubs.1 +1 -1
  17. data/man/bundle-binstubs.1.txt +1 -1
  18. data/man/bundle-check.1 +1 -1
  19. data/man/bundle-check.1.txt +1 -1
  20. data/man/bundle-clean.1 +1 -1
  21. data/man/bundle-clean.1.txt +1 -1
  22. data/man/bundle-config.1 +1 -1
  23. data/man/bundle-config.1.txt +1 -1
  24. data/man/bundle-doctor.1 +1 -1
  25. data/man/bundle-doctor.1.txt +1 -1
  26. data/man/bundle-exec.1 +1 -1
  27. data/man/bundle-exec.1.txt +1 -1
  28. data/man/bundle-gem.1 +1 -1
  29. data/man/bundle-gem.1.txt +1 -1
  30. data/man/bundle-info.1 +1 -1
  31. data/man/bundle-info.1.txt +1 -1
  32. data/man/bundle-init.1 +1 -1
  33. data/man/bundle-init.1.txt +1 -1
  34. data/man/bundle-inject.1 +1 -1
  35. data/man/bundle-inject.1.txt +1 -1
  36. data/man/bundle-install.1 +1 -1
  37. data/man/bundle-install.1.txt +1 -1
  38. data/man/bundle-list.1 +1 -1
  39. data/man/bundle-list.1.txt +1 -1
  40. data/man/bundle-lock.1 +1 -1
  41. data/man/bundle-lock.1.txt +1 -1
  42. data/man/bundle-open.1 +1 -1
  43. data/man/bundle-open.1.txt +1 -1
  44. data/man/bundle-outdated.1 +1 -1
  45. data/man/bundle-outdated.1.txt +1 -1
  46. data/man/bundle-package.1 +1 -1
  47. data/man/bundle-package.1.txt +1 -1
  48. data/man/bundle-platform.1 +1 -1
  49. data/man/bundle-platform.1.txt +1 -1
  50. data/man/bundle-pristine.1 +1 -1
  51. data/man/bundle-pristine.1.txt +1 -1
  52. data/man/bundle-show.1 +3 -3
  53. data/man/bundle-show.1.txt +6 -5
  54. data/man/bundle-show.ronn +3 -2
  55. data/man/bundle-update.1 +1 -1
  56. data/man/bundle-update.1.txt +1 -1
  57. data/man/bundle-viz.1 +1 -1
  58. data/man/bundle-viz.1.txt +1 -1
  59. data/man/bundle.1 +1 -1
  60. data/man/bundle.1.txt +1 -1
  61. data/man/gemfile.5 +1 -1
  62. data/man/gemfile.5.txt +1 -1
  63. metadata +7 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 897f39bcd75dd113d5b7a265937b90f76aea4fde22206628e9a8975f6028d79a
4
- data.tar.gz: 503ee119ef7bce662c77670e39ca9766954ec392923c84742052508499e1768b
3
+ metadata.gz: 1d6603948ae8baa7859049f1add82a42f4b7aa5d88b1b6d7668a2f612fefa4f0
4
+ data.tar.gz: f4392924d1507711efe081176356e4c28a7e425370b18a7366fa096bb0402b8d
5
5
  SHA512:
6
- metadata.gz: '034865883b48cf57ac63225584bd6a466c3a8b91ac47328af41a6a153c3fe6b054b36b0a55d71e79a91014e04f8e7c4a2835b3edaeb1ff53b07fc13af5c79b10'
7
- data.tar.gz: a32cb54b35b9c498390711b60e5212268fc88d90f02d339c4d70344a740272098a20226a0bdd1544af558dfbd98e7c4c9c3c77e24edcf1f362ad99d94efe7349
6
+ metadata.gz: c2aafdb6623c8deb7ba107a45c73d7d33a27b419aa84e955aa51b3f7541900c92e69d0a5d1f63b6056bbfdc323e7e5989f8019927a7abef5dd1f46b5e6f110dc
7
+ data.tar.gz: a993c5a5f4d904011bab4a1fa02d8ddc44be4ce24ae91672e56591e651c86ffd43d23e729a2236c20df681e774c7b8e32c48936e2b510a906c19eb4c8b7486fc
@@ -1,3 +1,24 @@
1
+ ## 1.16.4 (2017-08-17)
2
+
3
+ Changes:
4
+
5
+ - Welcome new members to the Bundler core team (@indirect)
6
+ - Don't mutate original error trees when determining version_conflict_message (@greysteil)
7
+ - Update vendored Molinillo to 0.6.6 (@segiddins)
8
+
9
+ Bugfixes:
10
+
11
+ - Reword bundle update regression message to be more clear to the user when a gem's version is downgraded ([#6584](https://github.com/bundler/bundler/issues/6584), @ralphbolo)
12
+ - Respect --conservative flag when updating a dependency group ([#6560](https://github.com/bundler/bundler/issues/6560), @greysteil)
13
+ - Fix issue where a pre-release version was not being selected when it's specified in the Gemfile ([#6449](https://github.com/bundler/bundler/issues/6449), @akihiro17)
14
+ - Fix issue where `Etc` was not loaded when getting the user's home dir ([#6640](https://github.com/bundler/bundler/issues/6640), @colby-swandale)
15
+ - Use UTF-8 for reading files including Gemfile ([#6660](https://github.com/bundler/bundler/issues/6660), @eregon)
16
+ - Remove unnecessary `while` loop in path resolver helper (@ojab)
17
+
18
+ Documentation:
19
+
20
+ - Document that `bundle show [--paths]` sorts results by name (@kemitchell)
21
+
1
22
  ## 1.16.3 (2018-07-17)
2
23
 
3
24
  Features:
@@ -9,7 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.version = Bundler::VERSION
10
10
  s.license = "MIT"
11
11
  s.authors = [
12
- "André Arko", "Samuel Giddins", "Chris Morris", "James Wen", "Tim Moore",
12
+ "André Arko", "Samuel Giddins", "Colby Swandale", "Hiroshi Shibata",
13
+ "David Rodríguez", "Grey Baker", "Chris Morris", "James Wen", "Tim Moore",
13
14
  "André Medeiros", "Jessica Lynn Suttles", "Terence Lee", "Carl Lerche",
14
15
  "Yehuda Katz"
15
16
  ]
@@ -170,6 +170,7 @@ module Bundler
170
170
  end
171
171
 
172
172
  if warning
173
+ Kernel.send(:require, "etc")
173
174
  user_home = tmp_home_path(Etc.getlogin, warning)
174
175
  Bundler.ui.warn "#{warning}\nBundler will use `#{user_home}' as your home directory temporarily.\n"
175
176
  user_home
@@ -409,7 +410,7 @@ EOF
409
410
 
410
411
  def read_file(file)
411
412
  SharedHelpers.filesystem_access(file, :read) do
412
- File.open(file, "rb", &:read)
413
+ File.open(file, "r:UTF-8", &:read)
413
414
  end
414
415
  end
415
416
 
@@ -430,7 +431,7 @@ EOF
430
431
 
431
432
  def load_gemspec_uncached(file, validate = false)
432
433
  path = Pathname.new(file)
433
- contents = File.open(file, "r:UTF-8", &:read)
434
+ contents = read_file(file)
434
435
  spec = if contents.start_with?("---") # YAML header
435
436
  eval_yaml_gemspec(path, contents)
436
437
  else
@@ -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-07-17".freeze
8
- @git_commit_sha = "12e73cab7".freeze
7
+ @built_at = "2018-08-20".freeze
8
+ @git_commit_sha = "a356d8cf9".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -38,8 +38,8 @@ module Bundler
38
38
  Bundler::CLI::Common.ensure_all_gems_in_lockfile!(gems)
39
39
 
40
40
  if groups.any?
41
- specs = Bundler.definition.specs_for groups
42
- gems.concat(specs.map(&:name))
41
+ deps = Bundler.definition.dependencies.select {|d| (d.groups & groups).any? }
42
+ gems.concat(deps.map(&:name))
43
43
  end
44
44
 
45
45
  Bundler.definition(:gems => gems, :sources => sources, :ruby => options[:ruby],
@@ -76,7 +76,7 @@ module Bundler
76
76
  if !new_version
77
77
  Bundler.ui.warn "Bundler attempted to update #{name} but it was removed from the bundle"
78
78
  elsif new_version < locked_version
79
- Bundler.ui.warn "Bundler attempted to update #{name} but its version regressed from #{locked_version} to #{new_version}"
79
+ Bundler.ui.warn "Note: #{name} version regressed from #{locked_version} to #{new_version}"
80
80
  elsif new_version == locked_version
81
81
  Bundler.ui.warn "Bundler attempted to update #{name} but its version stayed the same"
82
82
  end
@@ -61,7 +61,7 @@ module Bundler
61
61
  end
62
62
 
63
63
  def self.read_file(filename)
64
- File.read(filename.to_s).strip
64
+ Bundler.read_file(filename.to_s).strip
65
65
  rescue Errno::ENOENT
66
66
  "<No #{filename} found>"
67
67
  rescue => e
@@ -179,10 +179,6 @@ module Bundler
179
179
 
180
180
  def requirement_satisfied_by?(requirement, activated, spec)
181
181
  return false unless requirement.matches_spec?(spec) || spec.source.is_a?(Source::Gemspec)
182
- if spec.version.prerelease? && !requirement.prerelease? && search_for(requirement).any? {|sg| !sg.version.prerelease? }
183
- vertex = activated.vertex_named(spec.name)
184
- return false if vertex.requirements.none?(&:prerelease?)
185
- end
186
182
  spec.activate_platform!(requirement.__platform) if !@platforms || @platforms.include?(requirement.__platform)
187
183
  true
188
184
  end
@@ -306,6 +302,9 @@ module Bundler
306
302
  :solver_name => "Bundler",
307
303
  :possibility_type => "gem",
308
304
  :reduce_trees => lambda do |trees|
305
+ # called first, because we want to reduce the amount of work required to find maximal empty sets
306
+ trees = trees.uniq {|t| t.flatten.map {|dep| [dep.name, dep.requirement] } }
307
+
309
308
  # bail out if tree size is too big for Array#combination to make any sense
310
309
  return trees if trees.size > 15
311
310
  maximal = 1.upto(trees.size).map do |size|
@@ -344,13 +344,9 @@ module Bundler
344
344
 
345
345
  def resolve_path(path)
346
346
  expanded = File.expand_path(path)
347
- return expanded unless File.respond_to?(:realpath)
347
+ return expanded unless File.respond_to?(:realpath) && File.exist?(expanded)
348
348
 
349
- while File.exist?(expanded) && File.realpath(expanded) != expanded
350
- expanded = File.realpath(expanded)
351
- end
352
-
353
- expanded
349
+ File.realpath(expanded)
354
350
  end
355
351
 
356
352
  def prints_major_deprecations?
@@ -108,11 +108,21 @@ module Bundler::Molinillo
108
108
  # dependency graph?
109
109
  # @return true iff there is a path following edges within this {#graph}
110
110
  def path_to?(other)
111
- equal?(other) || successors.any? { |v| v.path_to?(other) }
111
+ _path_to?(other)
112
112
  end
113
113
 
114
114
  alias descendent? path_to?
115
115
 
116
+ # @param [Vertex] other the vertex to check if there's a path to
117
+ # @param [Set<Vertex>] visited the vertices of {#graph} that have been visited
118
+ # @return [Boolean] whether there is a path to `other` from `self`
119
+ def _path_to?(other, visited = Set.new)
120
+ return false unless visited.add?(self)
121
+ return true if equal?(other)
122
+ successors.any? { |v| v._path_to?(other, visited) }
123
+ end
124
+ protected :_path_to?
125
+
116
126
  # Is there a path from `other` to `self` following edges in the
117
127
  # dependency graph?
118
128
  # @return true iff there is a path following edges within this {#graph}
@@ -18,7 +18,7 @@ module Bundler::Molinillo
18
18
  # @param [Array<Object>] required_by @see {#required_by}
19
19
  def initialize(dependency, required_by = [])
20
20
  @dependency = dependency
21
- @required_by = required_by
21
+ @required_by = required_by.uniq
22
22
  super()
23
23
  end
24
24
 
@@ -101,9 +101,14 @@ module Bundler::Molinillo
101
101
  printable_requirement = opts.delete(:printable_requirement) { proc { |req| req.to_s } }
102
102
  additional_message_for_conflict = opts.delete(:additional_message_for_conflict) { proc {} }
103
103
  version_for_spec = opts.delete(:version_for_spec) { proc(&:to_s) }
104
+ incompatible_version_message_for_conflict = opts.delete(:incompatible_version_message_for_conflict) do
105
+ proc do |name, _conflict|
106
+ %(#{solver_name} could not find compatible versions for #{possibility_type} "#{name}":)
107
+ end
108
+ end
104
109
 
105
110
  conflicts.sort.reduce(''.dup) do |o, (name, conflict)|
106
- o << %(\n#{solver_name} could not find compatible versions for #{possibility_type} "#{name}":\n)
111
+ o << "\n" << incompatible_version_message_for_conflict.call(name, conflict) << "\n"
107
112
  if conflict.locked_requirement
108
113
  o << %( In snapshot (#{name_for_locking_dependency_source}):\n)
109
114
  o << %( #{printable_requirement.call(conflict.locked_requirement)}\n)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bundler::Molinillo
4
4
  # The version of Bundler::Molinillo.
5
- VERSION = '0.6.4'.freeze
5
+ VERSION = '0.6.6'.freeze
6
6
  end
@@ -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.16.3" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.16.4" 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" "July 2018" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -37,4 +37,4 @@ OPTIONS
37
37
 
38
38
 
39
39
 
40
- July 2018 BUNDLE-ADD(1)
40
+ August 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\-BINSTUBS" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -45,4 +45,4 @@ BUNDLE INSTALL --BINSTUBS
45
45
 
46
46
 
47
47
 
48
- July 2018 BUNDLE-BINSTUBS(1)
48
+ August 2018 BUNDLE-BINSTUBS(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\-CHECK" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
@@ -30,4 +30,4 @@ OPTIONS
30
30
 
31
31
 
32
32
 
33
- July 2018 BUNDLE-CHECK(1)
33
+ August 2018 BUNDLE-CHECK(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" "July 2018" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "August 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
- July 2018 BUNDLE-CLEAN(1)
26
+ August 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\-CONFIG" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -498,4 +498,4 @@ CREDENTIALS FOR GEM SOURCES
498
498
 
499
499
 
500
500
 
501
- July 2018 BUNDLE-CONFIG(1)
501
+ August 2018 BUNDLE-CONFIG(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\-DOCTOR" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
@@ -41,4 +41,4 @@ OPTIONS
41
41
 
42
42
 
43
43
 
44
- July 2018 BUNDLE-DOCTOR(1)
44
+ August 2018 BUNDLE-DOCTOR(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\-EXEC" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -175,4 +175,4 @@ RUBYGEMS PLUGINS
175
175
 
176
176
 
177
177
 
178
- July 2018 BUNDLE-EXEC(1)
178
+ August 2018 BUNDLE-EXEC(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\-GEM" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -88,4 +88,4 @@ SEE ALSO
88
88
 
89
89
 
90
90
 
91
- July 2018 BUNDLE-GEM(1)
91
+ August 2018 BUNDLE-GEM(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\-INFO" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-INFO" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
@@ -18,4 +18,4 @@ OPTIONS
18
18
 
19
19
 
20
20
 
21
- July 2018 BUNDLE-INFO(1)
21
+ August 2018 BUNDLE-INFO(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\-INIT" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-INIT" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
@@ -31,4 +31,4 @@ SEE ALSO
31
31
 
32
32
 
33
33
 
34
- July 2018 BUNDLE-INIT(1)
34
+ August 2018 BUNDLE-INIT(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\-INJECT" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-INJECT" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
@@ -29,4 +29,4 @@ DESCRIPTION
29
29
 
30
30
 
31
31
 
32
- July 2018 BUNDLE-INJECT(1)
32
+ August 2018 BUNDLE-INJECT(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\-INSTALL" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -382,4 +382,4 @@ SEE ALSO
382
382
 
383
383
 
384
384
 
385
- July 2018 BUNDLE-INSTALL(1)
385
+ August 2018 BUNDLE-INSTALL(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" "July 2018" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -18,4 +18,4 @@ OPTIONS
18
18
 
19
19
 
20
20
 
21
- July 2018 BUNDLE-LIST(1)
21
+ August 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\-LOCK" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
@@ -90,4 +90,4 @@ PATCH LEVEL OPTIONS
90
90
 
91
91
 
92
92
 
93
- July 2018 BUNDLE-LOCK(1)
93
+ August 2018 BUNDLE-LOCK(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\-OPEN" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
@@ -26,4 +26,4 @@ DESCRIPTION
26
26
 
27
27
 
28
28
 
29
- July 2018 BUNDLE-OPEN(1)
29
+ August 2018 BUNDLE-OPEN(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" "July 2018" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -124,4 +124,4 @@ FILTERING OUTPUT
124
124
 
125
125
 
126
126
 
127
- July 2018 BUNDLE-OUTDATED(1)
127
+ August 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\-PACKAGE" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-PACKAGE" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-package\fR \- Package your needed \fB\.gem\fR files into your application
@@ -76,4 +76,4 @@ REMOTE FETCHING
76
76
 
77
77
 
78
78
 
79
- July 2018 BUNDLE-PACKAGE(1)
79
+ August 2018 BUNDLE-PACKAGE(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\-PLATFORM" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-platform\fR \- Displays platform compatibility information
@@ -54,4 +54,4 @@ OPTIONS
54
54
 
55
55
 
56
56
 
57
- July 2018 BUNDLE-PLATFORM(1)
57
+ August 2018 BUNDLE-PLATFORM(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\-PRISTINE" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -41,4 +41,4 @@ DESCRIPTION
41
41
 
42
42
 
43
43
 
44
- July 2018 BUNDLE-PRISTINE(1)
44
+ August 2018 BUNDLE-PRISTINE(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\-SHOW" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -10,7 +10,7 @@
10
10
  \fBbundle show\fR [GEM] [\-\-paths]
11
11
  .
12
12
  .SH "DESCRIPTION"
13
- Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)]\.
13
+ Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by name\.
14
14
  .
15
15
  .P
16
16
  Calling show with [GEM] will list the exact location of that gem on your machine\.
@@ -19,5 +19,5 @@ Calling show with [GEM] will list the exact location of that gem on your machine
19
19
  .
20
20
  .TP
21
21
  \fB\-\-paths\fR
22
- List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)]\.
22
+ List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by gem name\.
23
23
 
@@ -10,17 +10,18 @@ SYNOPSIS
10
10
 
11
11
  DESCRIPTION
12
12
  Without the [GEM] option, show will print a list of the names and ver-
13
- sions of all gems that are required by your [Gemfile(5)][Gemfile(5)].
13
+ sions of all gems that are required by your [Gemfile(5)][Gemfile(5)],
14
+ sorted by name.
14
15
 
15
- Calling show with [GEM] will list the exact location of that gem on
16
+ Calling show with [GEM] will list the exact location of that gem on
16
17
  your machine.
17
18
 
18
19
  OPTIONS
19
20
  --paths
20
- List the paths of all gems that are required by your [Gem-
21
- file(5)][Gemfile(5)].
21
+ List the paths of all gems that are required by your [Gem-
22
+ file(5)][Gemfile(5)], sorted by gem name.
22
23
 
23
24
 
24
25
 
25
26
 
26
- July 2018 BUNDLE-SHOW(1)
27
+ August 2018 BUNDLE-SHOW(1)
@@ -9,7 +9,7 @@ bundle-show(1) -- Shows all the gems in your bundle, or the path to a gem
9
9
  ## DESCRIPTION
10
10
 
11
11
  Without the [GEM] option, `show` will print a list of the names and versions of
12
- all gems that are required by your [`Gemfile(5)`][Gemfile(5)].
12
+ all gems that are required by your [`Gemfile(5)`][Gemfile(5)], sorted by name.
13
13
 
14
14
  Calling show with [GEM] will list the exact location of that gem on your
15
15
  machine.
@@ -17,4 +17,5 @@ machine.
17
17
  ## OPTIONS
18
18
 
19
19
  * `--paths`:
20
- List the paths of all gems that are required by your [`Gemfile(5)`][Gemfile(5)].
20
+ List the paths of all gems that are required by your [`Gemfile(5)`][Gemfile(5)],
21
+ sorted by gem name.
@@ -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\-UPDATE" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -385,4 +385,4 @@ RECOMMENDED WORKFLOW
385
385
 
386
386
 
387
387
 
388
- July 2018 BUNDLE-UPDATE(1)
388
+ August 2018 BUNDLE-UPDATE(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\-VIZ" "1" "July 2018" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -36,4 +36,4 @@ OPTIONS
36
36
 
37
37
 
38
38
 
39
- July 2018 BUNDLE-VIZ(1)
39
+ August 2018 BUNDLE-VIZ(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" "July 2018" "" ""
4
+ .TH "BUNDLE" "1" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -110,4 +110,4 @@ OBSOLETE
110
110
 
111
111
 
112
112
 
113
- July 2018 BUNDLE(1)
113
+ August 2018 BUNDLE(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 "GEMFILE" "5" "July 2018" "" ""
4
+ .TH "GEMFILE" "5" "August 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -646,4 +646,4 @@ SOURCE PRIORITY
646
646
 
647
647
 
648
648
 
649
- July 2018 GEMFILE(5)
649
+ August 2018 GEMFILE(5)
metadata CHANGED
@@ -1,11 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.3
4
+ version: 1.16.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
8
8
  - Samuel Giddins
9
+ - Colby Swandale
10
+ - Hiroshi Shibata
11
+ - David Rodríguez
12
+ - Grey Baker
9
13
  - Chris Morris
10
14
  - James Wen
11
15
  - Tim Moore
@@ -17,7 +21,7 @@ authors:
17
21
  autorequire:
18
22
  bindir: exe
19
23
  cert_chain: []
20
- date: 2018-07-17 00:00:00.000000000 Z
24
+ date: 2018-08-20 00:00:00.000000000 Z
21
25
  dependencies:
22
26
  - !ruby/object:Gem::Dependency
23
27
  name: automatiek
@@ -432,7 +436,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
432
436
  version: 1.3.6
433
437
  requirements: []
434
438
  rubyforge_project:
435
- rubygems_version: 2.7.7
439
+ rubygems_version: 2.7.6
436
440
  signing_key:
437
441
  specification_version: 4
438
442
  summary: The best way to manage your application's dependencies