bundler 2.0.1 → 2.0.2

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 (94) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/README.md +1 -1
  4. data/bundler.gemspec +6 -5
  5. data/lib/bundler/build_metadata.rb +2 -2
  6. data/lib/bundler/cli.rb +3 -1
  7. data/lib/bundler/cli/common.rb +1 -1
  8. data/lib/bundler/cli/install.rb +9 -8
  9. data/lib/bundler/cli/issue.rb +2 -2
  10. data/lib/bundler/compatibility_guard.rb +0 -1
  11. data/lib/bundler/definition.rb +3 -1
  12. data/lib/bundler/dsl.rb +1 -1
  13. data/lib/bundler/env.rb +2 -8
  14. data/lib/bundler/feature_flag.rb +1 -1
  15. data/lib/bundler/fetcher/downloader.rb +1 -1
  16. data/lib/bundler/gem_helper.rb +37 -22
  17. data/lib/bundler/injector.rb +7 -7
  18. data/lib/bundler/installer/parallel_installer.rb +0 -4
  19. data/lib/bundler/plugin.rb +13 -11
  20. data/lib/bundler/plugin/index.rb +4 -1
  21. data/lib/bundler/rubygems_ext.rb +0 -1
  22. data/lib/bundler/rubygems_integration.rb +19 -2
  23. data/lib/bundler/shared_helpers.rb +7 -5
  24. data/lib/bundler/templates/Executable.bundler +1 -1
  25. data/lib/bundler/templates/newgem/newgem.gemspec.tt +7 -12
  26. data/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
  27. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +151 -48
  28. data/lib/bundler/vendor/fileutils/lib/fileutils/version.rb +5 -0
  29. data/lib/bundler/vendor/thor/lib/thor/actions.rb +14 -4
  30. data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +11 -2
  31. data/lib/bundler/vendor/thor/lib/thor/base.rb +3 -4
  32. data/lib/bundler/vendor/thor/lib/thor/error.rb +82 -0
  33. data/lib/bundler/vendor/thor/lib/thor/group.rb +2 -2
  34. data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +7 -2
  35. data/lib/bundler/vendor/thor/lib/thor/runner.rb +2 -2
  36. data/lib/bundler/vendor/thor/lib/thor/shell.rb +1 -1
  37. data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +52 -7
  38. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  39. data/lib/bundler/version.rb +1 -1
  40. data/man/bundle-add.1 +1 -1
  41. data/man/bundle-add.1.txt +1 -1
  42. data/man/bundle-binstubs.1 +1 -1
  43. data/man/bundle-binstubs.1.txt +1 -1
  44. data/man/bundle-check.1 +1 -1
  45. data/man/bundle-check.1.txt +1 -1
  46. data/man/bundle-clean.1 +1 -1
  47. data/man/bundle-clean.1.txt +1 -1
  48. data/man/bundle-config.1 +2 -2
  49. data/man/bundle-config.1.txt +3 -3
  50. data/man/bundle-config.ronn +1 -1
  51. data/man/bundle-doctor.1 +1 -1
  52. data/man/bundle-doctor.1.txt +1 -1
  53. data/man/bundle-exec.1 +1 -1
  54. data/man/bundle-exec.1.txt +1 -1
  55. data/man/bundle-gem.1 +1 -1
  56. data/man/bundle-gem.1.txt +1 -1
  57. data/man/bundle-info.1 +1 -1
  58. data/man/bundle-info.1.txt +1 -1
  59. data/man/bundle-init.1 +2 -2
  60. data/man/bundle-init.1.txt +2 -2
  61. data/man/bundle-init.ronn +1 -1
  62. data/man/bundle-inject.1 +1 -1
  63. data/man/bundle-inject.1.txt +1 -1
  64. data/man/bundle-install.1 +1 -1
  65. data/man/bundle-install.1.txt +1 -1
  66. data/man/bundle-list.1 +1 -1
  67. data/man/bundle-list.1.txt +1 -1
  68. data/man/bundle-lock.1 +1 -1
  69. data/man/bundle-lock.1.txt +1 -1
  70. data/man/bundle-open.1 +1 -1
  71. data/man/bundle-open.1.txt +1 -1
  72. data/man/bundle-outdated.1 +1 -1
  73. data/man/bundle-outdated.1.txt +1 -1
  74. data/man/bundle-package.1 +1 -1
  75. data/man/bundle-package.1.txt +1 -1
  76. data/man/bundle-platform.1 +1 -1
  77. data/man/bundle-platform.1.txt +1 -1
  78. data/man/bundle-pristine.1 +1 -1
  79. data/man/bundle-pristine.1.txt +1 -1
  80. data/man/bundle-remove.1 +1 -1
  81. data/man/bundle-remove.1.txt +1 -1
  82. data/man/bundle-show.1 +1 -1
  83. data/man/bundle-show.1.txt +1 -1
  84. data/man/bundle-update.1 +1 -1
  85. data/man/bundle-update.1.txt +1 -1
  86. data/man/bundle-viz.1 +1 -1
  87. data/man/bundle-viz.1.txt +1 -1
  88. data/man/bundle.1 +2 -2
  89. data/man/bundle.1.txt +2 -2
  90. data/man/bundle.ronn +1 -1
  91. data/man/gemfile.5 +2 -2
  92. data/man/gemfile.5.ronn +1 -1
  93. data/man/gemfile.5.txt +2 -2
  94. metadata +23 -8
@@ -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" "December 2018" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-BINSTUBS(1)
48
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-CHECK(1)
33
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-CLEAN(1)
26
+ June 2019 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" "January 2019" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -238,7 +238,7 @@ The following is a list of all configuration keys and their purpose\. You can le
238
238
  \fBpath\.system\fR (\fBBUNDLE_PATH__SYSTEM\fR): Whether Bundler will install gems into the default system path (\fBGem\.dir\fR)\.
239
239
  .
240
240
  .IP "\(bu" 4
241
- \fBpath_relative_to_cwd\fR (\fBPATH_RELATIVE_TO_CWD\fR) Makes \fB\-\-path\fR relative to the CWD instead of the \fBGemfile\fR\.
241
+ \fBpath_relative_to_cwd\fR (\fBBUNDLE_PATH_RELATIVE_TO_CWD\fR) Makes \fB\-\-path\fR relative to the CWD instead of the \fBGemfile\fR\.
242
242
  .
243
243
  .IP "\(bu" 4
244
244
  \fBplugins\fR (\fBBUNDLE_PLUGINS\fR): Enable Bundler\'s experimental plugin system\.
@@ -282,8 +282,8 @@ LIST OF AVAILABLE KEYS
282
282
  o path.system (BUNDLE_PATH__SYSTEM): Whether Bundler will install
283
283
  gems into the default system path (Gem.dir).
284
284
 
285
- o path_relative_to_cwd (PATH_RELATIVE_TO_CWD) Makes --path relative
286
- to the CWD instead of the Gemfile.
285
+ o path_relative_to_cwd (BUNDLE_PATH_RELATIVE_TO_CWD) Makes --path
286
+ relative to the CWD instead of the Gemfile.
287
287
 
288
288
  o plugins (BUNDLE_PLUGINS): Enable Bundler's experimental plugin sys-
289
289
  tem.
@@ -526,4 +526,4 @@ CONFIGURE BUNDLER DIRECTORIES
526
526
 
527
527
 
528
528
 
529
- January 2019 BUNDLE-CONFIG(1)
529
+ June 2019 BUNDLE-CONFIG(1)
@@ -227,7 +227,7 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
227
227
  is used, defaults to vendor/bundle.
228
228
  * `path.system` (`BUNDLE_PATH__SYSTEM`):
229
229
  Whether Bundler will install gems into the default system path (`Gem.dir`).
230
- * `path_relative_to_cwd` (`PATH_RELATIVE_TO_CWD`)
230
+ * `path_relative_to_cwd` (`BUNDLE_PATH_RELATIVE_TO_CWD`)
231
231
  Makes `--path` relative to the CWD instead of the `Gemfile`.
232
232
  * `plugins` (`BUNDLE_PLUGINS`):
233
233
  Enable Bundler's experimental plugin system.
@@ -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" "December 2018" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-DOCTOR(1)
44
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-EXEC(1)
178
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-GEM(1)
91
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-INFO" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-INFO(1)
21
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-INIT" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
@@ -22,4 +22,4 @@ Use the specified \.gemspec to create the [\fBGemfile(5)\fR][Gemfile(5)]
22
22
  Included in the default [\fBGemfile(5)\fR][Gemfile(5)] generated is the line \fB# frozen_string_literal: true\fR\. This is a magic comment supported for the first time in Ruby 2\.3\. The presence of this line results in all string literals in the file being implicitly frozen\.
23
23
  .
24
24
  .SH "SEE ALSO"
25
- Gemfile(5) \fIhttp://bundler\.io/man/gemfile\.5\.html\fR
25
+ Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
@@ -27,8 +27,8 @@ FILES
27
27
  string literals in the file being implicitly frozen.
28
28
 
29
29
  SEE ALSO
30
- Gemfile(5) http://bundler.io/man/gemfile.5.html
30
+ Gemfile(5) https://bundler.io/man/gemfile.5.html
31
31
 
32
32
 
33
33
 
34
- December 2018 BUNDLE-INIT(1)
34
+ June 2019 BUNDLE-INIT(1)
@@ -26,4 +26,4 @@ results in all string literals in the file being implicitly frozen.
26
26
 
27
27
  ## SEE ALSO
28
28
 
29
- [Gemfile(5)](http://bundler.io/man/gemfile.5.html)
29
+ [Gemfile(5)](https://bundler.io/man/gemfile.5.html)
@@ -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" "December 2018" "" ""
4
+ .TH "BUNDLE\-INJECT" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-INJECT(1)
32
+ June 2019 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" "January 2019" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -393,4 +393,4 @@ SEE ALSO
393
393
 
394
394
 
395
395
 
396
- January 2019 BUNDLE-INSTALL(1)
396
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-LIST(1)
43
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-LOCK(1)
93
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-OPEN(1)
29
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-OUTDATED(1)
131
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-PACKAGE" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-PACKAGE(1)
79
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-PLATFORM(1)
57
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-PRISTINE(1)
44
+ June 2019 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\-REMOVE" "1" "December 2018" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-REMOVE(1)
34
+ June 2019 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\-SHOW" "1" "December 2018" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -24,4 +24,4 @@ OPTIONS
24
24
 
25
25
 
26
26
 
27
- December 2018 BUNDLE-SHOW(1)
27
+ June 2019 BUNDLE-SHOW(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\-UPDATE" "1" "January 2019" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -388,4 +388,4 @@ RECOMMENDED WORKFLOW
388
388
 
389
389
 
390
390
 
391
- January 2019 BUNDLE-UPDATE(1)
391
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "June 2019" "" ""
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
- December 2018 BUNDLE-VIZ(1)
39
+ June 2019 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" "December 2018" "" ""
4
+ .TH "BUNDLE" "1" "June 2019" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -13,7 +13,7 @@
13
13
  Bundler manages an \fBapplication\'s dependencies\fR through its entire life across many machines systematically and repeatably\.
14
14
  .
15
15
  .P
16
- See the bundler website \fIhttp://bundler\.io\fR for information on getting started, and Gemfile(5) for more information on the \fBGemfile\fR format\.
16
+ See the bundler website \fIhttps://bundler\.io\fR for information on getting started, and Gemfile(5) for more information on the \fBGemfile\fR format\.
17
17
  .
18
18
  .SH "OPTIONS"
19
19
  .
@@ -12,7 +12,7 @@ DESCRIPTION
12
12
  Bundler manages an application's dependencies through its entire life
13
13
  across many machines systematically and repeatably.
14
14
 
15
- See the bundler website http://bundler.io for information on getting
15
+ See the bundler website https://bundler.io for information on getting
16
16
  started, and Gemfile(5) for more information on the Gemfile format.
17
17
 
18
18
  OPTIONS
@@ -113,4 +113,4 @@ OBSOLETE
113
113
 
114
114
 
115
115
 
116
- December 2018 BUNDLE(1)
116
+ June 2019 BUNDLE(1)