bundler 1.17.0.pre.1 → 1.17.0.pre.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 (84) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +39 -1
  3. data/README.md +1 -1
  4. data/bundler.gemspec +1 -1
  5. data/lib/bundler.rb +28 -10
  6. data/lib/bundler/build_metadata.rb +2 -2
  7. data/lib/bundler/cli.rb +33 -5
  8. data/lib/bundler/cli/binstubs.rb +8 -2
  9. data/lib/bundler/cli/remove.rb +18 -0
  10. data/lib/bundler/definition.rb +18 -13
  11. data/lib/bundler/dependency.rb +2 -2
  12. data/lib/bundler/dsl.rb +18 -2
  13. data/lib/bundler/endpoint_specification.rb +1 -1
  14. data/lib/bundler/env.rb +8 -6
  15. data/lib/bundler/fetcher.rb +1 -1
  16. data/lib/bundler/gem_helper.rb +1 -1
  17. data/lib/bundler/injector.rb +156 -8
  18. data/lib/bundler/installer/gem_installer.rb +1 -1
  19. data/lib/bundler/installer/parallel_installer.rb +1 -1
  20. data/lib/bundler/mirror.rb +2 -2
  21. data/lib/bundler/plugin.rb +5 -5
  22. data/lib/bundler/plugin/index.rb +1 -1
  23. data/lib/bundler/resolver/spec_group.rb +0 -4
  24. data/lib/bundler/runtime.rb +1 -1
  25. data/lib/bundler/settings.rb +1 -1
  26. data/lib/bundler/shared_helpers.rb +6 -0
  27. data/lib/bundler/source/metadata.rb +1 -1
  28. data/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -0
  29. data/lib/bundler/version.rb +1 -1
  30. data/man/bundle-add.1 +1 -1
  31. data/man/bundle-add.1.txt +1 -1
  32. data/man/bundle-binstubs.1 +1 -1
  33. data/man/bundle-binstubs.1.txt +1 -1
  34. data/man/bundle-check.1 +1 -1
  35. data/man/bundle-check.1.txt +1 -1
  36. data/man/bundle-clean.1 +1 -1
  37. data/man/bundle-clean.1.txt +1 -1
  38. data/man/bundle-config.1 +1 -1
  39. data/man/bundle-config.1.txt +1 -1
  40. data/man/bundle-doctor.1 +1 -1
  41. data/man/bundle-doctor.1.txt +1 -1
  42. data/man/bundle-exec.1 +1 -1
  43. data/man/bundle-exec.1.txt +1 -1
  44. data/man/bundle-gem.1 +1 -1
  45. data/man/bundle-gem.1.txt +1 -1
  46. data/man/bundle-info.1 +1 -1
  47. data/man/bundle-info.1.txt +1 -1
  48. data/man/bundle-init.1 +1 -1
  49. data/man/bundle-init.1.txt +1 -1
  50. data/man/bundle-inject.1 +1 -1
  51. data/man/bundle-inject.1.txt +1 -1
  52. data/man/bundle-install.1 +6 -3
  53. data/man/bundle-install.1.txt +118 -107
  54. data/man/bundle-install.ronn +12 -3
  55. data/man/bundle-list.1 +1 -1
  56. data/man/bundle-list.1.txt +1 -1
  57. data/man/bundle-lock.1 +1 -1
  58. data/man/bundle-lock.1.txt +1 -1
  59. data/man/bundle-open.1 +1 -1
  60. data/man/bundle-open.1.txt +1 -1
  61. data/man/bundle-outdated.1 +1 -1
  62. data/man/bundle-outdated.1.txt +1 -1
  63. data/man/bundle-package.1 +1 -1
  64. data/man/bundle-package.1.txt +1 -1
  65. data/man/bundle-platform.1 +1 -1
  66. data/man/bundle-platform.1.txt +1 -1
  67. data/man/bundle-pristine.1 +1 -1
  68. data/man/bundle-pristine.1.txt +1 -1
  69. data/man/bundle-remove.1 +31 -0
  70. data/man/bundle-remove.1.txt +34 -0
  71. data/man/bundle-remove.ronn +23 -0
  72. data/man/bundle-show.1 +1 -1
  73. data/man/bundle-show.1.txt +1 -1
  74. data/man/bundle-update.1 +11 -7
  75. data/man/bundle-update.1.txt +71 -68
  76. data/man/bundle-update.ronn +11 -7
  77. data/man/bundle-viz.1 +1 -1
  78. data/man/bundle-viz.1.txt +1 -1
  79. data/man/bundle.1 +1 -1
  80. data/man/bundle.1.txt +1 -1
  81. data/man/gemfile.5 +1 -1
  82. data/man/gemfile.5.txt +1 -1
  83. data/man/index.txt +1 -0
  84. metadata +7 -2
@@ -3,7 +3,8 @@ bundle-update(1) -- Update your gems to the latest available versions
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle update` <*gems> [--group=NAME]
6
+ `bundle update` <*gems> [--all]
7
+ [--group=NAME]
7
8
  [--source=NAME]
8
9
  [--local]
9
10
  [--ruby]
@@ -18,7 +19,7 @@ bundle-update(1) -- Update your gems to the latest available versions
18
19
 
19
20
  ## DESCRIPTION
20
21
 
21
- Update the gems specified (all gems, if none are specified), ignoring
22
+ Update the gems specified (all gems, if `--all` flag is used), ignoring
22
23
  the previously installed gems specified in the `Gemfile.lock`. In
23
24
  general, you should use [bundle install(1)](bundle-install.1.html) to install the same exact
24
25
  gems and versions across machines.
@@ -28,6 +29,9 @@ gem.
28
29
 
29
30
  ## OPTIONS
30
31
 
32
+ * `--all`:
33
+ Update all gems specified in Gemfile.
34
+
31
35
  * `--group=<name>`, `-g=[<name>]`:
32
36
  Only update the gems in the specified group. For instance, you can update all gems
33
37
  in the development group with `bundle update --group development`. You can also
@@ -61,7 +65,7 @@ gem.
61
65
  Only output warnings and errors.
62
66
 
63
67
  * `--force`:
64
- Force downloading every gem.
68
+ Force downloading every gem. `--redownload` is an alias of this option.
65
69
 
66
70
  * `--patch`:
67
71
  Prefer updating only to next patch version.
@@ -80,7 +84,7 @@ gem.
80
84
 
81
85
  ## UPDATING ALL GEMS
82
86
 
83
- If you run `bundle update` with no parameters, bundler will ignore
87
+ If you run `bundle update --all`, bundler will ignore
84
88
  any previously installed gems and resolve all dependencies again
85
89
  based on the latest versions of all gems available in the sources.
86
90
 
@@ -139,10 +143,10 @@ the gems you use.
139
143
  However, from time to time, you might want to update the gems you are using to the
140
144
  newest versions that still match the gems in your Gemfile(5).
141
145
 
142
- To do this, run `bundle update`, which will ignore the `Gemfile.lock`, and resolve
146
+ To do this, run `bundle update --all`, which will ignore the `Gemfile.lock`, and resolve
143
147
  all the dependencies again. Keep in mind that this process can result in a significantly
144
148
  different set of the 25 gems, based on the requirements of new gems that the gem
145
- authors released since the last time you ran `bundle update`.
149
+ authors released since the last time you ran `bundle update --all`.
146
150
 
147
151
  ## UPDATING A LIST OF GEMS
148
152
 
@@ -343,4 +347,4 @@ use the following workflow:
343
347
  * If you want to update all the gems to the latest possible versions that
344
348
  still match the gems listed in the Gemfile(5), run
345
349
 
346
- $ bundle update
350
+ $ bundle update --all
@@ -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" "September 2018" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "October 2018" "" ""
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
- September 2018 BUNDLE-VIZ(1)
39
+ October 2018 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" "September 2018" "" ""
4
+ .TH "BUNDLE" "1" "October 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -110,4 +110,4 @@ OBSOLETE
110
110
 
111
111
 
112
112
 
113
- September 2018 BUNDLE(1)
113
+ October 2018 BUNDLE(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 "GEMFILE" "5" "September 2018" "" ""
4
+ .TH "GEMFILE" "5" "October 2018" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -650,4 +650,4 @@ SOURCE PRIORITY
650
650
 
651
651
 
652
652
 
653
- September 2018 GEMFILE(5)
653
+ October 2018 GEMFILE(5)
@@ -19,6 +19,7 @@ bundle-outdated(1) bundle-outdated.1
19
19
  bundle-package(1) bundle-package.1
20
20
  bundle-platform(1) bundle-platform.1
21
21
  bundle-pristine(1) bundle-pristine.1
22
+ bundle-remove(1) bundle-remove.1
22
23
  bundle-show(1) bundle-show.1
23
24
  bundle-update(1) bundle-update.1
24
25
  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.17.0.pre.1
4
+ version: 1.17.0.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -10,6 +10,7 @@ authors:
10
10
  - Hiroshi Shibata
11
11
  - David Rodríguez
12
12
  - Grey Baker
13
+ - Stephanie Morillo
13
14
  - Chris Morris
14
15
  - James Wen
15
16
  - Tim Moore
@@ -21,7 +22,7 @@ authors:
21
22
  autorequire:
22
23
  bindir: exe
23
24
  cert_chain: []
24
- date: 2018-09-23 00:00:00.000000000 Z
25
+ date: 2018-10-13 00:00:00.000000000 Z
25
26
  dependencies:
26
27
  - !ruby/object:Gem::Dependency
27
28
  name: automatiek
@@ -152,6 +153,7 @@ files:
152
153
  - lib/bundler/cli/platform.rb
153
154
  - lib/bundler/cli/plugin.rb
154
155
  - lib/bundler/cli/pristine.rb
156
+ - lib/bundler/cli/remove.rb
155
157
  - lib/bundler/cli/show.rb
156
158
  - lib/bundler/cli/update.rb
157
159
  - lib/bundler/cli/viz.rb
@@ -397,6 +399,9 @@ files:
397
399
  - man/bundle-pristine.1
398
400
  - man/bundle-pristine.1.txt
399
401
  - man/bundle-pristine.ronn
402
+ - man/bundle-remove.1
403
+ - man/bundle-remove.1.txt
404
+ - man/bundle-remove.ronn
400
405
  - man/bundle-show.1
401
406
  - man/bundle-show.1.txt
402
407
  - man/bundle-show.ronn