bundler 1.13.7 → 1.14.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 (112) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop_todo.yml +100 -18
  4. data/.travis.yml +32 -18
  5. data/CHANGELOG.md +64 -2
  6. data/DEVELOPMENT.md +5 -3
  7. data/ISSUES.md +17 -0
  8. data/README.md +7 -0
  9. data/Rakefile +34 -23
  10. data/bin/rubocop +1 -1
  11. data/bundler.gemspec +2 -2
  12. data/exe/bundle +4 -6
  13. data/lib/bundler.rb +57 -5
  14. data/lib/bundler/cli.rb +51 -38
  15. data/lib/bundler/cli/binstubs.rb +1 -1
  16. data/lib/bundler/cli/cache.rb +1 -1
  17. data/lib/bundler/cli/check.rb +1 -1
  18. data/lib/bundler/cli/clean.rb +1 -1
  19. data/lib/bundler/cli/common.rb +30 -0
  20. data/lib/bundler/cli/doctor.rb +17 -19
  21. data/lib/bundler/cli/exec.rb +6 -0
  22. data/lib/bundler/cli/gem.rb +18 -4
  23. data/lib/bundler/cli/install.rb +9 -25
  24. data/lib/bundler/cli/lock.rb +8 -7
  25. data/lib/bundler/cli/outdated.rb +163 -56
  26. data/lib/bundler/cli/platform.rb +1 -1
  27. data/lib/bundler/cli/show.rb +1 -1
  28. data/lib/bundler/cli/update.rb +10 -23
  29. data/lib/bundler/compact_index_client.rb +108 -0
  30. data/lib/bundler/compact_index_client/cache.rb +119 -0
  31. data/lib/bundler/compact_index_client/updater.rb +88 -0
  32. data/lib/bundler/current_ruby.rb +4 -3
  33. data/lib/bundler/definition.rb +107 -17
  34. data/lib/bundler/dependency.rb +6 -0
  35. data/lib/bundler/dsl.rb +3 -2
  36. data/lib/bundler/env.rb +27 -18
  37. data/lib/bundler/errors.rb +22 -0
  38. data/lib/bundler/feature_flag.rb +32 -0
  39. data/lib/bundler/fetcher.rb +2 -2
  40. data/lib/bundler/fetcher/compact_index.rb +17 -5
  41. data/lib/bundler/fetcher/dependency.rb +1 -1
  42. data/lib/bundler/fetcher/downloader.rb +11 -0
  43. data/lib/bundler/friendly_errors.rb +28 -7
  44. data/lib/bundler/gem_helper.rb +1 -1
  45. data/lib/bundler/gem_helpers.rb +69 -1
  46. data/lib/bundler/gemdeps.rb +28 -0
  47. data/lib/bundler/index.rb +9 -4
  48. data/lib/bundler/inline.rb +3 -3
  49. data/lib/bundler/installer.rb +3 -2
  50. data/lib/bundler/installer/gem_installer.rb +2 -2
  51. data/lib/bundler/installer/parallel_installer.rb +40 -9
  52. data/lib/bundler/lazy_specification.rb +16 -1
  53. data/lib/bundler/lockfile_parser.rb +1 -2
  54. data/lib/bundler/match_platform.rb +12 -3
  55. data/lib/bundler/plugin.rb +4 -2
  56. data/lib/bundler/plugin/api.rb +2 -1
  57. data/lib/bundler/plugin/api/source.rb +1 -1
  58. data/lib/bundler/postit_trampoline.rb +12 -7
  59. data/lib/bundler/remote_specification.rb +5 -0
  60. data/lib/bundler/resolver.rb +59 -49
  61. data/lib/bundler/retry.rb +4 -1
  62. data/lib/bundler/ruby_version.rb +5 -0
  63. data/lib/bundler/rubygems_ext.rb +5 -0
  64. data/lib/bundler/rubygems_gem_installer.rb +60 -0
  65. data/lib/bundler/rubygems_integration.rb +28 -2
  66. data/lib/bundler/runtime.rb +2 -1
  67. data/lib/bundler/settings.rb +29 -5
  68. data/lib/bundler/setup.rb +1 -1
  69. data/lib/bundler/shared_helpers.rb +26 -15
  70. data/lib/bundler/source.rb +5 -0
  71. data/lib/bundler/source/git.rb +1 -1
  72. data/lib/bundler/source/git/git_proxy.rb +5 -0
  73. data/lib/bundler/source/path.rb +6 -1
  74. data/lib/bundler/source/rubygems.rb +11 -1
  75. data/lib/bundler/spec_set.rb +32 -13
  76. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  77. data/lib/bundler/templates/newgem/bin/console.tt +1 -1
  78. data/lib/bundler/templates/newgem/gitignore.tt +5 -0
  79. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +1 -1
  80. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +10 -1
  81. data/lib/bundler/ui/shell.rb +4 -0
  82. data/lib/bundler/ui/silent.rb +9 -0
  83. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +7 -0
  84. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +1 -1
  85. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -2
  86. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -2
  87. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +62 -0
  88. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
  89. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +12 -1
  90. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -2
  91. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  92. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  93. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +22 -13
  94. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/faster.rb +1 -0
  95. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/persistent.rb +24 -23
  96. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/persistent/ssl_reuse.rb +2 -1
  97. data/lib/bundler/vendored_persistent.rb +9 -4
  98. data/lib/bundler/version.rb +1 -1
  99. data/lib/bundler/worker.rb +27 -5
  100. data/lib/bundler/yaml_serializer.rb +1 -1
  101. data/man/bundle-config.ronn +29 -2
  102. data/man/bundle-install.ronn +1 -1
  103. data/man/bundle-lock.ronn +47 -0
  104. data/man/bundle-outdated.ronn +107 -0
  105. data/man/bundle-update.ronn +152 -3
  106. data/man/bundle.ronn +27 -9
  107. data/man/gemfile.5.ronn +8 -0
  108. metadata +37 -31
  109. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client.rb +0 -79
  110. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client/cache.rb +0 -112
  111. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client/updater.rb +0 -80
  112. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client/version.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 917c871afe7de2fbbfcc0e0a8181025aa76a134d
4
- data.tar.gz: 30a806e961d33a9c8e02a0d2466f9697982138e7
3
+ metadata.gz: 284650970c15e86a0fbd582c231218d8158c002c
4
+ data.tar.gz: 4c2be9c7aba084512db6d472a6741e7c0bcbe866
5
5
  SHA512:
6
- metadata.gz: 8eb69a4cb6714426aa8c18963e94a8bba44820b0e1c83041cb460361287f59ea3e2f4087c4ceacd36500ce0d9b3ed72e718cf4f9ee2da119b148b7fdf0046cc1
7
- data.tar.gz: 4a781a0b5e880e60f37174880adc36181bce9700a12deb29f938aecc53eff315e8ba6fadc7ce3024f706cdce7fe6ccdf14bb068495fbc806c10681c4a1733bcd
6
+ metadata.gz: 6162ce90ed291b285b1ecf9c31e7843c08565cd5d479b70c203b11f8e03c2a97a6c14200dd6951e19ad1b84b68216e196275356a0b14ee22556e21d21453613b
7
+ data.tar.gz: 42b0d4fe583dce12dad67acf0c28ac1d6a4798183fc5b8b88b05d2c513b2daf4b6bc760cb49e8ade0d683c40bc687f342d9a1e1620ef6c277b5b31c153e33f57
data/.gitignore CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
  # output from ronn
13
13
  /lib/bundler/man/
14
+ man/*
15
+ !man/*.ronn
14
16
 
15
17
  # rspec failure tracking
16
18
  .rspec_status
@@ -1,11 +1,17 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-07-27 12:41:39 -0500 using RuboCop version 0.41.2.
3
+ # on 2016-11-19 11:43:45 -0600 using RuboCop version 0.45.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
+ # Offense count: 2
10
+ Lint/EmptyWhen:
11
+ Exclude:
12
+ - 'lib/bundler/friendly_errors.rb'
13
+ - 'spec/support/builders.rb'
14
+
9
15
  # Offense count: 4
10
16
  Lint/Eval:
11
17
  Exclude:
@@ -41,6 +47,7 @@ Lint/RescueException:
41
47
  - 'lib/bundler/worker.rb'
42
48
 
43
49
  # Offense count: 1
50
+ # Configuration parameters: ContextCreatingMethods.
44
51
  Lint/UselessAccessModifier:
45
52
  Exclude:
46
53
  - 'lib/bundler/fetcher.rb'
@@ -51,17 +58,17 @@ Lint/UselessAssignment:
51
58
  - 'lib/bundler/index.rb'
52
59
  - 'lib/bundler/installer.rb'
53
60
 
54
- # Offense count: 1686
55
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
61
+ # Offense count: 7
62
+ # Configuration parameters: CountComments.
63
+ Metrics/BlockLength:
64
+ Max: 46
65
+
66
+ # Offense count: 1855
67
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives.
56
68
  # URISchemes: http, https
57
69
  Metrics/LineLength:
58
70
  Max: 207
59
71
 
60
- # Offense count: 3
61
- # Configuration parameters: CountKeywordArgs.
62
- Metrics/ParameterLists:
63
- Max: 6
64
-
65
72
  # Offense count: 6
66
73
  # Cop supports --auto-correct.
67
74
  Performance/RedundantBlockCall:
@@ -79,20 +86,19 @@ Performance/RedundantMatch:
79
86
  - 'lib/bundler/definition.rb'
80
87
  - 'lib/bundler/lockfile_parser.rb'
81
88
 
82
- # Offense count: 6
89
+ # Offense count: 5
83
90
  # Cop supports --auto-correct.
84
91
  # Configuration parameters: MaxKeyValuePairs.
85
92
  Performance/RedundantMerge:
86
93
  Exclude:
87
94
  - 'lib/bundler/cli/gem.rb'
88
- - 'spec/support/helpers.rb'
89
95
 
90
96
  # Offense count: 1
91
97
  Style/AccessorMethodName:
92
98
  Exclude:
93
99
  - 'lib/bundler/source/git.rb'
94
100
 
95
- # Offense count: 3
101
+ # Offense count: 4
96
102
  Style/CaseEquality:
97
103
  Exclude:
98
104
  - 'lib/bundler/dsl.rb'
@@ -105,7 +111,7 @@ Style/CaseEquality:
105
111
  Style/ClassAndModuleChildren:
106
112
  Enabled: false
107
113
 
108
- # Offense count: 10
114
+ # Offense count: 9
109
115
  # Cop supports --auto-correct.
110
116
  # Configuration parameters: EnforcedStyle, SupportedStyles, SingleLineConditionsOnly.
111
117
  # SupportedStyles: assign_to_condition, assign_inside_condition
@@ -113,7 +119,6 @@ Style/ConditionalAssignment:
113
119
  Exclude:
114
120
  - 'lib/bundler/cli.rb'
115
121
  - 'lib/bundler/cli/gem.rb'
116
- - 'lib/bundler/cli/lock.rb'
117
122
  - 'lib/bundler/cli/platform.rb'
118
123
  - 'lib/bundler/dsl.rb'
119
124
  - 'lib/bundler/lazy_specification.rb'
@@ -122,7 +127,7 @@ Style/ConditionalAssignment:
122
127
  - 'lib/bundler/source/git.rb'
123
128
  - 'lib/bundler/source/rubygems.rb'
124
129
 
125
- # Offense count: 138
130
+ # Offense count: 148
126
131
  Style/Documentation:
127
132
  Enabled: false
128
133
 
@@ -133,13 +138,32 @@ Style/ExtraSpacing:
133
138
  Exclude:
134
139
  - 'lib/bundler/cli.rb'
135
140
 
136
- # Offense count: 4
141
+ # Offense count: 2
137
142
  # Configuration parameters: AllowedVariables.
138
143
  Style/GlobalVars:
139
144
  Exclude:
140
145
  - 'lib/bundler/cli.rb'
141
146
  - 'spec/spec_helper.rb'
142
- - 'spec/support/helpers.rb'
147
+
148
+ # Offense count: 19
149
+ # Configuration parameters: MinBodyLength.
150
+ Style/GuardClause:
151
+ Exclude:
152
+ - 'lib/bundler/cli/cache.rb'
153
+ - 'lib/bundler/cli/clean.rb'
154
+ - 'lib/bundler/cli/install.rb'
155
+ - 'lib/bundler/cli/outdated.rb'
156
+ - 'lib/bundler/cli/package.rb'
157
+ - 'lib/bundler/definition.rb'
158
+ - 'lib/bundler/dsl.rb'
159
+ - 'lib/bundler/installer.rb'
160
+ - 'lib/bundler/lockfile_parser.rb'
161
+ - 'lib/bundler/runtime.rb'
162
+ - 'lib/bundler/shared_helpers.rb'
163
+ - 'lib/bundler/source/path/installer.rb'
164
+ - 'lib/bundler/source_list.rb'
165
+ - 'spec/commands/newgem_spec.rb'
166
+ - 'spec/support/sometimes.rb'
143
167
 
144
168
  # Offense count: 1
145
169
  Style/IfInsideElse:
@@ -151,13 +175,23 @@ Style/IfUnlessModifierOfIfUnless:
151
175
  Exclude:
152
176
  - 'spec/support/helpers.rb'
153
177
 
154
- # Offense count: 4
178
+ # Offense count: 10
155
179
  # Cop supports --auto-correct.
156
180
  # Configuration parameters: SupportedStyles, IndentationWidth.
157
181
  # SupportedStyles: special_inside_parentheses, consistent, align_brackets
158
182
  Style/IndentArray:
159
183
  EnforcedStyle: consistent
160
184
 
185
+ # Offense count: 6
186
+ Style/MethodMissing:
187
+ Exclude:
188
+ - 'lib/bundler/dep_proxy.rb'
189
+ - 'lib/bundler/dsl.rb'
190
+ - 'lib/bundler/lazy_specification.rb'
191
+ - 'lib/bundler/plugin/dsl.rb'
192
+ - 'lib/bundler/remote_specification.rb'
193
+ - 'spec/support/builders.rb'
194
+
161
195
  # Offense count: 2
162
196
  # Configuration parameters: EnforcedStyle, SupportedStyles.
163
197
  # SupportedStyles: module_function, extend_self
@@ -166,6 +200,17 @@ Style/ModuleFunction:
166
200
  - 'lib/bundler/shared_helpers.rb'
167
201
  - 'spec/support/path.rb'
168
202
 
203
+ # Offense count: 11
204
+ # Cop supports --auto-correct.
205
+ Style/MultilineIfModifier:
206
+ Exclude:
207
+ - 'bin/with_rubygems'
208
+ - 'lib/bundler/installer.rb'
209
+ - 'lib/bundler/psyched_yaml.rb'
210
+ - 'lib/bundler/rubygems_ext.rb'
211
+ - 'lib/bundler/runtime.rb'
212
+ - 'lib/bundler/source/rubygems.rb'
213
+
169
214
  # Offense count: 3
170
215
  # Cop supports --auto-correct.
171
216
  # Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
@@ -183,6 +228,18 @@ Style/NestedParenthesizedCalls:
183
228
  - 'spec/commands/lock_spec.rb'
184
229
  - 'spec/runtime/setup_spec.rb'
185
230
 
231
+ # Offense count: 6
232
+ # Cop supports --auto-correct.
233
+ # Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
234
+ # SupportedStyles: predicate, comparison
235
+ Style/NumericPredicate:
236
+ Exclude:
237
+ - 'spec/**/*'
238
+ - 'lib/bundler/gem_helper.rb'
239
+ - 'lib/bundler/mirror.rb'
240
+ - 'lib/bundler/source/git/git_proxy.rb'
241
+ - 'lib/bundler/source/path.rb'
242
+
186
243
  # Offense count: 9
187
244
  # Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
188
245
  # NamePrefix: is_, has_, have_
@@ -219,6 +276,23 @@ Style/SpaceAroundOperators:
219
276
  Exclude:
220
277
  - 'lib/bundler/retry.rb'
221
278
 
279
+ # Offense count: 1
280
+ # Cop supports --auto-correct.
281
+ # Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
282
+ # SupportedStyles: space, no_space
283
+ Style/SpaceInsideBlockBraces:
284
+ Exclude:
285
+ - 'lib/bundler/installer/parallel_installer.rb'
286
+
287
+ # Offense count: 2
288
+ # Cop supports --auto-correct.
289
+ # Configuration parameters: EnforcedStyle, SupportedStyles, AllowSafeAssignment.
290
+ # SupportedStyles: require_parentheses, require_no_parentheses
291
+ Style/TernaryParentheses:
292
+ Exclude:
293
+ - 'lib/bundler/cli/common.rb'
294
+ - 'lib/bundler/gem_version_promoter.rb'
295
+
222
296
  # Offense count: 10
223
297
  # Cop supports --auto-correct.
224
298
  # Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
@@ -245,4 +319,12 @@ Style/UnneededInterpolation:
245
319
  - 'spec/commands/exec_spec.rb'
246
320
  - 'spec/support/artifice/endpoint.rb'
247
321
  - 'spec/support/artifice/endpoint_500.rb'
248
- - 'spec/support/fakeweb/windows.rb'
322
+
323
+ # Offense count: 2
324
+ # Configuration parameters: SupportedStyles.
325
+ # SupportedStyles: snake_case, normalcase, non_integer
326
+ Style/VariableNumber:
327
+ EnforcedStyle: normalcase
328
+ Exclude:
329
+ - 'spec/commands/help_spec.rb'
330
+ - 'spec/other/ext_spec.rb'
@@ -13,11 +13,6 @@ branches:
13
13
  - /.+-stable$/
14
14
 
15
15
  notifications:
16
- email:
17
- # andre
18
- - secure: "bCcvqJT7YrBawtkXXwHhT+jOFth7r2Qv/30PkkbhQxk6Jb3xambjCOJ3U6vJ\ngYmiL50exi5lUp3oc3SEbHN5t2CrZqOZDQ6o7P8EAmB5c0oH2RrYaFOkI5Gt\nul/jGH/96A9sj0aMwG7JfdMSfhqj1DUKAm2PnnbXPL853VfmT24="
19
- # terence
20
- - secure: "MQ8eA5Jb8YzEpAo58DRGfVJklAPcEbAulpBZnTxp0am6ldneDtJHbQk21w6R\nj5GsDHlzr/lMp/GHIimtUZ7rLohfND8fj/W7fs1Dkd4eN02/ERt98x3pHlqv\nvZgSnZ39uVYv+OcphraE24QaRaGWLhWZAMYQTVe/Yz50NyG8g1U="
21
16
  slack:
22
17
  on_success: change
23
18
  on_failure: always
@@ -30,9 +25,10 @@ addons:
30
25
  secure: "TrzIv116JLGUxm6PAUskCYrv8KTDguncKROVwbnjVPKTGDAgoDderd8JUdDEXrKoZ9qGLD2TPYKExt9/QDl71E+qHdWnVqWv4HKCUk2P9z/VLKzHuggOUBkCXiJUhjywUieCJhI3N92bfq2EjSBbu2/OFHqWOjLQ+QCooTEBjv8="
31
26
 
32
27
  rvm:
33
- - 2.3.1
34
- - 2.2
35
- - 2.1
28
+ - 2.4.0
29
+ - 2.3.3
30
+ - 2.2.6
31
+ - 2.1.9
36
32
  - 2.0.0
37
33
  - 1.9.3
38
34
  - 1.8.7
@@ -43,14 +39,19 @@ env:
43
39
  # We need to know if changes to rubygems will break bundler on release
44
40
  - RGV=master
45
41
  # Test the latest rubygems release with all of our supported rubies
46
- - RGV=v2.6.4
47
- - RGV=v2.4.8
42
+ - RGV=v2.6.8
48
43
 
49
44
  matrix:
50
45
  include:
51
- # Ruby 2.2, Rubygems 2.4.5 and up (included by RGV above)
46
+ # Ruby 2.4, Rubygems 2.6.8 and up
47
+ # Ruby 2.3, Rubygems 2.5.1 and up
48
+ - rvm: 2.2.6
49
+ env: RGV=v2.5.2
50
+ # Ruby 2.2, Rubygems 2.4.5 and up
51
+ - rvm: 2.2.6
52
+ env: RGV=v2.4.8
52
53
  # Ruby 2.1, Rubygems 2.2.2 and up
53
- - rvm: 2.1
54
+ - rvm: 2.1.9
54
55
  env: RGV=v2.2.5
55
56
  # Ruby 2.0.0, Rubygems 2.0.0 and up
56
57
  - rvm: 2.0.0
@@ -74,9 +75,12 @@ matrix:
74
75
  env: RGV=v1.6.2
75
76
  - rvm: 1.9.3
76
77
  env: RGV=v1.5.3
78
+
77
79
  # Ruby 1.8.7, Rubygems 1.3.6 and up
78
80
  - rvm: 1.8.7
79
81
  env: RGV=v2.2.5
82
+ # ALLOWED FAILURES
83
+ # since the great Travis image outage, frequent random segfaults :'(
80
84
  - rvm: 1.8.7
81
85
  env: RGV=v2.0.14
82
86
  - rvm: 1.8.7
@@ -93,16 +97,26 @@ matrix:
93
97
  env: RGV=v1.3.7
94
98
  - rvm: 1.8.7
95
99
  env: RGV=v1.3.6
96
-
97
- # ALLOWED FAILURES
98
- # For no apparent reason, this often goes over the Travis limit
99
- - rvm: 1.8.7
100
- env: RGV=v2.1.11
101
100
  # Ruby-head (we want to know how we're doing, but not fail the build)
102
101
  - rvm: ruby-head
103
102
  env: RGV=master
104
103
 
105
104
  allow_failures:
106
105
  - rvm: 1.8.7
107
- env: RGV=v2.1.11
106
+ env: RGV=v2.0.14
107
+ - rvm: 1.8.7
108
+ env: RGV=v1.8.29
109
+ - rvm: 1.8.7
110
+ env: RGV=v1.7.2
111
+ - rvm: 1.8.7
112
+ env: RGV=v1.6.2
113
+ - rvm: 1.8.7
114
+ env: RGV=v1.5.3
115
+ - rvm: 1.8.7
116
+ env: RGV=v1.4.2
117
+ - rvm: 1.8.7
118
+ env: RGV=v1.3.7
119
+ - rvm: 1.8.7
120
+ env: RGV=v1.3.6
108
121
  - rvm: ruby-head
122
+ env: RGV=master
@@ -1,3 +1,60 @@
1
+ ## 1.14.0.pre.1
2
+
3
+ Features:
4
+
5
+ - `bundle doctor` first runs `bundle check` (@segiddins)
6
+ - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
7
+ - gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
8
+ - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
9
+ - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
10
+ - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
11
+ - always prompt the user for a password when using `sudo` (#3006, @segiddins)
12
+ - support running without a home directory (#4778, @segiddins)
13
+ - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
14
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
15
+ - add conservative update options to `bundle lock` (#4912, @chrismo)
16
+ - improve `bundle outdated` output to group gems by group (@ryanfox1985)
17
+ - add conservative update options to `bundle update` (#5065, #5076, @chrismo)
18
+ - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
19
+ - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
20
+ - add support for the `ruby_25` gemfile filter (@amatsuda)
21
+ - when installing with a lockfile that is missing dependencies, allow installation to proceed (but without parallelism) (@segiddins)
22
+
23
+ Performance:
24
+
25
+ - improve `require "bundler"` performance by ~5x (@segiddins)
26
+ - allow install gems in parallel when running on rubygems 2+
27
+
28
+ Bugfixes:
29
+
30
+ - config files with CRLF line endings can be read (#4435, @segiddins)
31
+ - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
32
+ - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
33
+ - fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
34
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
35
+ - `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
36
+ - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
37
+ - print friendly filesystem access errors in the new index (@segiddins)
38
+ - print a helpful error when running out of memory on jruby (#4673, @segiddins)
39
+ - load all rubygems plugins when installing gems (#2824, @segiddins)
40
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
41
+ - local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
42
+ - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
43
+ - print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
44
+ - ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
45
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
46
+ - allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
47
+ - ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
48
+ - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
49
+ - fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
50
+ - fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
51
+ - fix `bundle lock --add-platform ruby` (#5230, @segiddins)
52
+ - print gem post-install messages when running `bundle update` (@smathy)
53
+ - ensure errors due to a retries are all separated by a newline (@segiddins)
54
+ - print out the bundle path in gem not found errors (#4854, @diegosteiner)
55
+ - fail gracefully when creating threads fails (@segiddins)
56
+ - avoid downloading metadata for gems that are only development dependencies (@Paxa)
57
+
1
58
  ## 1.13.7 (2016-12-25)
2
59
 
3
60
  Features:
@@ -41,7 +98,7 @@ Bugfixes:
41
98
  - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
42
99
  - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
43
100
  - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
44
- - fix invoking bundler with binstubs generated by RubyGems 2.6.2+ (#4974, @chrismo)
101
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
45
102
 
46
103
  Performance:
47
104
 
@@ -71,7 +128,7 @@ Features:
71
128
  - print gem installation errors after other install output (#4834, @segiddins)
72
129
  - add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
73
130
  - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
74
- - expanded expirimental plugin support to include hooks and sources (@asutoshpalai)
131
+ - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
75
132
 
76
133
  Bugfixes:
77
134
 
@@ -149,6 +206,11 @@ Bugfixes:
149
206
  - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
150
207
  - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
151
208
 
209
+ ## 1.12.6 (2016-10-10)
210
+
211
+ Bugfixes:
212
+ - add support for weak etags to the new index (@segiddins)
213
+
152
214
  ## 1.12.5 (2016-05-25)
153
215
 
154
216
  Bugfixes:
@@ -12,7 +12,7 @@ If you have any questions after reading this page, please feel free to contact e
12
12
 
13
13
  ## How you can help
14
14
 
15
- We track [small bugs and features](https://github.com/bundler/bundler/issues?labels=small) so that anyone who wants to help can start with something that's not too overwhelming. We also keep a [list of things anyone can help with, any time](https://github.com/bundler/bundler/blob/master/CONTRIBUTING.md#contributing). If nothing on those lists looks good, talk to us, and we'll figure out what you can help with. We can absolutely use your help, no matter what level of programming skill you have at the moment.
15
+ We track [small bugs and features](https://github.com/bundler/bundler/labels/contribution%3A%20small) so that anyone who wants to help can start with something that's not too overwhelming. We also keep a [list of things anyone can help with, any time](https://github.com/bundler/bundler/blob/master/CONTRIBUTING.md#contributing). If nothing on those lists looks good, talk to us, and we'll figure out what you can help with. We can absolutely use your help, no matter what level of programming skill you have at the moment.
16
16
 
17
17
  # Development setup
18
18
 
@@ -36,9 +36,11 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
36
36
 
37
37
  4. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias:
38
38
 
39
- $ alias dbundle='BUNDLE_DISABLE_POSTIT=1 ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'
39
+ $ alias dbundle='BUNDLE_TRAMPOLINE_DISABLE=1 ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'
40
40
 
41
- The `BUNDLE_DISABLE_POSTIT` environment variable ensures that the version of Bundler in `/path/to/bundler/lib` will be used. Without that environment setting, Bundler will automatically download, install, and run the version of Bundler listed in `Gemfile.lock`. With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
41
+ The `BUNDLE_TRAMPOLINE_DISABLE` environment variable ensures that the version of Bundler in `/path/to/bundler/lib` will be used. Without that environment setting, Bundler will automatically download, install, and run the version of Bundler listed in `Gemfile.lock`. With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
42
+
43
+ To dive into the code with Pry: `RUBYOPT=-rpry dbundle` to require pry and then run commands.
42
44
 
43
45
  # Submitting Pull Requests
44
46