bundler 2.1.4 → 2.2.18

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 (227) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1790 -1430
  3. data/README.md +6 -8
  4. data/bundler.gemspec +5 -6
  5. data/exe/bundle +3 -0
  6. data/lib/bundler/build_metadata.rb +3 -11
  7. data/lib/bundler/cli/add.rb +1 -1
  8. data/lib/bundler/cli/binstubs.rb +6 -2
  9. data/lib/bundler/cli/cache.rb +2 -7
  10. data/lib/bundler/cli/clean.rb +1 -1
  11. data/lib/bundler/cli/common.rb +29 -2
  12. data/lib/bundler/cli/console.rb +1 -1
  13. data/lib/bundler/cli/doctor.rb +1 -1
  14. data/lib/bundler/cli/exec.rb +4 -4
  15. data/lib/bundler/cli/fund.rb +36 -0
  16. data/lib/bundler/cli/gem.rb +129 -28
  17. data/lib/bundler/cli/info.rb +15 -4
  18. data/lib/bundler/cli/init.rb +2 -2
  19. data/lib/bundler/cli/inject.rb +1 -1
  20. data/lib/bundler/cli/install.rb +13 -11
  21. data/lib/bundler/cli/issue.rb +2 -2
  22. data/lib/bundler/cli/list.rb +12 -10
  23. data/lib/bundler/cli/outdated.rb +94 -76
  24. data/lib/bundler/cli/plugin.rb +10 -0
  25. data/lib/bundler/cli/pristine.rb +5 -0
  26. data/lib/bundler/cli/show.rb +1 -1
  27. data/lib/bundler/cli/update.rb +3 -1
  28. data/lib/bundler/cli.rb +72 -56
  29. data/lib/bundler/compact_index_client/cache.rb +6 -14
  30. data/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  31. data/lib/bundler/compact_index_client/updater.rb +13 -17
  32. data/lib/bundler/compact_index_client.rb +1 -1
  33. data/lib/bundler/current_ruby.rb +1 -0
  34. data/lib/bundler/definition.rb +117 -188
  35. data/lib/bundler/dep_proxy.rb +16 -9
  36. data/lib/bundler/dependency.rb +3 -10
  37. data/lib/bundler/dsl.rb +40 -33
  38. data/lib/bundler/endpoint_specification.rb +1 -1
  39. data/lib/bundler/env.rb +1 -1
  40. data/lib/bundler/environment_preserver.rb +26 -2
  41. data/lib/bundler/errors.rb +1 -0
  42. data/lib/bundler/feature_flag.rb +0 -6
  43. data/lib/bundler/fetcher/base.rb +1 -1
  44. data/lib/bundler/fetcher/compact_index.rb +1 -1
  45. data/lib/bundler/fetcher/downloader.rb +9 -5
  46. data/lib/bundler/fetcher/index.rb +3 -4
  47. data/lib/bundler/fetcher.rb +5 -4
  48. data/lib/bundler/friendly_errors.rb +22 -13
  49. data/lib/bundler/gem_helper.rb +51 -18
  50. data/lib/bundler/gem_helpers.rb +36 -25
  51. data/lib/bundler/gem_version_promoter.rb +4 -4
  52. data/lib/bundler/graph.rb +1 -1
  53. data/lib/bundler/index.rb +13 -9
  54. data/lib/bundler/injector.rb +23 -5
  55. data/lib/bundler/inline.rb +3 -2
  56. data/lib/bundler/installer/gem_installer.rb +3 -3
  57. data/lib/bundler/installer/parallel_installer.rb +46 -25
  58. data/lib/bundler/installer/standalone.rb +17 -2
  59. data/lib/bundler/installer.rb +37 -49
  60. data/lib/bundler/lazy_specification.rb +45 -25
  61. data/lib/bundler/lockfile_generator.rb +1 -1
  62. data/lib/bundler/lockfile_parser.rb +4 -14
  63. data/lib/bundler/man/.document +1 -0
  64. data/{man → lib/bundler/man}/bundle-add.1 +1 -1
  65. data/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +0 -0
  66. data/{man → lib/bundler/man}/bundle-binstubs.1 +5 -3
  67. data/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +2 -4
  68. data/{man → lib/bundler/man}/bundle-cache.1 +1 -1
  69. data/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +0 -0
  70. data/{man → lib/bundler/man}/bundle-check.1 +1 -1
  71. data/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
  72. data/{man → lib/bundler/man}/bundle-clean.1 +1 -1
  73. data/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
  74. data/{man → lib/bundler/man}/bundle-config.1 +40 -38
  75. data/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +50 -50
  76. data/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
  77. data/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
  78. data/{man → lib/bundler/man}/bundle-exec.1 +1 -1
  79. data/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +0 -0
  80. data/{man → lib/bundler/man}/bundle-gem.1 +25 -3
  81. data/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
  82. data/{man → lib/bundler/man}/bundle-info.1 +1 -1
  83. data/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
  84. data/{man → lib/bundler/man}/bundle-init.1 +1 -1
  85. data/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
  86. data/{man → lib/bundler/man}/bundle-inject.1 +1 -1
  87. data/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
  88. data/{man → lib/bundler/man}/bundle-install.1 +30 -3
  89. data/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +25 -3
  90. data/{man → lib/bundler/man}/bundle-list.1 +7 -7
  91. data/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
  92. data/{man → lib/bundler/man}/bundle-lock.1 +1 -1
  93. data/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
  94. data/{man → lib/bundler/man}/bundle-open.1 +1 -1
  95. data/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
  96. data/{man → lib/bundler/man}/bundle-outdated.1 +1 -1
  97. data/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
  98. data/{man → lib/bundler/man}/bundle-platform.1 +1 -1
  99. data/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
  100. data/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
  101. data/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
  102. data/{man → lib/bundler/man}/bundle-remove.1 +1 -1
  103. data/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
  104. data/{man → lib/bundler/man}/bundle-show.1 +1 -1
  105. data/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
  106. data/{man → lib/bundler/man}/bundle-update.1 +1 -1
  107. data/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +0 -0
  108. data/{man → lib/bundler/man}/bundle-viz.1 +1 -1
  109. data/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
  110. data/{man → lib/bundler/man}/bundle.1 +1 -1
  111. data/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +0 -0
  112. data/{man → lib/bundler/man}/gemfile.5 +4 -4
  113. data/{man → lib/bundler/man}/gemfile.5.ronn +4 -4
  114. data/{man → lib/bundler/man}/index.txt +0 -0
  115. data/lib/bundler/mirror.rb +2 -2
  116. data/lib/bundler/plugin/api/source.rb +22 -1
  117. data/lib/bundler/plugin/dsl.rb +1 -1
  118. data/lib/bundler/plugin/index.rb +10 -1
  119. data/lib/bundler/plugin/installer/rubygems.rb +1 -1
  120. data/lib/bundler/plugin/installer.rb +9 -11
  121. data/lib/bundler/plugin/source_list.rb +5 -1
  122. data/lib/bundler/plugin.rb +33 -7
  123. data/lib/bundler/psyched_yaml.rb +0 -15
  124. data/lib/bundler/remote_specification.rb +5 -2
  125. data/lib/bundler/resolver/spec_group.rb +56 -53
  126. data/lib/bundler/resolver.rb +88 -115
  127. data/lib/bundler/retry.rb +2 -2
  128. data/lib/bundler/ruby_version.rb +1 -1
  129. data/lib/bundler/rubygems_ext.rb +71 -11
  130. data/lib/bundler/rubygems_gem_installer.rb +50 -9
  131. data/lib/bundler/rubygems_integration.rb +25 -60
  132. data/lib/bundler/runtime.rb +4 -14
  133. data/lib/bundler/settings.rb +107 -55
  134. data/lib/bundler/shared_helpers.rb +3 -3
  135. data/lib/bundler/similarity_detector.rb +1 -1
  136. data/lib/bundler/source/git/git_proxy.rb +82 -80
  137. data/lib/bundler/source/git.rb +24 -22
  138. data/lib/bundler/source/metadata.rb +0 -4
  139. data/lib/bundler/source/path/installer.rb +10 -10
  140. data/lib/bundler/source/path.rb +10 -4
  141. data/lib/bundler/source/rubygems/remote.rb +1 -1
  142. data/lib/bundler/source/rubygems.rb +60 -28
  143. data/lib/bundler/source/rubygems_aggregate.rb +64 -0
  144. data/lib/bundler/source.rb +16 -1
  145. data/lib/bundler/source_list.rb +52 -28
  146. data/lib/bundler/source_map.rb +58 -0
  147. data/lib/bundler/spec_set.rb +29 -17
  148. data/lib/bundler/stub_specification.rb +25 -7
  149. data/lib/bundler/templates/Gemfile +1 -1
  150. data/lib/bundler/templates/gems.rb +1 -1
  151. data/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
  152. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  153. data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  154. data/lib/bundler/templates/newgem/README.md.tt +6 -5
  155. data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  156. data/lib/bundler/templates/newgem/bin/console.tt +1 -0
  157. data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  158. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  159. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +16 -0
  160. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  161. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  162. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
  163. data/lib/bundler/templates/newgem/newgem.gemspec.tt +15 -7
  164. data/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
  165. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  166. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  167. data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  168. data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  169. data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  170. data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  171. data/lib/bundler/ui/shell.rb +5 -5
  172. data/lib/bundler/uri_credentials_filter.rb +3 -1
  173. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
  174. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  175. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -5
  176. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -2
  177. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +3 -3
  178. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  179. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +12 -1
  180. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +49 -47
  181. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
  182. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +82 -189
  183. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  184. data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +4 -2
  185. data/lib/bundler/vendor/thor/lib/thor/actions.rb +1 -1
  186. data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  187. data/lib/bundler/vendor/thor/lib/thor/error.rb +1 -1
  188. data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +5 -1
  189. data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +9 -8
  190. data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +5 -2
  191. data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +5 -1
  192. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  193. data/lib/bundler/vendor/thor/lib/thor.rb +5 -13
  194. data/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
  195. data/lib/bundler/vendored_persistent.rb +0 -7
  196. data/lib/bundler/vendored_tmpdir.rb +4 -0
  197. data/lib/bundler/version.rb +1 -1
  198. data/lib/bundler/worker.rb +1 -1
  199. data/lib/bundler/yaml_serializer.rb +1 -1
  200. data/lib/bundler.rb +34 -9
  201. metadata +77 -86
  202. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
  203. data/man/bundle-add.1.txt +0 -58
  204. data/man/bundle-binstubs.1.txt +0 -48
  205. data/man/bundle-cache.1.txt +0 -78
  206. data/man/bundle-check.1.txt +0 -33
  207. data/man/bundle-clean.1.txt +0 -26
  208. data/man/bundle-config.1.txt +0 -528
  209. data/man/bundle-doctor.1.txt +0 -44
  210. data/man/bundle-exec.1.txt +0 -178
  211. data/man/bundle-gem.1.txt +0 -91
  212. data/man/bundle-info.1.txt +0 -21
  213. data/man/bundle-init.1.txt +0 -34
  214. data/man/bundle-inject.1.txt +0 -32
  215. data/man/bundle-install.1.txt +0 -401
  216. data/man/bundle-list.1.txt +0 -43
  217. data/man/bundle-lock.1.txt +0 -93
  218. data/man/bundle-open.1.txt +0 -29
  219. data/man/bundle-outdated.1.txt +0 -131
  220. data/man/bundle-platform.1.txt +0 -57
  221. data/man/bundle-pristine.1.txt +0 -44
  222. data/man/bundle-remove.1.txt +0 -34
  223. data/man/bundle-show.1.txt +0 -27
  224. data/man/bundle-update.1.txt +0 -390
  225. data/man/bundle-viz.1.txt +0 -39
  226. data/man/bundle.1.txt +0 -116
  227. data/man/gemfile.5.txt +0 -649
data/man/bundle-add.1.txt DELETED
@@ -1,58 +0,0 @@
1
- BUNDLE-ADD(1) BUNDLE-ADD(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-add - Add gem to the Gemfile and run bundle install
7
-
8
- SYNOPSIS
9
- bundle add GEM_NAME [--group=GROUP] [--version=VERSION]
10
- [--source=SOURCE] [--git=GIT] [--branch=BRANCH] [--skip-install]
11
- [--strict] [--optimistic]
12
-
13
- DESCRIPTION
14
- Adds the named gem to the Gemfile and run bundle install. bundle
15
- install can be avoided by using the flag --skip-install.
16
-
17
- Example:
18
-
19
- bundle add rails
20
-
21
- bundle add rails --version "< 3.0, > 1.1"
22
-
23
- bundle add rails --version "~> 5.0.0" --source "https://gems.exam-
24
- ple.com" --group "development"
25
-
26
- bundle add rails --skip-install
27
-
28
- bundle add rails --group "development, test"
29
-
30
- OPTIONS
31
- --version, -v
32
- Specify version requirements(s) for the added gem.
33
-
34
- --group, -g
35
- Specify the group(s) for the added gem. Multiple groups should
36
- be separated by commas.
37
-
38
- --source, , -s
39
- Specify the source for the added gem.
40
-
41
- --git Specify the git source for the added gem.
42
-
43
- --branch
44
- Specify the git branch for the added gem.
45
-
46
- --skip-install
47
- Adds the gem to the Gemfile but does not install it.
48
-
49
- --optimistic
50
- Adds optimistic declaration of version
51
-
52
- --strict
53
- Adds strict declaration of version
54
-
55
-
56
-
57
-
58
- January 2020 BUNDLE-ADD(1)
@@ -1,48 +0,0 @@
1
- BUNDLE-BINSTUBS(1) BUNDLE-BINSTUBS(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-binstubs - Install the binstubs of the listed gems
7
-
8
- SYNOPSIS
9
- bundle binstubs GEM_NAME [--force] [--path PATH] [--standalone]
10
-
11
- DESCRIPTION
12
- Binstubs are scripts that wrap around executables. Bundler creates a
13
- small Ruby file (a binstub) that loads Bundler, runs the command, and
14
- puts it into bin/. Binstubs are a shortcut-or alternative- to always
15
- using bundle exec. This gives you a file that can be run directly, and
16
- one that will always run the correct gem version used by the applica-
17
- tion.
18
-
19
- For example, if you run bundle binstubs rspec-core, Bundler will create
20
- the file bin/rspec. That file will contain enough code to load Bundler,
21
- tell it to load the bundled gems, and then run rspec.
22
-
23
- This command generates binstubs for executables in GEM_NAME. Binstubs
24
- are put into bin, or the --path directory if one has been set. Calling
25
- binstubs with [GEM [GEM]] will create binstubs for all given gems.
26
-
27
- OPTIONS
28
- --force
29
- Overwrite existing binstubs if they exist.
30
-
31
- --path The location to install the specified binstubs to. This defaults
32
- to bin.
33
-
34
- --standalone
35
- Makes binstubs that can work without depending on Rubygems or
36
- Bundler at runtime.
37
-
38
- --shebang
39
- Specify a different shebang executable name than the default
40
- (default 'ruby')
41
-
42
- BUNDLE INSTALL --BINSTUBS
43
- To create binstubs for all the gems in the bundle you can use the
44
- --binstubs flag in bundle install(1) bundle-install.1.html.
45
-
46
-
47
-
48
- January 2020 BUNDLE-BINSTUBS(1)
@@ -1,78 +0,0 @@
1
- BUNDLE-CACHE(1) BUNDLE-CACHE(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-cache - Package your needed .gem files into your application
7
-
8
- SYNOPSIS
9
- bundle cache
10
-
11
- DESCRIPTION
12
- Copy all of the .gem files needed to run the application into the ven-
13
- dor/cache directory. In the future, when running [bundle
14
- install(1)][bundle-install], use the gems in the cache in preference to
15
- the ones on rubygems.org.
16
-
17
- GIT AND PATH GEMS
18
- The bundle cache command can also package :git and :path dependencies
19
- besides .gem files. This needs to be explicitly enabled via the --all
20
- option. Once used, the --all option will be remembered.
21
-
22
- SUPPORT FOR MULTIPLE PLATFORMS
23
- When using gems that have different packages for different platforms,
24
- Bundler supports caching of gems for other platforms where the Gemfile
25
- has been resolved (i.e. present in the lockfile) in vendor/cache. This
26
- needs to be enabled via the --all-platforms option. This setting will
27
- be remembered in your local bundler configuration.
28
-
29
- REMOTE FETCHING
30
- By default, if you run bundle install(1)](bundle-install.1.html) after
31
- running bundle cache(1) bundle-cache.1.html, bundler will still connect
32
- to rubygems.org to check whether a platform-specific gem exists for any
33
- of the gems in vendor/cache.
34
-
35
- For instance, consider this Gemfile(5):
36
-
37
-
38
-
39
- source "https://rubygems.org"
40
-
41
- gem "nokogiri"
42
-
43
-
44
-
45
- If you run bundle cache under C Ruby, bundler will retrieve the version
46
- of nokogiri for the "ruby" platform. If you deploy to JRuby and run
47
- bundle install, bundler is forced to check to see whether a "java"
48
- platformed nokogiri exists.
49
-
50
- Even though the nokogiri gem for the Ruby platform is technically
51
- acceptable on JRuby, it has a C extension that does not run on JRuby.
52
- As a result, bundler will, by default, still connect to rubygems.org to
53
- check whether it has a version of one of your gems more specific to
54
- your platform.
55
-
56
- This problem is also not limited to the "java" platform. A similar
57
- (common) problem can happen when developing on Windows and deploying to
58
- Linux, or even when developing on OSX and deploying to Linux.
59
-
60
- If you know for sure that the gems packaged in vendor/cache are appro-
61
- priate for the platform you are on, you can run bundle install --local
62
- to skip checking for more appropriate gems, and use the ones in ven-
63
- dor/cache.
64
-
65
- One way to be sure that you have the right platformed versions of all
66
- your gems is to run bundle cache on an identical machine and check in
67
- the gems. For instance, you can run bundle cache on an identical stag-
68
- ing box during your staging process, and check in the vendor/cache
69
- before deploying to production.
70
-
71
- By default, bundle cache(1) bundle-cache.1.html fetches and also
72
- installs the gems to the default location. To package the dependencies
73
- to vendor/cache without installing them to the local install location,
74
- you can run bundle cache --no-install.
75
-
76
-
77
-
78
- January 2020 BUNDLE-CACHE(1)
@@ -1,33 +0,0 @@
1
- BUNDLE-CHECK(1) BUNDLE-CHECK(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-check - Verifies if dependencies are satisfied by installed gems
7
-
8
- SYNOPSIS
9
- bundle check [--dry-run] [--gemfile=FILE] [--path=PATH]
10
-
11
- DESCRIPTION
12
- check searches the local machine for each of the gems requested in the
13
- Gemfile. If all gems are found, Bundler prints a success message and
14
- exits with a status of 0.
15
-
16
- If not, the first missing gem is listed and Bundler exits status 1.
17
-
18
- OPTIONS
19
- --dry-run
20
- Locks the [Gemfile(5)][Gemfile(5)] before running the command.
21
-
22
- --gemfile
23
- Use the specified gemfile instead of the [Gemfile(5)][Gem-
24
- file(5)].
25
-
26
- --path Specify a different path than the system default ($BUNDLE_PATH
27
- or $GEM_HOME). Bundler will remember this value for future
28
- installs on this machine.
29
-
30
-
31
-
32
-
33
- January 2020 BUNDLE-CHECK(1)
@@ -1,26 +0,0 @@
1
- BUNDLE-CLEAN(1) BUNDLE-CLEAN(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-clean - Cleans up unused gems in your bundler directory
7
-
8
- SYNOPSIS
9
- bundle clean [--dry-run] [--force]
10
-
11
- DESCRIPTION
12
- This command will remove all unused gems in your bundler directory.
13
- This is useful when you have made many changes to your gem dependen-
14
- cies.
15
-
16
- OPTIONS
17
- --dry-run
18
- Print the changes, but do not clean the unused gems.
19
-
20
- --force
21
- Force a clean even if --path is not set.
22
-
23
-
24
-
25
-
26
- January 2020 BUNDLE-CLEAN(1)