bundler 1.7.15 → 1.8.0.pre

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 (191) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -14
  3. data/.rspec +1 -0
  4. data/.travis.yml +22 -15
  5. data/CHANGELOG.md +43 -13
  6. data/CODE_OF_CONDUCT.md +40 -0
  7. data/CONTRIBUTING.md +14 -12
  8. data/DEVELOPMENT.md +4 -2
  9. data/ISSUES.md +1 -1
  10. data/README.md +10 -14
  11. data/Rakefile +10 -10
  12. data/bin/bundle +1 -1
  13. data/bundler.gemspec +5 -4
  14. data/lib/bundler.rb +22 -3
  15. data/lib/bundler/anonymizable_uri.rb +24 -8
  16. data/lib/bundler/cli.rb +103 -66
  17. data/lib/bundler/cli/cache.rb +1 -0
  18. data/lib/bundler/cli/clean.rb +11 -4
  19. data/lib/bundler/cli/common.rb +2 -0
  20. data/lib/bundler/cli/console.rb +22 -26
  21. data/lib/bundler/cli/exec.rb +29 -22
  22. data/lib/bundler/cli/gem.rb +125 -37
  23. data/lib/bundler/cli/install.rb +22 -9
  24. data/lib/bundler/cli/outdated.rb +1 -1
  25. data/lib/bundler/cli/package.rb +8 -1
  26. data/lib/bundler/cli/show.rb +29 -3
  27. data/lib/bundler/cli/update.rb +2 -2
  28. data/lib/bundler/cli/viz.rb +1 -1
  29. data/lib/bundler/definition.rb +14 -22
  30. data/lib/bundler/dependency.rb +8 -1
  31. data/lib/bundler/dsl.rb +17 -4
  32. data/lib/bundler/endpoint_specification.rb +1 -1
  33. data/lib/bundler/env.rb +44 -25
  34. data/lib/bundler/fetcher.rb +33 -25
  35. data/lib/bundler/friendly_errors.rb +38 -5
  36. data/lib/bundler/gem_helper.rb +16 -10
  37. data/lib/bundler/gem_helpers.rb +1 -0
  38. data/lib/bundler/graph.rb +4 -1
  39. data/lib/bundler/index.rb +15 -25
  40. data/lib/bundler/installer.rb +6 -6
  41. data/lib/bundler/lockfile_parser.rb +7 -7
  42. data/lib/bundler/resolver.rb +2 -1
  43. data/lib/bundler/ruby_version.rb +1 -1
  44. data/lib/bundler/rubygems_ext.rb +1 -0
  45. data/lib/bundler/rubygems_integration.rb +1 -1
  46. data/lib/bundler/runtime.rb +22 -40
  47. data/lib/bundler/settings.rb +14 -5
  48. data/lib/bundler/setup.rb +2 -1
  49. data/lib/bundler/shared_helpers.rb +56 -4
  50. data/lib/bundler/source.rb +8 -9
  51. data/lib/bundler/source/git.rb +5 -1
  52. data/lib/bundler/source/git/git_proxy.rb +4 -0
  53. data/lib/bundler/source/path.rb +8 -11
  54. data/lib/bundler/source/path/installer.rb +0 -2
  55. data/lib/bundler/source/rubygems.rb +58 -72
  56. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +13 -0
  57. data/lib/bundler/templates/newgem/LICENSE.txt.tt +17 -18
  58. data/lib/bundler/templates/newgem/README.md.tt +9 -1
  59. data/lib/bundler/templates/newgem/Rakefile.tt +2 -0
  60. data/lib/bundler/templates/newgem/bin/console.tt +14 -0
  61. data/lib/bundler/templates/newgem/bin/setup.tt +7 -0
  62. data/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  63. data/lib/bundler/templates/newgem/gitignore.tt +2 -0
  64. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +1 -1
  65. data/lib/bundler/templates/newgem/newgem.gemspec.tt +17 -13
  66. data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +1 -1
  67. data/lib/bundler/ui/shell.rb +1 -1
  68. data/lib/bundler/version.rb +1 -1
  69. data/lib/bundler/worker.rb +73 -0
  70. data/man/bundle-config.ronn +17 -15
  71. data/man/bundle-install.ronn +102 -93
  72. data/man/bundle-update.ronn +39 -30
  73. data/man/bundle.ronn +6 -0
  74. data/man/gemfile.5.ronn +74 -13
  75. metadata +10 -231
  76. data/lib/bundler/parallel_workers.rb +0 -18
  77. data/lib/bundler/parallel_workers/thread_worker.rb +0 -30
  78. data/lib/bundler/parallel_workers/unix_worker.rb +0 -101
  79. data/lib/bundler/parallel_workers/worker.rb +0 -69
  80. data/lib/bundler/templates/newgem/bin/newgem.tt +0 -3
  81. data/spec/bundler/anonymizable_uri_spec.rb +0 -32
  82. data/spec/bundler/bundler_spec.rb +0 -72
  83. data/spec/bundler/cli_spec.rb +0 -16
  84. data/spec/bundler/definition_spec.rb +0 -22
  85. data/spec/bundler/dsl_spec.rb +0 -82
  86. data/spec/bundler/friendly_errors_spec.rb +0 -13
  87. data/spec/bundler/gem_helper_spec.rb +0 -226
  88. data/spec/bundler/psyched_yaml_spec.rb +0 -8
  89. data/spec/bundler/retry_spec.rb +0 -59
  90. data/spec/bundler/settings_spec.rb +0 -13
  91. data/spec/bundler/source/rubygems_spec.rb +0 -25
  92. data/spec/bundler/source_list_spec.rb +0 -361
  93. data/spec/cache/gems_spec.rb +0 -284
  94. data/spec/cache/git_spec.rb +0 -188
  95. data/spec/cache/path_spec.rb +0 -121
  96. data/spec/cache/platform_spec.rb +0 -57
  97. data/spec/commands/binstubs_spec.rb +0 -219
  98. data/spec/commands/check_spec.rb +0 -278
  99. data/spec/commands/clean_spec.rb +0 -592
  100. data/spec/commands/config_spec.rb +0 -263
  101. data/spec/commands/console_spec.rb +0 -76
  102. data/spec/commands/exec_spec.rb +0 -309
  103. data/spec/commands/help_spec.rb +0 -39
  104. data/spec/commands/init_spec.rb +0 -39
  105. data/spec/commands/inject_spec.rb +0 -78
  106. data/spec/commands/licenses_spec.rb +0 -18
  107. data/spec/commands/newgem_spec.rb +0 -428
  108. data/spec/commands/open_spec.rb +0 -68
  109. data/spec/commands/outdated_spec.rb +0 -156
  110. data/spec/commands/package_spec.rb +0 -114
  111. data/spec/commands/show_spec.rb +0 -125
  112. data/spec/install/binstubs_spec.rb +0 -24
  113. data/spec/install/bundler_spec.rb +0 -146
  114. data/spec/install/deploy_spec.rb +0 -250
  115. data/spec/install/gemfile/gemspec_spec.rb +0 -170
  116. data/spec/install/gemfile/git_spec.rb +0 -967
  117. data/spec/install/gemfile/path_spec.rb +0 -500
  118. data/spec/install/gemfile_spec.rb +0 -44
  119. data/spec/install/gems/c_ext_spec.rb +0 -48
  120. data/spec/install/gems/dependency_api_spec.rb +0 -652
  121. data/spec/install/gems/env_spec.rb +0 -107
  122. data/spec/install/gems/flex_spec.rb +0 -314
  123. data/spec/install/gems/groups_spec.rb +0 -308
  124. data/spec/install/gems/mirror_spec.rb +0 -39
  125. data/spec/install/gems/platform_spec.rb +0 -195
  126. data/spec/install/gems/post_install_spec.rb +0 -121
  127. data/spec/install/gems/resolving_spec.rb +0 -124
  128. data/spec/install/gems/simple_case_spec.rb +0 -377
  129. data/spec/install/gems/sources_spec.rb +0 -386
  130. data/spec/install/gems/standalone_spec.rb +0 -260
  131. data/spec/install/gems/sudo_spec.rb +0 -136
  132. data/spec/install/gems/win32_spec.rb +0 -26
  133. data/spec/install/gemspecs_spec.rb +0 -50
  134. data/spec/install/path_spec.rb +0 -150
  135. data/spec/install/post_bundle_message_spec.rb +0 -142
  136. data/spec/install/prereleases_spec.rb +0 -43
  137. data/spec/install/security_policy_spec.rb +0 -77
  138. data/spec/install/upgrade_spec.rb +0 -26
  139. data/spec/lock/git_spec.rb +0 -34
  140. data/spec/lock/lockfile_spec.rb +0 -924
  141. data/spec/other/bundle_ruby_spec.rb +0 -142
  142. data/spec/other/cli_dispatch_spec.rb +0 -21
  143. data/spec/other/ext_spec.rb +0 -60
  144. data/spec/other/platform_spec.rb +0 -1285
  145. data/spec/other/ssl_cert_spec.rb +0 -23
  146. data/spec/quality_spec.rb +0 -88
  147. data/spec/realworld/dependency_api_spec.rb +0 -60
  148. data/spec/realworld/edgecases_spec.rb +0 -212
  149. data/spec/realworld/parallel_spec.rb +0 -71
  150. data/spec/resolver/basic_spec.rb +0 -66
  151. data/spec/resolver/platform_spec.rb +0 -88
  152. data/spec/runtime/executable_spec.rb +0 -149
  153. data/spec/runtime/load_spec.rb +0 -107
  154. data/spec/runtime/platform_spec.rb +0 -90
  155. data/spec/runtime/require_spec.rb +0 -332
  156. data/spec/runtime/setup_spec.rb +0 -853
  157. data/spec/runtime/with_clean_env_spec.rb +0 -91
  158. data/spec/spec_helper.rb +0 -123
  159. data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +0 -13
  160. data/spec/support/artifice/endpoint.rb +0 -71
  161. data/spec/support/artifice/endpoint_500.rb +0 -37
  162. data/spec/support/artifice/endpoint_api_forbidden.rb +0 -11
  163. data/spec/support/artifice/endpoint_api_missing.rb +0 -16
  164. data/spec/support/artifice/endpoint_basic_authentication.rb +0 -13
  165. data/spec/support/artifice/endpoint_creds_diff_host.rb +0 -38
  166. data/spec/support/artifice/endpoint_extra.rb +0 -31
  167. data/spec/support/artifice/endpoint_extra_api.rb +0 -32
  168. data/spec/support/artifice/endpoint_extra_missing.rb +0 -15
  169. data/spec/support/artifice/endpoint_fallback.rb +0 -17
  170. data/spec/support/artifice/endpoint_host_redirect.rb +0 -15
  171. data/spec/support/artifice/endpoint_marshal_fail.rb +0 -11
  172. data/spec/support/artifice/endpoint_redirect.rb +0 -15
  173. data/spec/support/artifice/endpoint_strict_basic_authentication.rb +0 -18
  174. data/spec/support/artifice/endpoint_timeout.rb +0 -13
  175. data/spec/support/builders.rb +0 -693
  176. data/spec/support/fakeweb/rack-1.0.0.marshal +0 -2
  177. data/spec/support/fakeweb/windows.rb +0 -23
  178. data/spec/support/hax.rb +0 -22
  179. data/spec/support/helpers.rb +0 -361
  180. data/spec/support/indexes.rb +0 -280
  181. data/spec/support/matchers.rb +0 -77
  182. data/spec/support/path.rb +0 -85
  183. data/spec/support/permissions.rb +0 -10
  184. data/spec/support/platforms.rb +0 -94
  185. data/spec/support/ruby_ext.rb +0 -20
  186. data/spec/support/rubygems_ext.rb +0 -39
  187. data/spec/support/streams.rb +0 -13
  188. data/spec/support/sudo.rb +0 -16
  189. data/spec/update/gems_spec.rb +0 -201
  190. data/spec/update/git_spec.rb +0 -283
  191. data/spec/update/path_spec.rb +0 -18
@@ -3,7 +3,7 @@ bundle-update(1) -- Update your gems to the latest available versions
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle update` <*gems> [--source=NAME] [--local]
6
+ `bundle update` <*gems> [--group=NAME] [--source=NAME] [--local]
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -17,6 +17,12 @@ gem.
17
17
 
18
18
  ## OPTIONS
19
19
 
20
+ * `--group=<name>`:
21
+ Only update the gems in the specified group. For instance, you can update all gems
22
+ in the development group with `bundle update --group development`. You can also
23
+ call `bundle update rails --group test` to update the rails gem and all gems in
24
+ the test group, for example.
25
+
20
26
  * `--source=<name>`:
21
27
  The name of a `:git` or `:path` source used in the Gemfile(5). For
22
28
  instance, with a `:git` source of `http://github.com/rails/rails.git`,
@@ -41,37 +47,40 @@ Consider the following Gemfile(5):
41
47
  When you run [bundle install(1)][bundle-install] the first time, bundler will resolve
42
48
  all of the dependencies, all the way down, and install what you need:
43
49
 
44
- Fetching source index for https://rubygems.org/
45
- Installing rake (10.0.2)
46
- Installing abstract (1.0.0)
47
- Installing activesupport (3.0.0.rc)
48
- Installing builder (2.1.2)
49
- Installing i18n (0.4.1)
50
- Installing activemodel (3.0.0.rc)
51
- Installing erubis (2.6.6)
52
- Installing rack (1.2.1)
53
- Installing rack-mount (0.6.9)
54
- Installing rack-test (0.5.4)
55
- Installing tzinfo (0.3.22)
56
- Installing actionpack (3.0.0.rc)
57
- Installing mime-types (1.16)
58
- Installing polyglot (0.3.1)
59
- Installing treetop (1.4.8)
60
- Installing mail (2.2.5)
61
- Installing actionmailer (3.0.0.rc)
62
- Installing arel (0.4.0)
63
- Installing activerecord (3.0.0.rc)
64
- Installing activeresource (3.0.0.rc)
65
- Installing bundler (1.0.0.rc.3)
66
- Installing nokogiri (1.4.3.1) with native extensions
67
- Installing thor (0.14.0)
68
- Installing railties (3.0.0.rc)
69
- Installing rails (3.0.0.rc)
70
-
71
- Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
50
+ Fetching gem metadata from https://rubygems.org/.........
51
+ Resolving dependencies...
52
+ Installing builder 2.1.2
53
+ Installing abstract 1.0.0
54
+ Installing rack 1.2.8
55
+ Using bundler 1.7.6
56
+ Installing rake 10.4.0
57
+ Installing polyglot 0.3.5
58
+ Installing mime-types 1.25.1
59
+ Installing i18n 0.4.2
60
+ Installing mini_portile 0.6.1
61
+ Installing tzinfo 0.3.42
62
+ Installing rack-mount 0.6.14
63
+ Installing rack-test 0.5.7
64
+ Installing treetop 1.4.15
65
+ Installing thor 0.14.6
66
+ Installing activesupport 3.0.0.rc
67
+ Installing erubis 2.6.6
68
+ Installing activemodel 3.0.0.rc
69
+ Installing arel 0.4.0
70
+ Installing mail 2.2.20
71
+ Installing activeresource 3.0.0.rc
72
+ Installing actionpack 3.0.0.rc
73
+ Installing activerecord 3.0.0.rc
74
+ Installing actionmailer 3.0.0.rc
75
+ Installing railties 3.0.0.rc
76
+ Installing rails 3.0.0.rc
77
+ Installing nokogiri 1.6.5
78
+
79
+ Bundle complete! 2 Gemfile dependencies, 26 gems total.
80
+ Use `bundle show [gemname]` to see where a bundled gem is installed.
72
81
 
73
82
  As you can see, even though you have just two gems in the Gemfile(5), your application
74
- actually needs 25 different gems in order to run. Bundler remembers the exact versions
83
+ actually needs 26 different gems in order to run. Bundler remembers the exact versions
75
84
  it installed in `Gemfile.lock`. The next time you run [bundle install(1)][bundle-install], bundler skips
76
85
  the dependency resolution and installs the same gems as it installed last time.
77
86
 
@@ -82,6 +82,12 @@ We divide `bundle` subcommands into primary commands and utilities.
82
82
  * `bundle clean(1)`:
83
83
  Cleans up unused gems in your bundler directory
84
84
 
85
+ ## PLUGINS
86
+
87
+ When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
88
+ Bundler will try to find an executable on your path named `bundler-<command>`
89
+ and execute it, passing down any extra arguments to it.
90
+
85
91
  ## OBSOLETE
86
92
 
87
93
  These commands are obsolete and should no longer be used
@@ -40,7 +40,7 @@ the username and password for any sources that need it. The command must be run
40
40
  once on each computer that will install the Gemfile, but this keeps the
41
41
  credentials from being stored in plain text in version control.
42
42
 
43
- bundle config https://gems.example.com/ user:password
43
+ bundle config gems.example.com user:password
44
44
 
45
45
  For some sources, like a company Gemfury account, it may be easier to simply
46
46
  include the credentials in the Gemfile as part of the source URL.
@@ -254,16 +254,26 @@ gem warning described above in
254
254
  ### GIT (:git)
255
255
 
256
256
  If necessary, you can specify that a gem is located at a particular
257
- git repository. The repository can be public (`http://github.com/rails/rails.git`)
258
- or private (`git@github.com:rails/rails.git`). If the repository is private,
259
- the user that you use to run `bundle install` `MUST` have the appropriate
260
- keys available in their `$HOME/.ssh`.
257
+ git repository using the `:git` parameter. The repository can be accessed via
258
+ several protocols:
259
+
260
+ * `HTTP(S)`:
261
+ gem "rails", :git => "https://github.com/rails/rails.git"
262
+ * `SSH`:
263
+ gem "rails", :git => "git@github.com:rails/rails.git"
264
+ * `git`:
265
+ gem "rails", :git => "git://github.com/rails/rails.git"
261
266
 
262
- Git repositories are specified using the `:git` parameter. The `group`,
263
- `platforms`, and `require` options are available and behave exactly the same
264
- as they would for a normal gem.
267
+ If using SSH, the user that you use to run `bundle install` `MUST` have the
268
+ appropriate keys available in their `$HOME/.ssh`.
265
269
 
266
- gem "rails", :git => "git://github.com/rails/rails.git"
270
+ `NOTE`: `http://` and `git://` URLs should be avoided if at all possible. These
271
+ protocols are unauthenticated, so a man-in-the-middle attacker can deliver
272
+ malicious code and compromise your system. HTTPS and SSH are strongly
273
+ preferred.
274
+
275
+ The `group`, `platforms`, and `require` options are available and behave
276
+ exactly the same as they would for a normal gem.
267
277
 
268
278
  A git repository `SHOULD` have at least one file, at the root of the
269
279
  directory containing the gem, with the extension `.gemspec`. This file
@@ -280,7 +290,7 @@ to, a version specifier, if provided, means that the git repository is
280
290
  only valid if the `.gemspec` specifies a version matching the version
281
291
  specifier. If not, bundler will print a warning.
282
292
 
283
- gem "rails", "2.3.8", :git => "git://github.com/rails/rails.git"
293
+ gem "rails", "2.3.8", :git => "https://github.com/rails/rails.git"
284
294
  # bundle install will fail, because the .gemspec in the rails
285
295
  # repository's master branch specifies version 3.0.0
286
296
 
@@ -315,8 +325,25 @@ and then installs the resulting gem. The `gem build` command,
315
325
  which comes standard with Rubygems, evaluates the `.gemspec` in
316
326
  the context of the directory in which it is located.
317
327
 
328
+ ### GIT SOURCE (:git_source)
329
+
330
+ A custom git source can be defined via the `git_source` method. Provide the source's name
331
+ as an argument, and a block which receives a single argument and interpolates it into a
332
+ string to return the full repo address:
333
+
334
+ git_source(:stash){ |repo_name| "https://stash.corp.acme.pl/#{repo_name}.git" }
335
+ gem 'rails', :stash => 'forks/rails'
336
+
337
+ In addition, if you wish to choose a specific branch:
338
+
339
+ gem "rails", :stash => "forks/rails", :branch => "branch_name"
340
+
318
341
  ### GITHUB (:github)
319
342
 
343
+ `NOTE`: This shorthand should be avoided until Bundler 2.0, since it
344
+ currently expands to an insecure `git://` URL. This allows a
345
+ man-in-the-middle attacker to compromise your system.
346
+
320
347
  If the git repository you want to use is hosted on GitHub and is public, you can use the
321
348
  :github shorthand to specify just the github username and repository name (without the
322
349
  trailing ".git"), separated by a slash. If both the username and repository name are the
@@ -329,9 +356,36 @@ Are both equivalent to
329
356
 
330
357
  gem "rails", :git => "git://github.com/rails/rails.git"
331
358
 
332
- In addition, if you wish to choose a specific branch:
359
+ Since the `github` method is a specialization of `git_source`, it accepts a `:branch` named argument.
360
+
361
+ ### GIST (:gist)
362
+
363
+ If the git repository you want to use is hosted as a Github Gist and is public, you can use
364
+ the :gist shorthand to specify just the gist identifier (without the trailing ".git").
365
+
366
+ gem "the_hatch", :gist => "4815162342"
333
367
 
334
- gem "rails", :github => "rails/rails", :branch => "branch_name"
368
+ Is equivalent to:
369
+
370
+ gem "the_hatch", :git => "https://gist.github.com/4815162342.git"
371
+
372
+ Since the `gist` method is a specialization of `git_source`, it accepts a `:branch` named argument.
373
+
374
+ ### BITBUCKET (:bitbucket)
375
+
376
+ If the git repository you want to use is hosted on Bitbucket and is public, you can use the
377
+ :bitbucket shorthand to specify just the bitbucket username and repository name (without the
378
+ trailing ".git"), separated by a slash. If both the username and repository name are the
379
+ same, you can omit one.
380
+
381
+ gem "rails", :bitbucket => "rails/rails"
382
+ gem "rails", :bitbucket => "rails"
383
+
384
+ Are both equivalent to
385
+
386
+ gem "rails", :git => "https://rails@bitbucket.org/rails/rails.git"
387
+
388
+ Since the `bitbucket` method is a specialization of `git_source`, it accepts a `:branch` named argument.
335
389
 
336
390
  ### PATH (:path)
337
391
 
@@ -349,6 +403,13 @@ gems specified as paths.
349
403
 
350
404
  gem "rails", :path => "vendor/rails"
351
405
 
406
+ If you would like to use multiple local gems directly from the filesystem, you can set a global `path` option to the path containing the gem's files. This will automatically load gemspec files from subdirectories.
407
+
408
+ path 'components' do
409
+ gem 'admin_ui'
410
+ gem 'public_ui'
411
+ end
412
+
352
413
  ## BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS
353
414
 
354
415
  The `:source`, `:git`, `:path`, `:group`, and `:platforms` options may be
@@ -359,7 +420,7 @@ applied to a group of gems by using block form.
359
420
  gem "another_internal_gem"
360
421
  end
361
422
 
362
- git "git://github.com/rails/rails.git" do
423
+ git "https://github.com/rails/rails.git" do
363
424
  gem "activesupport"
364
425
  gem "actionpack"
365
426
  end
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.7.15
4
+ version: 1.8.0.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2015-04-30 00:00:00.000000000 Z
14
+ date: 2015-01-26 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mustache
@@ -72,7 +72,7 @@ dependencies:
72
72
  description: Bundler manages an application's dependencies through its entire life,
73
73
  across many machines, systematically and repeatably
74
74
  email:
75
- - andre@arko.net
75
+ - andre.arko+terence.lee@gmail.com
76
76
  executables:
77
77
  - bundle
78
78
  - bundler
@@ -83,6 +83,7 @@ files:
83
83
  - ".rspec"
84
84
  - ".travis.yml"
85
85
  - CHANGELOG.md
86
+ - CODE_OF_CONDUCT.md
86
87
  - CONTRIBUTING.md
87
88
  - DEVELOPMENT.md
88
89
  - ISSUES.md
@@ -158,10 +159,6 @@ files:
158
159
  - lib/bundler/man/gemfile.5
159
160
  - lib/bundler/man/gemfile.5.txt
160
161
  - lib/bundler/match_platform.rb
161
- - lib/bundler/parallel_workers.rb
162
- - lib/bundler/parallel_workers/thread_worker.rb
163
- - lib/bundler/parallel_workers/unix_worker.rb
164
- - lib/bundler/parallel_workers/worker.rb
165
162
  - lib/bundler/psyched_yaml.rb
166
163
  - lib/bundler/remote_specification.rb
167
164
  - lib/bundler/resolver.rb
@@ -195,11 +192,14 @@ files:
195
192
  - lib/bundler/templates/Executable.standalone
196
193
  - lib/bundler/templates/Gemfile
197
194
  - lib/bundler/templates/newgem/.travis.yml.tt
195
+ - lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt
198
196
  - lib/bundler/templates/newgem/Gemfile.tt
199
197
  - lib/bundler/templates/newgem/LICENSE.txt.tt
200
198
  - lib/bundler/templates/newgem/README.md.tt
201
199
  - lib/bundler/templates/newgem/Rakefile.tt
202
- - lib/bundler/templates/newgem/bin/newgem.tt
200
+ - lib/bundler/templates/newgem/bin/console.tt
201
+ - lib/bundler/templates/newgem/bin/setup.tt
202
+ - lib/bundler/templates/newgem/exe/newgem.tt
203
203
  - lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt
204
204
  - lib/bundler/templates/newgem/ext/newgem/newgem.c.tt
205
205
  - lib/bundler/templates/newgem/ext/newgem/newgem.h.tt
@@ -256,6 +256,7 @@ files:
256
256
  - lib/bundler/vendored_thor.rb
257
257
  - lib/bundler/version.rb
258
258
  - lib/bundler/vlad.rb
259
+ - lib/bundler/worker.rb
259
260
  - man/bundle-config.ronn
260
261
  - man/bundle-exec.ronn
261
262
  - man/bundle-install.ronn
@@ -265,117 +266,6 @@ files:
265
266
  - man/bundle.ronn
266
267
  - man/gemfile.5.ronn
267
268
  - man/index.txt
268
- - spec/bundler/anonymizable_uri_spec.rb
269
- - spec/bundler/bundler_spec.rb
270
- - spec/bundler/cli_spec.rb
271
- - spec/bundler/definition_spec.rb
272
- - spec/bundler/dsl_spec.rb
273
- - spec/bundler/friendly_errors_spec.rb
274
- - spec/bundler/gem_helper_spec.rb
275
- - spec/bundler/psyched_yaml_spec.rb
276
- - spec/bundler/retry_spec.rb
277
- - spec/bundler/settings_spec.rb
278
- - spec/bundler/source/rubygems_spec.rb
279
- - spec/bundler/source_list_spec.rb
280
- - spec/cache/gems_spec.rb
281
- - spec/cache/git_spec.rb
282
- - spec/cache/path_spec.rb
283
- - spec/cache/platform_spec.rb
284
- - spec/commands/binstubs_spec.rb
285
- - spec/commands/check_spec.rb
286
- - spec/commands/clean_spec.rb
287
- - spec/commands/config_spec.rb
288
- - spec/commands/console_spec.rb
289
- - spec/commands/exec_spec.rb
290
- - spec/commands/help_spec.rb
291
- - spec/commands/init_spec.rb
292
- - spec/commands/inject_spec.rb
293
- - spec/commands/licenses_spec.rb
294
- - spec/commands/newgem_spec.rb
295
- - spec/commands/open_spec.rb
296
- - spec/commands/outdated_spec.rb
297
- - spec/commands/package_spec.rb
298
- - spec/commands/show_spec.rb
299
- - spec/install/binstubs_spec.rb
300
- - spec/install/bundler_spec.rb
301
- - spec/install/deploy_spec.rb
302
- - spec/install/gemfile/gemspec_spec.rb
303
- - spec/install/gemfile/git_spec.rb
304
- - spec/install/gemfile/path_spec.rb
305
- - spec/install/gemfile_spec.rb
306
- - spec/install/gems/c_ext_spec.rb
307
- - spec/install/gems/dependency_api_spec.rb
308
- - spec/install/gems/env_spec.rb
309
- - spec/install/gems/flex_spec.rb
310
- - spec/install/gems/groups_spec.rb
311
- - spec/install/gems/mirror_spec.rb
312
- - spec/install/gems/platform_spec.rb
313
- - spec/install/gems/post_install_spec.rb
314
- - spec/install/gems/resolving_spec.rb
315
- - spec/install/gems/simple_case_spec.rb
316
- - spec/install/gems/sources_spec.rb
317
- - spec/install/gems/standalone_spec.rb
318
- - spec/install/gems/sudo_spec.rb
319
- - spec/install/gems/win32_spec.rb
320
- - spec/install/gemspecs_spec.rb
321
- - spec/install/path_spec.rb
322
- - spec/install/post_bundle_message_spec.rb
323
- - spec/install/prereleases_spec.rb
324
- - spec/install/security_policy_spec.rb
325
- - spec/install/upgrade_spec.rb
326
- - spec/lock/git_spec.rb
327
- - spec/lock/lockfile_spec.rb
328
- - spec/other/bundle_ruby_spec.rb
329
- - spec/other/cli_dispatch_spec.rb
330
- - spec/other/ext_spec.rb
331
- - spec/other/platform_spec.rb
332
- - spec/other/ssl_cert_spec.rb
333
- - spec/quality_spec.rb
334
- - spec/realworld/dependency_api_spec.rb
335
- - spec/realworld/edgecases_spec.rb
336
- - spec/realworld/parallel_spec.rb
337
- - spec/resolver/basic_spec.rb
338
- - spec/resolver/platform_spec.rb
339
- - spec/runtime/executable_spec.rb
340
- - spec/runtime/load_spec.rb
341
- - spec/runtime/platform_spec.rb
342
- - spec/runtime/require_spec.rb
343
- - spec/runtime/setup_spec.rb
344
- - spec/runtime/with_clean_env_spec.rb
345
- - spec/spec_helper.rb
346
- - spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
347
- - spec/support/artifice/endpoint.rb
348
- - spec/support/artifice/endpoint_500.rb
349
- - spec/support/artifice/endpoint_api_forbidden.rb
350
- - spec/support/artifice/endpoint_api_missing.rb
351
- - spec/support/artifice/endpoint_basic_authentication.rb
352
- - spec/support/artifice/endpoint_creds_diff_host.rb
353
- - spec/support/artifice/endpoint_extra.rb
354
- - spec/support/artifice/endpoint_extra_api.rb
355
- - spec/support/artifice/endpoint_extra_missing.rb
356
- - spec/support/artifice/endpoint_fallback.rb
357
- - spec/support/artifice/endpoint_host_redirect.rb
358
- - spec/support/artifice/endpoint_marshal_fail.rb
359
- - spec/support/artifice/endpoint_redirect.rb
360
- - spec/support/artifice/endpoint_strict_basic_authentication.rb
361
- - spec/support/artifice/endpoint_timeout.rb
362
- - spec/support/builders.rb
363
- - spec/support/fakeweb/rack-1.0.0.marshal
364
- - spec/support/fakeweb/windows.rb
365
- - spec/support/hax.rb
366
- - spec/support/helpers.rb
367
- - spec/support/indexes.rb
368
- - spec/support/matchers.rb
369
- - spec/support/path.rb
370
- - spec/support/permissions.rb
371
- - spec/support/platforms.rb
372
- - spec/support/ruby_ext.rb
373
- - spec/support/rubygems_ext.rb
374
- - spec/support/streams.rb
375
- - spec/support/sudo.rb
376
- - spec/update/gems_spec.rb
377
- - spec/update/git_spec.rb
378
- - spec/update/path_spec.rb
379
269
  homepage: http://bundler.io
380
270
  licenses:
381
271
  - MIT
@@ -400,115 +290,4 @@ rubygems_version: 2.4.5
400
290
  signing_key:
401
291
  specification_version: 4
402
292
  summary: The best way to manage your application's dependencies
403
- test_files:
404
- - spec/bundler/anonymizable_uri_spec.rb
405
- - spec/bundler/bundler_spec.rb
406
- - spec/bundler/cli_spec.rb
407
- - spec/bundler/definition_spec.rb
408
- - spec/bundler/dsl_spec.rb
409
- - spec/bundler/friendly_errors_spec.rb
410
- - spec/bundler/gem_helper_spec.rb
411
- - spec/bundler/psyched_yaml_spec.rb
412
- - spec/bundler/retry_spec.rb
413
- - spec/bundler/settings_spec.rb
414
- - spec/bundler/source/rubygems_spec.rb
415
- - spec/bundler/source_list_spec.rb
416
- - spec/cache/gems_spec.rb
417
- - spec/cache/git_spec.rb
418
- - spec/cache/path_spec.rb
419
- - spec/cache/platform_spec.rb
420
- - spec/commands/binstubs_spec.rb
421
- - spec/commands/check_spec.rb
422
- - spec/commands/clean_spec.rb
423
- - spec/commands/config_spec.rb
424
- - spec/commands/console_spec.rb
425
- - spec/commands/exec_spec.rb
426
- - spec/commands/help_spec.rb
427
- - spec/commands/init_spec.rb
428
- - spec/commands/inject_spec.rb
429
- - spec/commands/licenses_spec.rb
430
- - spec/commands/newgem_spec.rb
431
- - spec/commands/open_spec.rb
432
- - spec/commands/outdated_spec.rb
433
- - spec/commands/package_spec.rb
434
- - spec/commands/show_spec.rb
435
- - spec/install/binstubs_spec.rb
436
- - spec/install/bundler_spec.rb
437
- - spec/install/deploy_spec.rb
438
- - spec/install/gemfile/gemspec_spec.rb
439
- - spec/install/gemfile/git_spec.rb
440
- - spec/install/gemfile/path_spec.rb
441
- - spec/install/gemfile_spec.rb
442
- - spec/install/gems/c_ext_spec.rb
443
- - spec/install/gems/dependency_api_spec.rb
444
- - spec/install/gems/env_spec.rb
445
- - spec/install/gems/flex_spec.rb
446
- - spec/install/gems/groups_spec.rb
447
- - spec/install/gems/mirror_spec.rb
448
- - spec/install/gems/platform_spec.rb
449
- - spec/install/gems/post_install_spec.rb
450
- - spec/install/gems/resolving_spec.rb
451
- - spec/install/gems/simple_case_spec.rb
452
- - spec/install/gems/sources_spec.rb
453
- - spec/install/gems/standalone_spec.rb
454
- - spec/install/gems/sudo_spec.rb
455
- - spec/install/gems/win32_spec.rb
456
- - spec/install/gemspecs_spec.rb
457
- - spec/install/path_spec.rb
458
- - spec/install/post_bundle_message_spec.rb
459
- - spec/install/prereleases_spec.rb
460
- - spec/install/security_policy_spec.rb
461
- - spec/install/upgrade_spec.rb
462
- - spec/lock/git_spec.rb
463
- - spec/lock/lockfile_spec.rb
464
- - spec/other/bundle_ruby_spec.rb
465
- - spec/other/cli_dispatch_spec.rb
466
- - spec/other/ext_spec.rb
467
- - spec/other/platform_spec.rb
468
- - spec/other/ssl_cert_spec.rb
469
- - spec/quality_spec.rb
470
- - spec/realworld/dependency_api_spec.rb
471
- - spec/realworld/edgecases_spec.rb
472
- - spec/realworld/parallel_spec.rb
473
- - spec/resolver/basic_spec.rb
474
- - spec/resolver/platform_spec.rb
475
- - spec/runtime/executable_spec.rb
476
- - spec/runtime/load_spec.rb
477
- - spec/runtime/platform_spec.rb
478
- - spec/runtime/require_spec.rb
479
- - spec/runtime/setup_spec.rb
480
- - spec/runtime/with_clean_env_spec.rb
481
- - spec/spec_helper.rb
482
- - spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
483
- - spec/support/artifice/endpoint.rb
484
- - spec/support/artifice/endpoint_500.rb
485
- - spec/support/artifice/endpoint_api_forbidden.rb
486
- - spec/support/artifice/endpoint_api_missing.rb
487
- - spec/support/artifice/endpoint_basic_authentication.rb
488
- - spec/support/artifice/endpoint_creds_diff_host.rb
489
- - spec/support/artifice/endpoint_extra.rb
490
- - spec/support/artifice/endpoint_extra_api.rb
491
- - spec/support/artifice/endpoint_extra_missing.rb
492
- - spec/support/artifice/endpoint_fallback.rb
493
- - spec/support/artifice/endpoint_host_redirect.rb
494
- - spec/support/artifice/endpoint_marshal_fail.rb
495
- - spec/support/artifice/endpoint_redirect.rb
496
- - spec/support/artifice/endpoint_strict_basic_authentication.rb
497
- - spec/support/artifice/endpoint_timeout.rb
498
- - spec/support/builders.rb
499
- - spec/support/fakeweb/rack-1.0.0.marshal
500
- - spec/support/fakeweb/windows.rb
501
- - spec/support/hax.rb
502
- - spec/support/helpers.rb
503
- - spec/support/indexes.rb
504
- - spec/support/matchers.rb
505
- - spec/support/path.rb
506
- - spec/support/permissions.rb
507
- - spec/support/platforms.rb
508
- - spec/support/ruby_ext.rb
509
- - spec/support/rubygems_ext.rb
510
- - spec/support/streams.rb
511
- - spec/support/sudo.rb
512
- - spec/update/gems_spec.rb
513
- - spec/update/git_spec.rb
514
- - spec/update/path_spec.rb
293
+ test_files: []