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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/bundler.gemspec +2 -1
- data/lib/bundler.rb +3 -2
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli/update.rb +3 -3
- data/lib/bundler/env.rb +1 -1
- data/lib/bundler/resolver.rb +3 -4
- data/lib/bundler/shared_helpers.rb +2 -6
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +7 -2
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/bundle-add.1.txt +1 -1
- data/man/bundle-binstubs.1 +1 -1
- data/man/bundle-binstubs.1.txt +1 -1
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +1 -1
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +1 -1
- data/man/bundle-config.1 +1 -1
- data/man/bundle-config.1.txt +1 -1
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +1 -1
- data/man/bundle-exec.1.txt +1 -1
- data/man/bundle-gem.1 +1 -1
- data/man/bundle-gem.1.txt +1 -1
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +1 -1
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +1 -1
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +1 -1
- data/man/bundle-install.1 +1 -1
- data/man/bundle-install.1.txt +1 -1
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +1 -1
- data/man/bundle-outdated.1.txt +1 -1
- data/man/bundle-package.1 +1 -1
- data/man/bundle-package.1.txt +1 -1
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +1 -1
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +1 -1
- data/man/bundle-show.1 +3 -3
- data/man/bundle-show.1.txt +6 -5
- data/man/bundle-show.ronn +3 -2
- data/man/bundle-update.1 +1 -1
- data/man/bundle-update.1.txt +1 -1
- data/man/bundle-viz.1 +1 -1
- data/man/bundle-viz.1.txt +1 -1
- data/man/bundle.1 +1 -1
- data/man/bundle.1.txt +1 -1
- data/man/gemfile.5 +1 -1
- data/man/gemfile.5.txt +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d6603948ae8baa7859049f1add82a42f4b7aa5d88b1b6d7668a2f612fefa4f0
|
4
|
+
data.tar.gz: f4392924d1507711efe081176356e4c28a7e425370b18a7366fa096bb0402b8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2aafdb6623c8deb7ba107a45c73d7d33a27b419aa84e955aa51b3f7541900c92e69d0a5d1f63b6056bbfdc323e7e5989f8019927a7abef5dd1f46b5e6f110dc
|
7
|
+
data.tar.gz: a993c5a5f4d904011bab4a1fa02d8ddc44be4ce24ae91672e56591e651c86ffd43d23e729a2236c20df681e774c7b8e32c48936e2b510a906c19eb4c8b7486fc
|
data/CHANGELOG.md
CHANGED
@@ -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:
|
data/bundler.gemspec
CHANGED
@@ -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", "
|
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
|
]
|
data/lib/bundler.rb
CHANGED
@@ -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, "
|
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 =
|
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-
|
8
|
-
@git_commit_sha = "
|
7
|
+
@built_at = "2018-08-20".freeze
|
8
|
+
@git_commit_sha = "a356d8cf9".freeze
|
9
9
|
@release = true
|
10
10
|
# end ivars
|
11
11
|
|
data/lib/bundler/cli/update.rb
CHANGED
@@ -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
|
-
|
42
|
-
gems.concat(
|
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 "
|
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
|
data/lib/bundler/env.rb
CHANGED
data/lib/bundler/resolver.rb
CHANGED
@@ -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
|
-
|
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
|
-
|
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 <<
|
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)
|
data/lib/bundler/version.rb
CHANGED
@@ -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.
|
10
|
+
VERSION = "1.16.4" unless defined?(::Bundler::VERSION)
|
11
11
|
|
12
12
|
def self.overwrite_loaded_gem_version
|
13
13
|
begin
|
data/man/bundle-add.1
CHANGED
data/man/bundle-add.1.txt
CHANGED
data/man/bundle-binstubs.1
CHANGED
data/man/bundle-binstubs.1.txt
CHANGED
data/man/bundle-check.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-check.1.txt
CHANGED
data/man/bundle-clean.1
CHANGED
data/man/bundle-clean.1.txt
CHANGED
data/man/bundle-config.1
CHANGED
data/man/bundle-config.1.txt
CHANGED
data/man/bundle-doctor.1
CHANGED
data/man/bundle-doctor.1.txt
CHANGED
data/man/bundle-exec.1
CHANGED
data/man/bundle-exec.1.txt
CHANGED
data/man/bundle-gem.1
CHANGED
data/man/bundle-gem.1.txt
CHANGED
data/man/bundle-info.1
CHANGED
data/man/bundle-info.1.txt
CHANGED
data/man/bundle-init.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-init.1.txt
CHANGED
data/man/bundle-inject.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-inject.1.txt
CHANGED
data/man/bundle-install.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-install.1.txt
CHANGED
data/man/bundle-list.1
CHANGED
data/man/bundle-list.1.txt
CHANGED
data/man/bundle-lock.1
CHANGED
data/man/bundle-lock.1.txt
CHANGED
data/man/bundle-open.1
CHANGED
data/man/bundle-open.1.txt
CHANGED
data/man/bundle-outdated.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-outdated.1.txt
CHANGED
data/man/bundle-package.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-package.1.txt
CHANGED
data/man/bundle-platform.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-PLATFORM" "1" "August 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
data/man/bundle-platform.1.txt
CHANGED
data/man/bundle-pristine.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-pristine.1.txt
CHANGED
data/man/bundle-show.1
CHANGED
@@ -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" "
|
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
|
|
data/man/bundle-show.1.txt
CHANGED
@@ -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
|
13
|
+
sions of all gems that are required by your [Gemfile(5)][Gemfile(5)],
|
14
|
+
sorted by name.
|
14
15
|
|
15
|
-
Calling
|
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
|
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
|
-
|
27
|
+
August 2018 BUNDLE-SHOW(1)
|
data/man/bundle-show.ronn
CHANGED
@@ -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.
|
data/man/bundle-update.1
CHANGED
@@ -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" "
|
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
|
data/man/bundle-update.1.txt
CHANGED
data/man/bundle-viz.1
CHANGED
data/man/bundle-viz.1.txt
CHANGED
data/man/bundle.1
CHANGED
data/man/bundle.1.txt
CHANGED
data/man/gemfile.5
CHANGED
data/man/gemfile.5.txt
CHANGED
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.
|
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-
|
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.
|
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
|