bundler 1.15.4 → 1.16.0.pre.1

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 (251) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +43 -0
  3. data/README.md +12 -7
  4. data/exe/bundle +1 -1
  5. data/exe/bundle_ruby +4 -3
  6. data/lib/bundler.rb +47 -37
  7. data/lib/bundler/build_metadata.rb +38 -0
  8. data/lib/bundler/capistrano.rb +5 -0
  9. data/lib/bundler/cli.rb +155 -67
  10. data/lib/bundler/cli/add.rb +0 -1
  11. data/lib/bundler/cli/binstubs.rb +9 -7
  12. data/lib/bundler/cli/cache.rb +5 -4
  13. data/lib/bundler/cli/check.rb +3 -5
  14. data/lib/bundler/cli/clean.rb +5 -6
  15. data/lib/bundler/cli/common.rb +11 -2
  16. data/lib/bundler/cli/config.rb +2 -1
  17. data/lib/bundler/cli/console.rb +2 -1
  18. data/lib/bundler/cli/doctor.rb +1 -0
  19. data/lib/bundler/cli/exec.rb +2 -1
  20. data/lib/bundler/cli/gem.rb +3 -2
  21. data/lib/bundler/cli/info.rb +0 -1
  22. data/lib/bundler/cli/init.rb +17 -6
  23. data/lib/bundler/cli/inject.rb +1 -0
  24. data/lib/bundler/cli/install.rb +61 -61
  25. data/lib/bundler/cli/issue.rb +1 -1
  26. data/lib/bundler/cli/list.rb +22 -0
  27. data/lib/bundler/cli/lock.rb +0 -1
  28. data/lib/bundler/cli/open.rb +2 -2
  29. data/lib/bundler/cli/outdated.rb +13 -8
  30. data/lib/bundler/cli/package.rb +9 -6
  31. data/lib/bundler/cli/platform.rb +1 -0
  32. data/lib/bundler/cli/plugin.rb +1 -0
  33. data/lib/bundler/cli/pristine.rb +9 -2
  34. data/lib/bundler/cli/show.rb +0 -1
  35. data/lib/bundler/cli/update.rb +31 -5
  36. data/lib/bundler/cli/viz.rb +1 -0
  37. data/lib/bundler/compact_index_client.rb +1 -0
  38. data/lib/bundler/compact_index_client/cache.rb +1 -0
  39. data/lib/bundler/compact_index_client/updater.rb +3 -2
  40. data/lib/bundler/compatibility_guard.rb +14 -0
  41. data/lib/bundler/constants.rb +1 -0
  42. data/lib/bundler/current_ruby.rb +5 -4
  43. data/lib/bundler/definition.rb +140 -95
  44. data/lib/bundler/dep_proxy.rb +2 -0
  45. data/lib/bundler/dependency.rb +6 -7
  46. data/lib/bundler/deployment.rb +1 -1
  47. data/lib/bundler/deprecate.rb +1 -0
  48. data/lib/bundler/dsl.rb +97 -62
  49. data/lib/bundler/endpoint_specification.rb +9 -0
  50. data/lib/bundler/env.rb +63 -27
  51. data/lib/bundler/environment_preserver.rb +26 -6
  52. data/lib/bundler/errors.rb +1 -0
  53. data/lib/bundler/feature_flag.rb +39 -4
  54. data/lib/bundler/fetcher.rb +15 -8
  55. data/lib/bundler/fetcher/base.rb +1 -0
  56. data/lib/bundler/fetcher/compact_index.rb +2 -11
  57. data/lib/bundler/fetcher/dependency.rb +1 -0
  58. data/lib/bundler/fetcher/downloader.rb +1 -0
  59. data/lib/bundler/fetcher/index.rb +1 -0
  60. data/lib/bundler/friendly_errors.rb +2 -1
  61. data/lib/bundler/gem_helper.rb +14 -9
  62. data/lib/bundler/gem_helpers.rb +1 -0
  63. data/lib/bundler/gem_remote_fetcher.rb +1 -0
  64. data/lib/bundler/gem_tasks.rb +1 -0
  65. data/lib/bundler/gem_version_promoter.rb +1 -0
  66. data/lib/bundler/gemdeps.rb +1 -0
  67. data/lib/bundler/graph.rb +1 -0
  68. data/lib/bundler/index.rb +15 -8
  69. data/lib/bundler/injector.rb +25 -22
  70. data/lib/bundler/inline.rb +5 -7
  71. data/lib/bundler/installer.rb +93 -45
  72. data/lib/bundler/installer/gem_installer.rb +2 -0
  73. data/lib/bundler/installer/parallel_installer.rb +73 -42
  74. data/lib/bundler/installer/standalone.rb +1 -0
  75. data/lib/bundler/lazy_specification.rb +2 -1
  76. data/lib/bundler/lockfile_generator.rb +95 -0
  77. data/lib/bundler/lockfile_parser.rb +10 -4
  78. data/lib/bundler/match_platform.rb +1 -0
  79. data/lib/bundler/mirror.rb +6 -3
  80. data/lib/bundler/plugin.rb +1 -0
  81. data/lib/bundler/plugin/api/source.rb +8 -0
  82. data/lib/bundler/plugin/installer.rb +7 -6
  83. data/lib/bundler/plugin/source_list.rb +7 -8
  84. data/lib/bundler/process_lock.rb +24 -0
  85. data/lib/bundler/psyched_yaml.rb +1 -0
  86. data/lib/bundler/remote_specification.rb +1 -0
  87. data/lib/bundler/resolver.rb +138 -191
  88. data/lib/bundler/resolver/spec_group.rb +111 -0
  89. data/lib/bundler/retry.rb +1 -0
  90. data/lib/bundler/ruby_dsl.rb +1 -0
  91. data/lib/bundler/ruby_version.rb +1 -0
  92. data/lib/bundler/rubygems_ext.rb +5 -4
  93. data/lib/bundler/rubygems_gem_installer.rb +23 -0
  94. data/lib/bundler/rubygems_integration.rb +56 -27
  95. data/lib/bundler/runtime.rb +3 -5
  96. data/lib/bundler/settings.rb +177 -76
  97. data/lib/bundler/settings/validator.rb +79 -0
  98. data/lib/bundler/setup.rb +1 -0
  99. data/lib/bundler/shared_helpers.rb +86 -26
  100. data/lib/bundler/similarity_detector.rb +1 -0
  101. data/lib/bundler/source.rb +32 -0
  102. data/lib/bundler/source/gemspec.rb +1 -0
  103. data/lib/bundler/source/git.rb +21 -16
  104. data/lib/bundler/source/git/git_proxy.rb +14 -10
  105. data/lib/bundler/source/metadata.rb +63 -0
  106. data/lib/bundler/source/path.rb +8 -8
  107. data/lib/bundler/source/path/installer.rb +2 -0
  108. data/lib/bundler/source/rubygems.rb +131 -84
  109. data/lib/bundler/source/rubygems/remote.rb +3 -0
  110. data/lib/bundler/source_list.rb +75 -15
  111. data/lib/bundler/spec_set.rb +2 -1
  112. data/lib/bundler/ssl_certs/certificate_manager.rb +2 -1
  113. data/lib/bundler/stub_specification.rb +1 -0
  114. data/lib/bundler/templates/Executable +4 -0
  115. data/lib/bundler/templates/Executable.bundler +105 -0
  116. data/lib/bundler/templates/Gemfile +1 -0
  117. data/lib/bundler/templates/gems.rb +8 -0
  118. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  119. data/lib/bundler/templates/newgem/gitignore.tt +0 -1
  120. data/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -1
  121. data/lib/bundler/templates/newgem/rspec.tt +1 -0
  122. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +0 -2
  123. data/lib/bundler/ui.rb +1 -0
  124. data/lib/bundler/ui/rg_proxy.rb +1 -0
  125. data/lib/bundler/ui/shell.rb +15 -4
  126. data/lib/bundler/ui/silent.rb +1 -0
  127. data/lib/bundler/uri_credentials_filter.rb +1 -0
  128. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
  129. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +2 -0
  130. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
  131. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
  132. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
  133. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +3 -2
  134. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
  135. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -0
  136. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -0
  137. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -0
  138. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -0
  139. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +1 -0
  140. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -0
  141. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -0
  142. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +3 -2
  143. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +69 -6
  144. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +2 -1
  145. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +1 -0
  146. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +3 -1
  147. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +487 -148
  148. data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +1 -0
  149. data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +8 -4
  150. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1 -1
  151. data/lib/bundler/vendored_fileutils.rb +9 -0
  152. data/lib/bundler/vendored_molinillo.rb +1 -0
  153. data/lib/bundler/vendored_persistent.rb +34 -0
  154. data/lib/bundler/vendored_thor.rb +1 -0
  155. data/lib/bundler/version.rb +6 -2
  156. data/lib/bundler/version_ranges.rb +1 -0
  157. data/lib/bundler/vlad.rb +5 -0
  158. data/lib/bundler/worker.rb +1 -0
  159. data/lib/bundler/yaml_serializer.rb +3 -3
  160. data/man/bundle-add.1 +43 -0
  161. data/man/bundle-add.1.txt +40 -0
  162. data/man/bundle-binstubs.1 +40 -0
  163. data/man/bundle-binstubs.1.txt +48 -0
  164. data/man/bundle-binstubs.ronn +14 -0
  165. data/man/bundle-check.1 +31 -0
  166. data/man/bundle-check.1.txt +32 -0
  167. data/man/bundle-clean.1 +24 -0
  168. data/man/bundle-clean.1.txt +26 -0
  169. data/man/bundle-config.1 +455 -0
  170. data/man/bundle-config.1.txt +491 -0
  171. data/man/bundle-config.ronn +133 -79
  172. data/man/bundle-exec.1 +165 -0
  173. data/man/bundle-exec.1.txt +178 -0
  174. data/man/bundle-exec.ronn +7 -0
  175. data/man/bundle-gem.1 +80 -0
  176. data/man/bundle-gem.1.txt +91 -0
  177. data/man/bundle-gem.ronn +2 -1
  178. data/man/bundle-info.1 +20 -0
  179. data/man/bundle-info.1.txt +21 -0
  180. data/man/bundle-init.1 +20 -0
  181. data/man/bundle-init.1.txt +24 -0
  182. data/man/bundle-inject.1 +33 -0
  183. data/man/bundle-inject.1.txt +32 -0
  184. data/man/bundle-install.1 +305 -0
  185. data/man/bundle-install.1.txt +385 -0
  186. data/man/bundle-install.ronn +32 -32
  187. data/man/bundle-list.1 +20 -0
  188. data/man/bundle-list.1.txt +21 -0
  189. data/man/bundle-list.ronn +15 -0
  190. data/man/bundle-lock.1 +84 -0
  191. data/man/bundle-lock.1.txt +93 -0
  192. data/man/bundle-open.1 +32 -0
  193. data/man/bundle-open.1.txt +29 -0
  194. data/man/bundle-outdated.1 +151 -0
  195. data/man/bundle-outdated.1.txt +127 -0
  196. data/man/bundle-outdated.ronn +1 -1
  197. data/man/bundle-package.1 +55 -0
  198. data/man/bundle-package.1.txt +79 -0
  199. data/man/bundle-package.ronn +5 -0
  200. data/man/bundle-platform.1 +61 -0
  201. data/man/bundle-platform.1.txt +57 -0
  202. data/man/bundle-pristine.1 +34 -0
  203. data/man/bundle-pristine.1.txt +44 -0
  204. data/man/bundle-pristine.ronn +24 -3
  205. data/man/bundle-show.1 +23 -0
  206. data/man/bundle-show.1.txt +25 -0
  207. data/man/bundle-update.1 +390 -0
  208. data/man/bundle-update.1.txt +386 -0
  209. data/man/bundle-update.ronn +2 -2
  210. data/man/bundle-viz.1 +39 -0
  211. data/man/bundle-viz.1.txt +38 -0
  212. data/man/bundle-viz.ronn +5 -5
  213. data/man/bundle.1 +132 -0
  214. data/man/bundle.1.txt +113 -0
  215. data/man/bundle.ronn +5 -2
  216. data/man/gemfile.5 +679 -0
  217. data/man/gemfile.5.ronn +31 -0
  218. data/man/gemfile.5.txt +636 -0
  219. data/man/index.txt +23 -0
  220. metadata +21 -36
  221. data/.codeclimate.yml +0 -25
  222. data/.gitignore +0 -18
  223. data/.rspec +0 -3
  224. data/.rubocop.yml +0 -131
  225. data/.rubocop_todo.yml +0 -418
  226. data/.travis.yml +0 -122
  227. data/CODE_OF_CONDUCT.md +0 -42
  228. data/CONTRIBUTING.md +0 -17
  229. data/Rakefile +0 -338
  230. data/bin/rake +0 -19
  231. data/bin/rspec +0 -15
  232. data/bin/rubocop +0 -17
  233. data/bin/with_rubygems +0 -39
  234. data/bundler.gemspec +0 -48
  235. data/doc/README.md +0 -30
  236. data/doc/TROUBLESHOOTING.md +0 -64
  237. data/doc/contributing/BUG_TRIAGE.md +0 -36
  238. data/doc/contributing/COMMUNITY.md +0 -13
  239. data/doc/contributing/GETTING_HELP.md +0 -11
  240. data/doc/contributing/HOW_YOU_CAN_HELP.md +0 -27
  241. data/doc/contributing/ISSUES.md +0 -51
  242. data/doc/contributing/README.md +0 -38
  243. data/doc/development/NEW_FEATURES.md +0 -10
  244. data/doc/development/PULL_REQUESTS.md +0 -40
  245. data/doc/development/README.md +0 -19
  246. data/doc/development/RELEASING.md +0 -9
  247. data/doc/development/SETUP.md +0 -27
  248. data/doc/documentation/README.md +0 -29
  249. data/doc/documentation/VISION.md +0 -26
  250. data/doc/documentation/WRITING.md +0 -54
  251. data/task/release.rake +0 -116
@@ -0,0 +1,23 @@
1
+ Gemfile(5) gemfile.5
2
+ bundle(1) bundle.1
3
+ bundle-add(1) bundle-add.1
4
+ bundle-binstubs(1) bundle-binstubs.1
5
+ bundle-check(1) bundle-check.1
6
+ bundle-clean(1) bundle-clean.1
7
+ bundle-config(1) bundle-config.1
8
+ bundle-exec(1) bundle-exec.1
9
+ bundle-gem(1) bundle-gem.1
10
+ bundle-info(1) bundle-info.1
11
+ bundle-init(1) bundle-init.1
12
+ bundle-inject(1) bundle-inject.1
13
+ bundle-install(1) bundle-install.1
14
+ bundle-list(1) bundle-list.1
15
+ bundle-lock(1) bundle-lock.1
16
+ bundle-open(1) bundle-open.1
17
+ bundle-outdated(1) bundle-outdated.1
18
+ bundle-package(1) bundle-package.1
19
+ bundle-platform(1) bundle-platform.1
20
+ bundle-pristine(1) bundle-pristine.1
21
+ bundle-show(1) bundle-show.1
22
+ bundle-update(1) bundle-update.1
23
+ bundle-viz(1) bundle-viz.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.4
4
+ version: 1.16.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: exe
19
19
  cert_chain: []
20
- date: 2017-08-19 00:00:00.000000000 Z
20
+ date: 2017-09-05 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: automatiek
@@ -95,14 +95,14 @@ dependencies:
95
95
  requirements:
96
96
  - - "~>"
97
97
  - !ruby/object:Gem::Version
98
- version: '3.5'
98
+ version: '3.6'
99
99
  type: :development
100
100
  prerelease: false
101
101
  version_requirements: !ruby/object:Gem::Requirement
102
102
  requirements:
103
103
  - - "~>"
104
104
  - !ruby/object:Gem::Version
105
- version: '3.5'
105
+ version: '3.6'
106
106
  description: Bundler manages an application's dependencies through its entire life,
107
107
  across many machines, systematically and repeatably
108
108
  email:
@@ -113,43 +113,14 @@ executables:
113
113
  extensions: []
114
114
  extra_rdoc_files: []
115
115
  files:
116
- - ".codeclimate.yml"
117
- - ".gitignore"
118
- - ".rspec"
119
- - ".rubocop.yml"
120
- - ".rubocop_todo.yml"
121
- - ".travis.yml"
122
116
  - CHANGELOG.md
123
- - CODE_OF_CONDUCT.md
124
- - CONTRIBUTING.md
125
117
  - LICENSE.md
126
118
  - README.md
127
- - Rakefile
128
- - bin/rake
129
- - bin/rspec
130
- - bin/rubocop
131
- - bin/with_rubygems
132
- - bundler.gemspec
133
- - doc/README.md
134
- - doc/TROUBLESHOOTING.md
135
- - doc/contributing/BUG_TRIAGE.md
136
- - doc/contributing/COMMUNITY.md
137
- - doc/contributing/GETTING_HELP.md
138
- - doc/contributing/HOW_YOU_CAN_HELP.md
139
- - doc/contributing/ISSUES.md
140
- - doc/contributing/README.md
141
- - doc/development/NEW_FEATURES.md
142
- - doc/development/PULL_REQUESTS.md
143
- - doc/development/README.md
144
- - doc/development/RELEASING.md
145
- - doc/development/SETUP.md
146
- - doc/documentation/README.md
147
- - doc/documentation/VISION.md
148
- - doc/documentation/WRITING.md
149
119
  - exe/bundle
150
120
  - exe/bundle_ruby
151
121
  - exe/bundler
152
122
  - lib/bundler.rb
123
+ - lib/bundler/build_metadata.rb
153
124
  - lib/bundler/capistrano.rb
154
125
  - lib/bundler/cli.rb
155
126
  - lib/bundler/cli/add.rb
@@ -168,6 +139,7 @@ files:
168
139
  - lib/bundler/cli/inject.rb
169
140
  - lib/bundler/cli/install.rb
170
141
  - lib/bundler/cli/issue.rb
142
+ - lib/bundler/cli/list.rb
171
143
  - lib/bundler/cli/lock.rb
172
144
  - lib/bundler/cli/open.rb
173
145
  - lib/bundler/cli/outdated.rb
@@ -181,6 +153,7 @@ files:
181
153
  - lib/bundler/compact_index_client.rb
182
154
  - lib/bundler/compact_index_client/cache.rb
183
155
  - lib/bundler/compact_index_client/updater.rb
156
+ - lib/bundler/compatibility_guard.rb
184
157
  - lib/bundler/constants.rb
185
158
  - lib/bundler/current_ruby.rb
186
159
  - lib/bundler/definition.rb
@@ -216,6 +189,7 @@ files:
216
189
  - lib/bundler/installer/parallel_installer.rb
217
190
  - lib/bundler/installer/standalone.rb
218
191
  - lib/bundler/lazy_specification.rb
192
+ - lib/bundler/lockfile_generator.rb
219
193
  - lib/bundler/lockfile_parser.rb
220
194
  - lib/bundler/match_platform.rb
221
195
  - lib/bundler/mirror.rb
@@ -228,9 +202,11 @@ files:
228
202
  - lib/bundler/plugin/installer/git.rb
229
203
  - lib/bundler/plugin/installer/rubygems.rb
230
204
  - lib/bundler/plugin/source_list.rb
205
+ - lib/bundler/process_lock.rb
231
206
  - lib/bundler/psyched_yaml.rb
232
207
  - lib/bundler/remote_specification.rb
233
208
  - lib/bundler/resolver.rb
209
+ - lib/bundler/resolver/spec_group.rb
234
210
  - lib/bundler/retry.rb
235
211
  - lib/bundler/ruby_dsl.rb
236
212
  - lib/bundler/ruby_version.rb
@@ -239,6 +215,7 @@ files:
239
215
  - lib/bundler/rubygems_integration.rb
240
216
  - lib/bundler/runtime.rb
241
217
  - lib/bundler/settings.rb
218
+ - lib/bundler/settings/validator.rb
242
219
  - lib/bundler/setup.rb
243
220
  - lib/bundler/shared_helpers.rb
244
221
  - lib/bundler/similarity_detector.rb
@@ -246,6 +223,7 @@ files:
246
223
  - lib/bundler/source/gemspec.rb
247
224
  - lib/bundler/source/git.rb
248
225
  - lib/bundler/source/git/git_proxy.rb
226
+ - lib/bundler/source/metadata.rb
249
227
  - lib/bundler/source/path.rb
250
228
  - lib/bundler/source/path/installer.rb
251
229
  - lib/bundler/source/rubygems.rb
@@ -259,8 +237,10 @@ files:
259
237
  - lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
260
238
  - lib/bundler/stub_specification.rb
261
239
  - lib/bundler/templates/Executable
240
+ - lib/bundler/templates/Executable.bundler
262
241
  - lib/bundler/templates/Executable.standalone
263
242
  - lib/bundler/templates/Gemfile
243
+ - lib/bundler/templates/gems.rb
264
244
  - lib/bundler/templates/newgem/.travis.yml.tt
265
245
  - lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt
266
246
  - lib/bundler/templates/newgem/Gemfile.tt
@@ -287,7 +267,9 @@ files:
287
267
  - lib/bundler/ui/shell.rb
288
268
  - lib/bundler/ui/silent.rb
289
269
  - lib/bundler/uri_credentials_filter.rb
270
+ - lib/bundler/vendor/fileutils/lib/fileutils.rb
290
271
  - lib/bundler/vendor/molinillo/lib/molinillo.rb
272
+ - lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb
291
273
  - lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb
292
274
  - lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb
293
275
  - lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb
@@ -342,6 +324,7 @@ files:
342
324
  - lib/bundler/vendor/thor/lib/thor/shell/html.rb
343
325
  - lib/bundler/vendor/thor/lib/thor/util.rb
344
326
  - lib/bundler/vendor/thor/lib/thor/version.rb
327
+ - lib/bundler/vendored_fileutils.rb
345
328
  - lib/bundler/vendored_molinillo.rb
346
329
  - lib/bundler/vendored_persistent.rb
347
330
  - lib/bundler/vendored_thor.rb
@@ -383,6 +366,9 @@ files:
383
366
  - man/bundle-install.1
384
367
  - man/bundle-install.1.txt
385
368
  - man/bundle-install.ronn
369
+ - man/bundle-list.1
370
+ - man/bundle-list.1.txt
371
+ - man/bundle-list.ronn
386
372
  - man/bundle-lock.1
387
373
  - man/bundle-lock.1.txt
388
374
  - man/bundle-lock.ronn
@@ -417,7 +403,6 @@ files:
417
403
  - man/gemfile.5.ronn
418
404
  - man/gemfile.5.txt
419
405
  - man/index.txt
420
- - task/release.rake
421
406
  homepage: http://bundler.io
422
407
  licenses:
423
408
  - MIT
@@ -442,7 +427,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
442
427
  version: 1.3.6
443
428
  requirements: []
444
429
  rubyforge_project:
445
- rubygems_version: 2.6.12
430
+ rubygems_version: 2.6.13
446
431
  signing_key:
447
432
  specification_version: 4
448
433
  summary: The best way to manage your application's dependencies
@@ -1,25 +0,0 @@
1
- ---
2
- engines:
3
- duplication:
4
- enabled: true
5
- config:
6
- languages:
7
- - ruby
8
- fixme:
9
- enabled: true
10
- rubocop:
11
- enabled: false
12
- ratings:
13
- paths:
14
- - "**.rb"
15
- - "bin/*"
16
- - "exe/*"
17
- exclude_paths:
18
- - bundler.gemspec
19
- - "*.md"
20
- - lib/bundler/ssl_certs/*.pem
21
- - lib/bundler/vendor/**/*
22
- - lib/bundler/templates/**/*.tt
23
- - man/*
24
- - spec/**/*
25
- - Rakefile
data/.gitignore DELETED
@@ -1,18 +0,0 @@
1
- # Please do not submit patches for including directives to ignore IDE/editor
2
- # generated files. Use a global gitignore as described in
3
- # https://help.github.com/articles/ignoring-files and find useful gitignore
4
- # samples at https://github.com/github/gitignore
5
-
6
- # files created by running the specs
7
- /tmp/
8
-
9
- # gems built by `rake build`
10
- /pkg/
11
-
12
- # output from ronn
13
- /lib/bundler/man/
14
- man/*
15
- !man/*.ronn
16
-
17
- # rspec failure tracking
18
- .rspec_status
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --warnings
@@ -1,131 +0,0 @@
1
- inherit_from:
2
- - .rubocop_todo.yml
3
-
4
- AllCops:
5
- TargetRubyVersion: 1.9
6
- Exclude:
7
- - tmp/**/*
8
- - lib/bundler/vendor/**/*
9
- DisplayCopNames: true
10
-
11
- # Lint
12
-
13
- # They are idiomatic
14
- Lint/AssignmentInCondition:
15
- Enabled: false
16
-
17
- Lint/EndAlignment:
18
- EnforcedStyleAlignWith: variable
19
- AutoCorrect: true
20
-
21
- Lint/UnusedMethodArgument:
22
- Enabled: false
23
-
24
- # Style
25
-
26
- Style/AccessModifierIndentation:
27
- EnforcedStyle: outdent
28
-
29
- Style/Alias:
30
- EnforcedStyle: prefer_alias_method
31
-
32
- Style/AlignParameters:
33
- EnforcedStyle: with_fixed_indentation
34
-
35
- Style/FrozenStringLiteralComment:
36
- EnforcedStyle: always
37
-
38
- Style/MultilineBlockChain:
39
- Enabled: false
40
-
41
- Style/MultilineOperationIndentation:
42
- EnforcedStyle: indented
43
-
44
- Style/PerlBackrefs:
45
- Enabled: false
46
-
47
- Style/SingleLineBlockParams:
48
- Enabled: false
49
-
50
- Style/SpaceInsideBlockBraces:
51
- SpaceBeforeBlockParameters: false
52
-
53
- Style/TrivialAccessors:
54
- Enabled: false
55
-
56
- # We adopted raise instead of fail.
57
- Style/SignalException:
58
- EnforcedStyle: only_raise
59
-
60
- Style/StringLiterals:
61
- EnforcedStyle: double_quotes
62
-
63
- Style/StringLiteralsInInterpolation:
64
- EnforcedStyle: double_quotes
65
-
66
- # Having these make it easier to *not* forget to add one when adding a new
67
- # value and you can simply copy the previous line.
68
- Style/TrailingCommaInLiteral:
69
- EnforcedStyleForMultiline: comma
70
-
71
- Style/TrailingUnderscoreVariable:
72
- Enabled: false
73
-
74
- # `String.new` is preferred style with enabled frozen string literal
75
- Style/EmptyLiteral:
76
- Enabled: false
77
-
78
- # 1.8.7 support
79
-
80
- Style/HashSyntax:
81
- EnforcedStyle: hash_rockets
82
-
83
- Style/Lambda:
84
- Enabled: false
85
-
86
- Style/DotPosition:
87
- EnforcedStyle: trailing
88
-
89
- Style/EachWithObject:
90
- Enabled: false
91
-
92
- Style/SpecialGlobalVars:
93
- Enabled: false
94
-
95
- Style/TrailingCommaInArguments:
96
- Enabled: false
97
-
98
- Performance/FlatMap:
99
- Enabled: false
100
-
101
- # Metrics
102
-
103
- # We've chosen to use Rubocop only for style, and not for complexity or quality checks.
104
- Metrics/ClassLength:
105
- Enabled: false
106
-
107
- Metrics/ModuleLength:
108
- Enabled: false
109
-
110
- Metrics/MethodLength:
111
- Enabled: false
112
-
113
- Metrics/BlockNesting:
114
- Enabled: false
115
-
116
- Metrics/AbcSize:
117
- Enabled: false
118
-
119
- Metrics/CyclomaticComplexity:
120
- Enabled: false
121
-
122
- Metrics/ParameterLists:
123
- Enabled: false
124
-
125
- Metrics/BlockLength:
126
- Enabled: false
127
-
128
- # It will be obvious which code is complex, Rubocop should only lint simple
129
- # rules for us.
130
- Metrics/PerceivedComplexity:
131
- Enabled: false
@@ -1,418 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2017-04-08 17:26:10 -0500 using RuboCop version 0.48.0.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 23
10
- Lint/AmbiguousBlockAssociation:
11
- Exclude:
12
- - 'lib/bundler/definition.rb'
13
- - 'lib/bundler/resolver.rb'
14
- - 'lib/bundler/runtime.rb'
15
- - 'lib/bundler/source/path.rb'
16
- - 'spec/bundler/compact_index_client/updater_spec.rb'
17
- - 'spec/commands/init_spec.rb'
18
- - 'spec/commands/install_spec.rb'
19
- - 'spec/install/gems/flex_spec.rb'
20
- - 'spec/lock/lockfile_spec.rb'
21
- - 'spec/runtime/setup_spec.rb'
22
- - 'spec/support/indexes.rb'
23
-
24
- # Offense count: 2
25
- Lint/EmptyWhen:
26
- Exclude:
27
- - 'lib/bundler/friendly_errors.rb'
28
- - 'spec/support/builders.rb'
29
-
30
- # Offense count: 4
31
- Lint/HandleExceptions:
32
- Exclude:
33
- - 'lib/bundler/installer.rb'
34
- - 'lib/bundler/psyched_yaml.rb'
35
- - 'lib/bundler/vendored_persistent.rb'
36
-
37
- # Offense count: 1
38
- Lint/IneffectiveAccessModifier:
39
- Exclude:
40
- - 'lib/bundler/settings.rb'
41
-
42
- # Offense count: 3
43
- Lint/NestedMethodDefinition:
44
- Exclude:
45
- - 'lib/bundler/inline.rb'
46
- - 'spec/support/builders.rb'
47
-
48
- # Offense count: 5
49
- Lint/RescueException:
50
- Exclude:
51
- - 'lib/bundler/cli.rb'
52
- - 'lib/bundler/dsl.rb'
53
- - 'lib/bundler/friendly_errors.rb'
54
- - 'lib/bundler/rubygems_integration.rb'
55
- - 'lib/bundler/worker.rb'
56
-
57
- # Offense count: 2
58
- Lint/ShadowedException:
59
- Exclude:
60
- - 'lib/bundler.rb'
61
- - 'lib/bundler/rubygems_integration.rb'
62
-
63
- # Offense count: 1
64
- # Configuration parameters: ContextCreatingMethods, MethodCreatingMethods.
65
- Lint/UselessAccessModifier:
66
- Exclude:
67
- - 'lib/bundler/fetcher.rb'
68
-
69
- # Offense count: 6
70
- Lint/UselessAssignment:
71
- Exclude:
72
- - 'lib/bundler/index.rb'
73
- - 'lib/bundler/installer.rb'
74
-
75
- # Offense count: 451
76
- # Configuration parameters: CountComments, ExcludedMethods.
77
- Metrics/BlockLength:
78
- Max: 988
79
-
80
- # Offense count: 2035
81
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
82
- # URISchemes: http, https
83
- Metrics/LineLength:
84
- Max: 207
85
-
86
- # Offense count: 7
87
- # Cop supports --auto-correct.
88
- Performance/RedundantBlockCall:
89
- Exclude:
90
- - 'lib/bundler/dsl.rb'
91
- - 'lib/bundler/gem_helper.rb'
92
- - 'lib/bundler/retry.rb'
93
- - 'lib/bundler/shared_helpers.rb'
94
- - 'spec/support/helpers.rb'
95
-
96
- # Offense count: 2
97
- # Cop supports --auto-correct.
98
- Performance/RedundantMatch:
99
- Exclude:
100
- - 'lib/bundler/definition.rb'
101
- - 'lib/bundler/lockfile_parser.rb'
102
-
103
- # Offense count: 6
104
- # Cop supports --auto-correct.
105
- # Configuration parameters: MaxKeyValuePairs.
106
- Performance/RedundantMerge:
107
- Exclude:
108
- - 'lib/bundler/cli/gem.rb'
109
-
110
- # Offense count: 4
111
- Security/Eval:
112
- Exclude:
113
- - 'lib/bundler.rb'
114
- - 'lib/bundler/endpoint_specification.rb'
115
- - 'spec/support/streams.rb'
116
-
117
- # Offense count: 6
118
- Security/MarshalLoad:
119
- Exclude:
120
- - 'lib/bundler.rb'
121
- - 'spec/install/gems/resolving_spec.rb'
122
- - 'spec/support/artifice/compact_index.rb'
123
- - 'spec/support/artifice/endpoint.rb'
124
-
125
- # Offense count: 2
126
- # Cop supports --auto-correct.
127
- Security/YAMLLoad:
128
- Exclude:
129
- - 'spec/bundler/yaml_serializer_spec.rb'
130
- - 'spec/commands/inject_spec.rb'
131
-
132
- # Offense count: 1
133
- Style/AccessorMethodName:
134
- Exclude:
135
- - 'lib/bundler/source/git.rb'
136
-
137
- # Offense count: 4
138
- Style/CaseEquality:
139
- Exclude:
140
- - 'lib/bundler/dsl.rb'
141
- - 'lib/bundler/match_platform.rb'
142
- - 'lib/bundler/rubygems_ext.rb'
143
-
144
- # Offense count: 25
145
- # Configuration parameters: EnforcedStyle, SupportedStyles.
146
- # SupportedStyles: nested, compact
147
- Style/ClassAndModuleChildren:
148
- Enabled: false
149
-
150
- # Offense count: 9
151
- # Cop supports --auto-correct.
152
- # Configuration parameters: EnforcedStyle, SupportedStyles, SingleLineConditionsOnly, IncludeTernaryExpressions.
153
- # SupportedStyles: assign_to_condition, assign_inside_condition
154
- Style/ConditionalAssignment:
155
- Exclude:
156
- - 'lib/bundler/cli.rb'
157
- - 'lib/bundler/cli/gem.rb'
158
- - 'lib/bundler/cli/platform.rb'
159
- - 'lib/bundler/dsl.rb'
160
- - 'lib/bundler/lazy_specification.rb'
161
- - 'lib/bundler/psyched_yaml.rb'
162
- - 'lib/bundler/rubygems_integration.rb'
163
- - 'lib/bundler/source/git.rb'
164
- - 'lib/bundler/source/rubygems.rb'
165
-
166
- # Offense count: 158
167
- Style/Documentation:
168
- Enabled: false
169
-
170
- # Offense count: 304
171
- # Cop supports --auto-correct.
172
- Style/EmptyLineAfterMagicComment:
173
- Enabled: false
174
-
175
- # Offense count: 2
176
- # Cop supports --auto-correct.
177
- Style/EmptyLinesAroundExceptionHandlingKeywords:
178
- Exclude:
179
- - 'Rakefile'
180
-
181
- # Offense count: 17
182
- # Cop supports --auto-correct.
183
- # Configuration parameters: EnforcedStyle, SupportedStyles.
184
- # SupportedStyles: compact, expanded
185
- Style/EmptyMethod:
186
- Exclude:
187
- - 'exe/bundle_ruby'
188
- - 'lib/bundler/cli.rb'
189
- - 'lib/bundler/plugin/api/source.rb'
190
- - 'lib/bundler/rubygems_integration.rb'
191
- - 'lib/bundler/ui/silent.rb'
192
- - 'spec/support/artifice/fail.rb'
193
-
194
- # Offense count: 2
195
- # Cop supports --auto-correct.
196
- # Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
197
- Style/ExtraSpacing:
198
- Exclude:
199
- - 'lib/bundler/cli.rb'
200
-
201
- # Offense count: 2
202
- # Configuration parameters: AllowedVariables.
203
- Style/GlobalVars:
204
- Exclude:
205
- - 'lib/bundler/cli.rb'
206
- - 'spec/spec_helper.rb'
207
-
208
- # Offense count: 17
209
- # Configuration parameters: MinBodyLength.
210
- Style/GuardClause:
211
- Exclude:
212
- - 'lib/bundler/cli/cache.rb'
213
- - 'lib/bundler/cli/clean.rb'
214
- - 'lib/bundler/cli/install.rb'
215
- - 'lib/bundler/cli/outdated.rb'
216
- - 'lib/bundler/cli/package.rb'
217
- - 'lib/bundler/definition.rb'
218
- - 'lib/bundler/dsl.rb'
219
- - 'lib/bundler/installer.rb'
220
- - 'lib/bundler/runtime.rb'
221
- - 'lib/bundler/source/path/installer.rb'
222
- - 'lib/bundler/source_list.rb'
223
- - 'spec/commands/newgem_spec.rb'
224
- - 'spec/support/sometimes.rb'
225
-
226
- # Offense count: 1
227
- Style/IfInsideElse:
228
- Exclude:
229
- - 'lib/bundler/cli/install.rb'
230
-
231
- # Offense count: 1
232
- Style/IfUnlessModifierOfIfUnless:
233
- Exclude:
234
- - 'spec/support/helpers.rb'
235
-
236
- # Offense count: 10
237
- # Cop supports --auto-correct.
238
- # Configuration parameters: SupportedStyles, IndentationWidth.
239
- # SupportedStyles: special_inside_parentheses, consistent, align_brackets
240
- Style/IndentArray:
241
- EnforcedStyle: consistent
242
-
243
- # Offense count: 34
244
- # Cop supports --auto-correct.
245
- # Configuration parameters: EnforcedStyle, SupportedStyles.
246
- # SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
247
- Style/IndentHeredoc:
248
- Enabled: false
249
-
250
- # Offense count: 9
251
- # Cop supports --auto-correct.
252
- # Configuration parameters: InverseMethods, InverseBlocks.
253
- Style/InverseMethods:
254
- Exclude:
255
- - 'lib/bundler/cli/doctor.rb'
256
- - 'lib/bundler/definition.rb'
257
- - 'lib/bundler/dsl.rb'
258
- - 'lib/bundler/index.rb'
259
- - 'lib/bundler/resolver.rb'
260
-
261
- # Offense count: 6
262
- Style/MethodMissing:
263
- Exclude:
264
- - 'lib/bundler/dep_proxy.rb'
265
- - 'lib/bundler/dsl.rb'
266
- - 'lib/bundler/lazy_specification.rb'
267
- - 'lib/bundler/plugin/dsl.rb'
268
- - 'lib/bundler/remote_specification.rb'
269
- - 'spec/support/builders.rb'
270
-
271
- # Offense count: 2
272
- # Configuration parameters: EnforcedStyle, SupportedStyles.
273
- # SupportedStyles: separated, grouped
274
- Style/MixinGrouping:
275
- Exclude:
276
- - 'lib/bundler/spec_set.rb'
277
- - 'spec/runtime/setup_spec.rb'
278
-
279
- # Offense count: 2
280
- # Configuration parameters: EnforcedStyle, SupportedStyles.
281
- # SupportedStyles: module_function, extend_self
282
- Style/ModuleFunction:
283
- Exclude:
284
- - 'lib/bundler/shared_helpers.rb'
285
- - 'spec/support/path.rb'
286
-
287
- # Offense count: 11
288
- # Cop supports --auto-correct.
289
- Style/MultilineIfModifier:
290
- Exclude:
291
- - 'bin/with_rubygems'
292
- - 'lib/bundler/installer.rb'
293
- - 'lib/bundler/psyched_yaml.rb'
294
- - 'lib/bundler/rubygems_ext.rb'
295
- - 'lib/bundler/runtime.rb'
296
- - 'lib/bundler/source/rubygems.rb'
297
-
298
- # Offense count: 3
299
- # Cop supports --auto-correct.
300
- # Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
301
- # SupportedStyles: aligned, indented, indented_relative_to_receiver
302
- Style/MultilineMethodCallIndentation:
303
- Exclude:
304
- - 'lib/bundler/cli/common.rb'
305
- - 'spec/bundler/plugin/source_list_spec.rb'
306
-
307
- # Offense count: 3
308
- # Cop supports --auto-correct.
309
- Style/NestedParenthesizedCalls:
310
- Exclude:
311
- - 'lib/bundler/resolver.rb'
312
- - 'spec/commands/lock_spec.rb'
313
- - 'spec/runtime/setup_spec.rb'
314
-
315
- # Offense count: 6
316
- # Cop supports --auto-correct.
317
- # Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
318
- # SupportedStyles: predicate, comparison
319
- Style/NumericPredicate:
320
- Exclude:
321
- - 'spec/**/*'
322
- - 'lib/bundler/gem_helper.rb'
323
- - 'lib/bundler/mirror.rb'
324
- - 'lib/bundler/source/git/git_proxy.rb'
325
- - 'lib/bundler/source/path.rb'
326
-
327
- # Offense count: 9
328
- # Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
329
- # NamePrefix: is_, has_, have_
330
- # NamePrefixBlacklist: is_, has_, have_
331
- # NameWhitelist: is_a?
332
- Style/PredicateName:
333
- Exclude:
334
- - 'spec/**/*'
335
- - 'lib/bundler/definition.rb'
336
- - 'lib/bundler/installer/parallel_installer.rb'
337
- - 'lib/bundler/settings.rb'
338
- - 'lib/bundler/source/git.rb'
339
- - 'lib/bundler/source/git/git_proxy.rb'
340
- - 'lib/bundler/source/path.rb'
341
-
342
- # Offense count: 24
343
- # Cop supports --auto-correct.
344
- # Configuration parameters: EnforcedStyle, SupportedStyles.
345
- # SupportedStyles: compact, exploded
346
- Style/RaiseArgs:
347
- Exclude:
348
- - 'lib/bundler/cli/install.rb'
349
- - 'lib/bundler/deployment.rb'
350
- - 'lib/bundler/fetcher/downloader.rb'
351
- - 'lib/bundler/fetcher/index.rb'
352
- - 'lib/bundler/installer/standalone.rb'
353
- - 'lib/bundler/rubygems_integration.rb'
354
- - 'lib/bundler/shared_helpers.rb'
355
- - 'lib/bundler/source/git/git_proxy.rb'
356
- - 'lib/bundler/source/rubygems/remote.rb'
357
- - 'spec/bundler/endpoint_specification_spec.rb'
358
- - 'spec/bundler/fetcher/dependency_spec.rb'
359
- - 'spec/bundler/fetcher/downloader_spec.rb'
360
- - 'spec/bundler/fetcher/index_spec.rb'
361
- - 'spec/bundler/rubygems_integration_spec.rb'
362
- - 'spec/bundler/shared_helpers_spec.rb'
363
-
364
- # Offense count: 2
365
- # Cop supports --auto-correct.
366
- Style/RedundantParentheses:
367
- Exclude:
368
- - 'lib/bundler/cli/console.rb'
369
- - 'lib/bundler/dsl.rb'
370
-
371
- # Offense count: 1
372
- # Cop supports --auto-correct.
373
- # Configuration parameters: AllowForAlignment.
374
- Style/SpaceAroundOperators:
375
- Exclude:
376
- - 'lib/bundler/retry.rb'
377
-
378
- # Offense count: 2
379
- # Cop supports --auto-correct.
380
- # Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SupportedStylesForEmptyBraces, SpaceBeforeBlockParameters.
381
- # SupportedStyles: space, no_space
382
- # SupportedStylesForEmptyBraces: space, no_space
383
- Style/SpaceInsideBlockBraces:
384
- Exclude:
385
- - 'lib/bundler/installer/parallel_installer.rb'
386
-
387
- # Offense count: 2
388
- # Cop supports --auto-correct.
389
- # Configuration parameters: EnforcedStyle, SupportedStyles, AllowSafeAssignment.
390
- # SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex
391
- Style/TernaryParentheses:
392
- Exclude:
393
- - 'lib/bundler/cli/common.rb'
394
- - 'lib/bundler/gem_version_promoter.rb'
395
-
396
- # Offense count: 9
397
- # Cop supports --auto-correct.
398
- # Configuration parameters: EnforcedStyleForMultiline, SupportedStylesForMultiline.
399
- # SupportedStylesForMultiline: comma, consistent_comma, no_comma
400
- Style/TrailingCommaInLiteral:
401
- Exclude:
402
- - 'lib/bundler/cli/gem.rb'
403
- - 'lib/bundler/fetcher.rb'
404
- - 'lib/bundler/gem_helpers.rb'
405
- - 'lib/bundler/graph.rb'
406
- - 'lib/bundler/ruby_version.rb'
407
- - 'lib/bundler/similarity_detector.rb'
408
- - 'spec/support/artifice/endpoint.rb'
409
-
410
- # Offense count: 7
411
- # Cop supports --auto-correct.
412
- Style/UnneededInterpolation:
413
- Exclude:
414
- - 'lib/bundler/cli/config.rb'
415
- - 'lib/bundler/env.rb'
416
- - 'spec/bundler/shared_helpers_spec.rb'
417
- - 'spec/cache/git_spec.rb'
418
- - 'spec/commands/exec_spec.rb'