bundler 2.2.0.rc.2 → 2.2.0

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 (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +35 -1
  3. data/lib/bundler.rb +4 -0
  4. data/lib/bundler/build_metadata.rb +2 -2
  5. data/lib/bundler/cli.rb +5 -2
  6. data/lib/bundler/cli/binstubs.rb +6 -2
  7. data/lib/bundler/cli/exec.rb +3 -3
  8. data/lib/bundler/cli/outdated.rb +2 -4
  9. data/lib/bundler/compact_index_client/updater.rb +5 -5
  10. data/lib/bundler/definition.rb +4 -9
  11. data/lib/bundler/env.rb +1 -1
  12. data/lib/bundler/feature_flag.rb +0 -1
  13. data/lib/bundler/fetcher/index.rb +2 -3
  14. data/lib/bundler/friendly_errors.rb +15 -0
  15. data/lib/bundler/index.rb +5 -1
  16. data/lib/bundler/injector.rb +9 -2
  17. data/lib/bundler/installer.rb +7 -5
  18. data/lib/bundler/lazy_specification.rb +5 -7
  19. data/lib/bundler/man/.document +1 -0
  20. data/{man → lib/bundler/man}/bundle-add.1.ronn +0 -0
  21. data/{man → lib/bundler/man}/bundle-binstubs.1.ronn +0 -0
  22. data/{man → lib/bundler/man}/bundle-cache.1.ronn +0 -0
  23. data/{man → lib/bundler/man}/bundle-check.1.ronn +0 -0
  24. data/{man → lib/bundler/man}/bundle-clean.1.ronn +0 -0
  25. data/{man → lib/bundler/man}/bundle-config.1.ronn +1 -9
  26. data/{man → lib/bundler/man}/bundle-doctor.1.ronn +0 -0
  27. data/{man → lib/bundler/man}/bundle-exec.1.ronn +0 -0
  28. data/{man → lib/bundler/man}/bundle-gem.1.ronn +0 -0
  29. data/{man → lib/bundler/man}/bundle-info.1.ronn +0 -0
  30. data/{man → lib/bundler/man}/bundle-init.1.ronn +0 -0
  31. data/{man → lib/bundler/man}/bundle-inject.1.ronn +0 -0
  32. data/{man → lib/bundler/man}/bundle-install.1.ronn +1 -1
  33. data/{man → lib/bundler/man}/bundle-list.1.ronn +0 -0
  34. data/{man → lib/bundler/man}/bundle-lock.1.ronn +0 -0
  35. data/{man → lib/bundler/man}/bundle-open.1.ronn +0 -0
  36. data/{man → lib/bundler/man}/bundle-outdated.1.ronn +0 -0
  37. data/{man → lib/bundler/man}/bundle-platform.1.ronn +0 -0
  38. data/{man → lib/bundler/man}/bundle-pristine.1.ronn +0 -0
  39. data/{man → lib/bundler/man}/bundle-remove.1.ronn +0 -0
  40. data/{man → lib/bundler/man}/bundle-show.1.ronn +0 -0
  41. data/{man → lib/bundler/man}/bundle-update.1.ronn +0 -0
  42. data/{man → lib/bundler/man}/bundle-viz.1.ronn +0 -0
  43. data/{man → lib/bundler/man}/bundle.1.ronn +0 -0
  44. data/{man → lib/bundler/man}/gemfile.5.ronn +0 -0
  45. data/lib/bundler/plugin/api/source.rb +1 -1
  46. data/lib/bundler/plugin/dsl.rb +1 -1
  47. data/lib/bundler/resolver.rb +2 -3
  48. data/lib/bundler/rubygems_integration.rb +4 -0
  49. data/lib/bundler/settings.rb +0 -1
  50. data/lib/bundler/source/git/git_proxy.rb +1 -1
  51. data/lib/bundler/spec_set.rb +1 -0
  52. data/lib/bundler/templates/newgem/README.md.tt +0 -1
  53. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -2
  54. data/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -0
  55. data/lib/bundler/uri_credentials_filter.rb +2 -0
  56. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
  57. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -1
  58. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  59. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  60. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  61. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +38 -40
  62. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +4 -7
  63. data/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
  64. data/lib/bundler/vendored_tmpdir.rb +4 -0
  65. data/lib/bundler/version.rb +1 -1
  66. data/man/bundle-add.1 +1 -1
  67. data/man/bundle-binstubs.1 +1 -1
  68. data/man/bundle-cache.1 +1 -1
  69. data/man/bundle-check.1 +1 -1
  70. data/man/bundle-clean.1 +1 -1
  71. data/man/bundle-config.1 +2 -5
  72. data/man/bundle-doctor.1 +1 -1
  73. data/man/bundle-exec.1 +1 -1
  74. data/man/bundle-gem.1 +1 -1
  75. data/man/bundle-info.1 +1 -1
  76. data/man/bundle-init.1 +1 -1
  77. data/man/bundle-inject.1 +1 -1
  78. data/man/bundle-install.1 +2 -2
  79. data/man/bundle-list.1 +1 -1
  80. data/man/bundle-lock.1 +1 -1
  81. data/man/bundle-open.1 +1 -1
  82. data/man/bundle-outdated.1 +1 -1
  83. data/man/bundle-platform.1 +1 -1
  84. data/man/bundle-pristine.1 +1 -1
  85. data/man/bundle-remove.1 +1 -1
  86. data/man/bundle-show.1 +1 -1
  87. data/man/bundle-update.1 +1 -1
  88. data/man/bundle-viz.1 +1 -1
  89. data/man/bundle.1 +1 -1
  90. data/man/gemfile.5 +1 -1
  91. data/man/index.txt +25 -0
  92. metadata +35 -32
  93. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
@@ -3,6 +3,8 @@ require_relative '../../../../uri/lib/uri'
3
3
  require 'cgi' # for escaping
4
4
  require_relative '../../../../connection_pool/lib/connection_pool'
5
5
 
6
+ autoload :OpenSSL, 'openssl'
7
+
6
8
  ##
7
9
  # Persistent connections for Net::HTTP
8
10
  #
@@ -147,14 +149,9 @@ class Bundler::Persistent::Net::HTTP::Persistent
147
149
  EPOCH = Time.at 0 # :nodoc:
148
150
 
149
151
  ##
150
- # Is OpenSSL available?
152
+ # Is OpenSSL available? This test works with autoload
151
153
 
152
- HAVE_OPENSSL = begin # :nodoc:
153
- require 'openssl'
154
- true
155
- rescue LoadError
156
- false
157
- end
154
+ HAVE_OPENSSL = defined? OpenSSL::SSL # :nodoc:
158
155
 
159
156
  ##
160
157
  # The default connection pool size is 1/4 the allowed open files
@@ -0,0 +1,154 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # tmpdir - retrieve temporary directory path
4
+ #
5
+ # $Id$
6
+ #
7
+
8
+ require_relative '../../fileutils/lib/fileutils'
9
+ begin
10
+ require 'etc.so'
11
+ rescue LoadError # rescue LoadError for miniruby
12
+ end
13
+
14
+ class Bundler::Dir < Dir
15
+
16
+ @systmpdir ||= defined?(Etc.systmpdir) ? Etc.systmpdir : '/tmp'
17
+
18
+ ##
19
+ # Returns the operating system's temporary file path.
20
+
21
+ def self.tmpdir
22
+ tmp = nil
23
+ ['TMPDIR', 'TMP', 'TEMP', ['system temporary path', @systmpdir], ['/tmp']*2, ['.']*2].each do |name, dir = ENV[name]|
24
+ next if !dir
25
+ dir = File.expand_path(dir)
26
+ stat = File.stat(dir) rescue next
27
+ case
28
+ when !stat.directory?
29
+ warn "#{name} is not a directory: #{dir}"
30
+ when !stat.writable?
31
+ warn "#{name} is not writable: #{dir}"
32
+ when stat.world_writable? && !stat.sticky?
33
+ warn "#{name} is world-writable: #{dir}"
34
+ else
35
+ tmp = dir
36
+ break
37
+ end
38
+ end
39
+ raise ArgumentError, "could not find a temporary directory" unless tmp
40
+ tmp
41
+ end
42
+
43
+ # Bundler::Dir.mktmpdir creates a temporary directory.
44
+ #
45
+ # The directory is created with 0700 permission.
46
+ # Application should not change the permission to make the temporary directory accessible from other users.
47
+ #
48
+ # The prefix and suffix of the name of the directory is specified by
49
+ # the optional first argument, <i>prefix_suffix</i>.
50
+ # - If it is not specified or nil, "d" is used as the prefix and no suffix is used.
51
+ # - If it is a string, it is used as the prefix and no suffix is used.
52
+ # - If it is an array, first element is used as the prefix and second element is used as a suffix.
53
+ #
54
+ # Bundler::Dir.mktmpdir {|dir| dir is ".../d..." }
55
+ # Bundler::Dir.mktmpdir("foo") {|dir| dir is ".../foo..." }
56
+ # Bundler::Dir.mktmpdir(["foo", "bar"]) {|dir| dir is ".../foo...bar" }
57
+ #
58
+ # The directory is created under Bundler::Dir.tmpdir or
59
+ # the optional second argument <i>tmpdir</i> if non-nil value is given.
60
+ #
61
+ # Bundler::Dir.mktmpdir {|dir| dir is "#{Bundler::Dir.tmpdir}/d..." }
62
+ # Bundler::Dir.mktmpdir(nil, "/var/tmp") {|dir| dir is "/var/tmp/d..." }
63
+ #
64
+ # If a block is given,
65
+ # it is yielded with the path of the directory.
66
+ # The directory and its contents are removed
67
+ # using Bundler::FileUtils.remove_entry before Bundler::Dir.mktmpdir returns.
68
+ # The value of the block is returned.
69
+ #
70
+ # Bundler::Dir.mktmpdir {|dir|
71
+ # # use the directory...
72
+ # open("#{dir}/foo", "w") { ... }
73
+ # }
74
+ #
75
+ # If a block is not given,
76
+ # The path of the directory is returned.
77
+ # In this case, Bundler::Dir.mktmpdir doesn't remove the directory.
78
+ #
79
+ # dir = Bundler::Dir.mktmpdir
80
+ # begin
81
+ # # use the directory...
82
+ # open("#{dir}/foo", "w") { ... }
83
+ # ensure
84
+ # # remove the directory.
85
+ # Bundler::FileUtils.remove_entry dir
86
+ # end
87
+ #
88
+ def self.mktmpdir(prefix_suffix=nil, *rest, **options)
89
+ base = nil
90
+ path = Tmpname.create(prefix_suffix || "d", *rest, **options) {|p, _, _, d|
91
+ base = d
92
+ mkdir(p, 0700)
93
+ }
94
+ if block_given?
95
+ begin
96
+ yield path.dup
97
+ ensure
98
+ unless base
99
+ stat = File.stat(File.dirname(path))
100
+ if stat.world_writable? and !stat.sticky?
101
+ raise ArgumentError, "parent directory is world writable but not sticky"
102
+ end
103
+ end
104
+ Bundler::FileUtils.remove_entry path
105
+ end
106
+ else
107
+ path
108
+ end
109
+ end
110
+
111
+ module Tmpname # :nodoc:
112
+ module_function
113
+
114
+ def tmpdir
115
+ Bundler::Dir.tmpdir
116
+ end
117
+
118
+ UNUSABLE_CHARS = [File::SEPARATOR, File::ALT_SEPARATOR, File::PATH_SEPARATOR, ":"].uniq.join("").freeze
119
+
120
+ class << (RANDOM = Random.new)
121
+ MAX = 36**6 # < 0x100000000
122
+ def next
123
+ rand(MAX).to_s(36)
124
+ end
125
+ end
126
+ private_constant :RANDOM
127
+
128
+ def create(basename, tmpdir=nil, max_try: nil, **opts)
129
+ origdir = tmpdir
130
+ tmpdir ||= tmpdir()
131
+ n = nil
132
+ prefix, suffix = basename
133
+ prefix = (String.try_convert(prefix) or
134
+ raise ArgumentError, "unexpected prefix: #{prefix.inspect}")
135
+ prefix = prefix.delete(UNUSABLE_CHARS)
136
+ suffix &&= (String.try_convert(suffix) or
137
+ raise ArgumentError, "unexpected suffix: #{suffix.inspect}")
138
+ suffix &&= suffix.delete(UNUSABLE_CHARS)
139
+ begin
140
+ t = Time.now.strftime("%Y%m%d")
141
+ path = "#{prefix}#{t}-#{$$}-#{RANDOM.next}"\
142
+ "#{n ? %[-#{n}] : ''}#{suffix||''}"
143
+ path = File.join(tmpdir, path)
144
+ yield(path, n, opts, origdir)
145
+ rescue Errno::EEXIST
146
+ n ||= 0
147
+ n += 1
148
+ retry if !max_try or n < max_try
149
+ raise "cannot generate temporary name using `#{basename}' under `#{tmpdir}'"
150
+ end
151
+ path
152
+ end
153
+ end
154
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bundler; end
4
+ require_relative "vendor/tmpdir/lib/tmpdir"
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.2.0.rc.2".freeze
4
+ VERSION = "2.2.0".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -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\-CACHE" "1" "October 2020" "" ""
4
+ .TH "BUNDLE\-CACHE" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -262,9 +262,6 @@ The following is a list of all configuration keys and their purpose\. You can le
262
262
  \fBsilence_root_warning\fR (\fBBUNDLE_SILENCE_ROOT_WARNING\fR): Silence the warning Bundler prints when installing gems as root\.
263
263
  .
264
264
  .IP "\(bu" 4
265
- \fBspecific_platform\fR (\fBBUNDLE_SPECIFIC_PLATFORM\fR): Allow bundler to resolve for the specific running platform and store it in the lockfile, instead of only using a generic platform\. A specific platform is the exact platform triple reported by \fBGem::Platform\.local\fR, such as \fBx86_64\-darwin\-16\fR or \fBuniversal\-java\-1\.8\fR\. On the other hand, generic platforms are those such as \fBruby\fR, \fBmswin\fR, or \fBjava\fR\. In this example, \fBx86_64\-darwin\-16\fR would map to \fBruby\fR and \fBuniversal\-java\-1\.8\fR to \fBjava\fR\.
266
- .
267
- .IP "\(bu" 4
268
265
  \fBssl_ca_cert\fR (\fBBUNDLE_SSL_CA_CERT\fR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format\.
269
266
  .
270
267
  .IP "\(bu" 4
@@ -441,7 +438,7 @@ For gems with a git source with HTTP(S) URL you can specify credentials like so:
441
438
  .
442
439
  .nf
443
440
 
444
- bundle config set \-\-global https://github\.com/bundler/bundler\.git username:password
441
+ bundle config set \-\-global https://github\.com/rubygems/rubygems\.git username:password
445
442
  .
446
443
  .fi
447
444
  .
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-INFO" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-INIT" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-INJECT" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -67,7 +67,7 @@ The maximum number of parallel download and install jobs\. The default is \fB1\f
67
67
  .
68
68
  .TP
69
69
  \fB\-\-local\fR
70
- Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if a appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
70
+ Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if an appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
71
71
  .
72
72
  .TP
73
73
  \fB\-\-no\-cache\fR
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-platform\fR \- Displays platform compatibility information
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -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" "October 2020" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile