bundler 1.0.0.rc.5 → 1.0.0.rc.6

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 (81) hide show
  1. data/CHANGELOG.md +18 -0
  2. data/ISSUES.md +30 -0
  3. data/README.md +3 -64
  4. data/lib/bundler.rb +33 -5
  5. data/lib/bundler/capistrano.rb +26 -5
  6. data/lib/bundler/cli.rb +41 -1
  7. data/lib/bundler/dsl.rb +1 -0
  8. data/lib/bundler/gem_helper.rb +18 -26
  9. data/lib/bundler/man/bundle +96 -0
  10. data/lib/bundler/man/bundle-config +92 -0
  11. data/lib/bundler/man/bundle-config.txt +108 -0
  12. data/lib/bundler/man/bundle-exec +107 -0
  13. data/lib/bundler/man/bundle-exec.txt +115 -0
  14. data/lib/bundler/man/bundle-install +280 -0
  15. data/lib/bundler/man/bundle-install.txt +331 -0
  16. data/lib/bundler/man/bundle-package +49 -0
  17. data/lib/bundler/man/bundle-package.txt +66 -0
  18. data/lib/bundler/man/bundle-update +202 -0
  19. data/lib/bundler/man/bundle-update.txt +207 -0
  20. data/lib/bundler/man/bundle.txt +83 -0
  21. data/lib/bundler/man/gemfile.5 +343 -0
  22. data/lib/bundler/man/gemfile.5.txt +317 -0
  23. data/lib/bundler/source.rb +4 -25
  24. data/lib/bundler/templates/Executable +1 -1
  25. data/lib/bundler/templates/Gemfile +2 -2
  26. data/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  27. data/lib/bundler/templates/newgem/Rakefile.tt +1 -1
  28. data/lib/bundler/templates/newgem/gitignore.tt +2 -1
  29. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +7 -3
  30. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -3
  31. data/lib/bundler/templates/newgem/newgem.gemspec.tt +3 -4
  32. data/lib/bundler/vendor/thor/parser/options.rb +9 -1
  33. data/lib/bundler/vendor/thor/shell.rb +1 -1
  34. data/lib/bundler/vendor/thor/util.rb +2 -2
  35. data/lib/bundler/version.rb +1 -1
  36. metadata +22 -48
  37. data/TODO.md +0 -13
  38. data/bin/bundle.compiled.rbc +0 -486
  39. data/lib/bundler.rbc +0 -5691
  40. data/lib/bundler/cli.rbc +0 -10105
  41. data/lib/bundler/definition.rbc +0 -9423
  42. data/lib/bundler/dependency.rbc +0 -2650
  43. data/lib/bundler/dsl.rbc +0 -5861
  44. data/lib/bundler/environment.rbc +0 -923
  45. data/lib/bundler/index.rbc +0 -0
  46. data/lib/bundler/installer.rbc +0 -1634
  47. data/lib/bundler/lazy_specification.rbc +0 -1721
  48. data/lib/bundler/lockfile_parser.rbc +0 -2524
  49. data/lib/bundler/remote_specification.rbc +0 -1058
  50. data/lib/bundler/resolver.rbc +0 -9067
  51. data/lib/bundler/rubygems_ext.rbc +0 -4490
  52. data/lib/bundler/runtime.rbc +0 -3350
  53. data/lib/bundler/settings.rbc +0 -2951
  54. data/lib/bundler/shared_helpers.rbc +0 -3614
  55. data/lib/bundler/source.rbc +0 -15697
  56. data/lib/bundler/spec_set.rbc +0 -3394
  57. data/lib/bundler/ui.rbc +0 -1407
  58. data/lib/bundler/vendor/thor.rbc +0 -5037
  59. data/lib/bundler/vendor/thor/actions.rbc +0 -4782
  60. data/lib/bundler/vendor/thor/actions/create_file.rbc +0 -1672
  61. data/lib/bundler/vendor/thor/actions/directory.rbc +0 -1477
  62. data/lib/bundler/vendor/thor/actions/empty_directory.rbc +0 -1773
  63. data/lib/bundler/vendor/thor/actions/file_manipulation.rbc +0 -2877
  64. data/lib/bundler/vendor/thor/actions/inject_into_file.rbc +0 -1764
  65. data/lib/bundler/vendor/thor/base.rbc +0 -7795
  66. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rbc +0 -271
  67. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rbc +0 -1395
  68. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rbc +0 -1862
  69. data/lib/bundler/vendor/thor/error.rbc +0 -240
  70. data/lib/bundler/vendor/thor/invocation.rbc +0 -2050
  71. data/lib/bundler/vendor/thor/parser.rbc +0 -101
  72. data/lib/bundler/vendor/thor/parser/argument.rbc +0 -1445
  73. data/lib/bundler/vendor/thor/parser/arguments.rbc +0 -2661
  74. data/lib/bundler/vendor/thor/parser/option.rbc +0 -2007
  75. data/lib/bundler/vendor/thor/parser/options.rbc +0 -3429
  76. data/lib/bundler/vendor/thor/shell.rbc +0 -1486
  77. data/lib/bundler/vendor/thor/shell/basic.rbc +0 -4872
  78. data/lib/bundler/vendor/thor/shell/color.rbc +0 -1659
  79. data/lib/bundler/vendor/thor/task.rbc +0 -2900
  80. data/lib/bundler/vendor/thor/util.rbc +0 -3196
  81. data/lib/bundler/version.rbc +0 -175
@@ -8,7 +8,7 @@ class Thor
8
8
  def self.shell
9
9
  @shell ||= if ENV['THOR_SHELL'] && ENV['THOR_SHELL'].size > 0
10
10
  Thor::Shell.const_get(ENV['THOR_SHELL'])
11
- elsif Config::CONFIG['host_os'] =~ /mswin|mingw/
11
+ elsif RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
12
12
  Thor::Shell::Basic
13
13
  else
14
14
  Thor::Shell::Color
@@ -216,8 +216,8 @@ class Thor
216
216
  #
217
217
  def self.ruby_command
218
218
  @ruby_command ||= begin
219
- ruby = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
220
- ruby << Config::CONFIG['EXEEXT']
219
+ ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name'])
220
+ ruby << RbConfig::CONFIG['EXEEXT']
221
221
 
222
222
  # escape string in case path to ruby executable contain spaces.
223
223
  ruby.sub!(/.*\s.*/m, '"\&"')
@@ -2,5 +2,5 @@ module Bundler
2
2
  # We're doing this because we might write tests that deal
3
3
  # with other versions of bundler and we are unsure how to
4
4
  # handle this better.
5
- VERSION = "1.0.0.rc.5" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.0.0.rc.6" unless defined?(::Bundler::VERSION)
6
6
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 15424057
4
5
  prerelease: true
5
6
  segments:
6
7
  - 1
7
8
  - 0
8
9
  - 0
9
10
  - rc
10
- - 5
11
- version: 1.0.0.rc.5
11
+ - 6
12
+ version: 1.0.0.rc.6
12
13
  platform: ruby
13
14
  authors:
14
15
  - Carl Lerche
@@ -18,7 +19,7 @@ autorequire:
18
19
  bindir: bin
19
20
  cert_chain: []
20
21
 
21
- date: 2010-08-10 00:00:00 -07:00
22
+ date: 2010-08-23 00:00:00 -07:00
22
23
  default_executable:
23
24
  dependencies:
24
25
  - !ruby/object:Gem::Dependency
@@ -29,6 +30,7 @@ dependencies:
29
30
  requirements:
30
31
  - - ">="
31
32
  - !ruby/object:Gem::Version
33
+ hash: 3
32
34
  segments:
33
35
  - 0
34
36
  version: "0"
@@ -45,45 +47,41 @@ extra_rdoc_files: []
45
47
 
46
48
  files:
47
49
  - bin/bundle
48
- - bin/bundle.compiled.rbc
49
50
  - lib/bundler/capistrano.rb
50
51
  - lib/bundler/cli.rb
51
- - lib/bundler/cli.rbc
52
52
  - lib/bundler/definition.rb
53
- - lib/bundler/definition.rbc
54
53
  - lib/bundler/dependency.rb
55
- - lib/bundler/dependency.rbc
56
54
  - lib/bundler/dsl.rb
57
- - lib/bundler/dsl.rbc
58
55
  - lib/bundler/environment.rb
59
- - lib/bundler/environment.rbc
60
56
  - lib/bundler/gem_helper.rb
61
57
  - lib/bundler/graph.rb
62
58
  - lib/bundler/index.rb
63
- - lib/bundler/index.rbc
64
59
  - lib/bundler/installer.rb
65
- - lib/bundler/installer.rbc
66
60
  - lib/bundler/lazy_specification.rb
67
- - lib/bundler/lazy_specification.rbc
68
61
  - lib/bundler/lockfile_parser.rb
69
- - lib/bundler/lockfile_parser.rbc
62
+ - lib/bundler/man/bundle
63
+ - lib/bundler/man/bundle-config
64
+ - lib/bundler/man/bundle-config.txt
65
+ - lib/bundler/man/bundle-exec
66
+ - lib/bundler/man/bundle-exec.txt
67
+ - lib/bundler/man/bundle-install
68
+ - lib/bundler/man/bundle-install.txt
69
+ - lib/bundler/man/bundle-package
70
+ - lib/bundler/man/bundle-package.txt
71
+ - lib/bundler/man/bundle-update
72
+ - lib/bundler/man/bundle-update.txt
73
+ - lib/bundler/man/bundle.txt
74
+ - lib/bundler/man/gemfile.5
75
+ - lib/bundler/man/gemfile.5.txt
70
76
  - lib/bundler/remote_specification.rb
71
- - lib/bundler/remote_specification.rbc
72
77
  - lib/bundler/resolver.rb
73
- - lib/bundler/resolver.rbc
74
78
  - lib/bundler/rubygems_ext.rb
75
- - lib/bundler/rubygems_ext.rbc
76
79
  - lib/bundler/runtime.rb
77
- - lib/bundler/runtime.rbc
78
80
  - lib/bundler/settings.rb
79
- - lib/bundler/settings.rbc
80
81
  - lib/bundler/setup.rb
81
82
  - lib/bundler/shared_helpers.rb
82
- - lib/bundler/shared_helpers.rbc
83
83
  - lib/bundler/source.rb
84
- - lib/bundler/source.rbc
85
84
  - lib/bundler/spec_set.rb
86
- - lib/bundler/spec_set.rbc
87
85
  - lib/bundler/templates/Executable
88
86
  - lib/bundler/templates/Gemfile
89
87
  - lib/bundler/templates/newgem/Gemfile.tt
@@ -93,64 +91,38 @@ files:
93
91
  - lib/bundler/templates/newgem/newgem.gemspec.tt
94
92
  - lib/bundler/templates/newgem/Rakefile.tt
95
93
  - lib/bundler/ui.rb
96
- - lib/bundler/ui.rbc
97
94
  - lib/bundler/vendor/thor/actions/create_file.rb
98
- - lib/bundler/vendor/thor/actions/create_file.rbc
99
95
  - lib/bundler/vendor/thor/actions/directory.rb
100
- - lib/bundler/vendor/thor/actions/directory.rbc
101
96
  - lib/bundler/vendor/thor/actions/empty_directory.rb
102
- - lib/bundler/vendor/thor/actions/empty_directory.rbc
103
97
  - lib/bundler/vendor/thor/actions/file_manipulation.rb
104
- - lib/bundler/vendor/thor/actions/file_manipulation.rbc
105
98
  - lib/bundler/vendor/thor/actions/inject_into_file.rb
106
- - lib/bundler/vendor/thor/actions/inject_into_file.rbc
107
99
  - lib/bundler/vendor/thor/actions.rb
108
- - lib/bundler/vendor/thor/actions.rbc
109
100
  - lib/bundler/vendor/thor/base.rb
110
- - lib/bundler/vendor/thor/base.rbc
111
101
  - lib/bundler/vendor/thor/core_ext/file_binary_read.rb
112
- - lib/bundler/vendor/thor/core_ext/file_binary_read.rbc
113
102
  - lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
114
- - lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rbc
115
103
  - lib/bundler/vendor/thor/core_ext/ordered_hash.rb
116
- - lib/bundler/vendor/thor/core_ext/ordered_hash.rbc
117
104
  - lib/bundler/vendor/thor/error.rb
118
- - lib/bundler/vendor/thor/error.rbc
119
105
  - lib/bundler/vendor/thor/invocation.rb
120
- - lib/bundler/vendor/thor/invocation.rbc
121
106
  - lib/bundler/vendor/thor/parser/argument.rb
122
- - lib/bundler/vendor/thor/parser/argument.rbc
123
107
  - lib/bundler/vendor/thor/parser/arguments.rb
124
- - lib/bundler/vendor/thor/parser/arguments.rbc
125
108
  - lib/bundler/vendor/thor/parser/option.rb
126
- - lib/bundler/vendor/thor/parser/option.rbc
127
109
  - lib/bundler/vendor/thor/parser/options.rb
128
- - lib/bundler/vendor/thor/parser/options.rbc
129
110
  - lib/bundler/vendor/thor/parser.rb
130
- - lib/bundler/vendor/thor/parser.rbc
131
111
  - lib/bundler/vendor/thor/shell/basic.rb
132
- - lib/bundler/vendor/thor/shell/basic.rbc
133
112
  - lib/bundler/vendor/thor/shell/color.rb
134
- - lib/bundler/vendor/thor/shell/color.rbc
135
113
  - lib/bundler/vendor/thor/shell/html.rb
136
114
  - lib/bundler/vendor/thor/shell.rb
137
- - lib/bundler/vendor/thor/shell.rbc
138
115
  - lib/bundler/vendor/thor/task.rb
139
- - lib/bundler/vendor/thor/task.rbc
140
116
  - lib/bundler/vendor/thor/util.rb
141
- - lib/bundler/vendor/thor/util.rbc
142
117
  - lib/bundler/vendor/thor/version.rb
143
118
  - lib/bundler/vendor/thor.rb
144
- - lib/bundler/vendor/thor.rbc
145
119
  - lib/bundler/version.rb
146
- - lib/bundler/version.rbc
147
120
  - lib/bundler.rb
148
- - lib/bundler.rbc
149
121
  - LICENSE
150
122
  - README.md
151
123
  - ROADMAP.md
152
124
  - CHANGELOG.md
153
- - TODO.md
125
+ - ISSUES.md
154
126
  has_rdoc: true
155
127
  homepage: http://gembundler.com
156
128
  licenses: []
@@ -165,6 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
137
  requirements:
166
138
  - - ">="
167
139
  - !ruby/object:Gem::Version
140
+ hash: 3
168
141
  segments:
169
142
  - 0
170
143
  version: "0"
@@ -173,6 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
146
  requirements:
174
147
  - - ">="
175
148
  - !ruby/object:Gem::Version
149
+ hash: 23
176
150
  segments:
177
151
  - 1
178
152
  - 3
data/TODO.md DELETED
@@ -1,13 +0,0 @@
1
- ## Bundler TODO list
2
-
3
- - Cache Git repositories
4
- - Build options
5
- - A gem shit list
6
- - Interactive mode for bundle (install) to work out conflicts
7
- - bundle irb / bundle ruby / bundle [whatever] -> bundle exec
8
- - Generate a bundle stub into the application
9
- - bundle install --production
10
- - (recommend symlinking vendor/bundle to a shared location for perf)
11
- - defaults to bundle install vendor/bundle --disable-shared-gems
12
- - if vendor/cache exists, defaults to --local
13
- - disallow modifications to Gemfile.lock
@@ -1,486 +0,0 @@
1
- !RBIX
2
- 0
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 183
13
- 5
14
- 7
15
- 0
16
- 64
17
- 47
18
- 49
19
- 1
20
- 1
21
- 15
22
- 99
23
- 43
24
- 2
25
- 7
26
- 3
27
- 49
28
- 4
29
- 1
30
- 56
31
- 5
32
- 50
33
- 6
34
- 0
35
- 15
36
- 5
37
- 7
38
- 7
39
- 64
40
- 47
41
- 49
42
- 1
43
- 1
44
- 15
45
- 26
46
- 93
47
- 0
48
- 15
49
- 29
50
- 50
51
- 0
52
- 45
53
- 8
54
- 9
55
- 43
56
- 10
57
- 49
58
- 11
59
- 0
60
- 30
61
- 8
62
- 177
63
- 26
64
- 93
65
- 1
66
- 15
67
- 24
68
- 13
69
- 45
70
- 8
71
- 12
72
- 43
73
- 13
74
- 12
75
- 49
76
- 14
77
- 1
78
- 10
79
- 69
80
- 8
81
- 137
82
- 15
83
- 24
84
- 19
85
- 0
86
- 15
87
- 45
88
- 8
89
- 15
90
- 49
91
- 16
92
- 0
93
- 20
94
- 0
95
- 49
96
- 17
97
- 0
98
- 49
99
- 18
100
- 1
101
- 15
102
- 45
103
- 19
104
- 20
105
- 7
106
- 21
107
- 64
108
- 49
109
- 4
110
- 1
111
- 9
112
- 122
113
- 45
114
- 8
115
- 22
116
- 49
117
- 16
118
- 0
119
- 20
120
- 0
121
- 49
122
- 23
123
- 0
124
- 7
125
- 24
126
- 64
127
- 49
128
- 25
129
- 1
130
- 49
131
- 18
132
- 1
133
- 8
134
- 123
135
- 1
136
- 15
137
- 5
138
- 20
139
- 0
140
- 49
141
- 26
142
- 0
143
- 47
144
- 49
145
- 27
146
- 1
147
- 25
148
- 8
149
- 177
150
- 13
151
- 45
152
- 28
153
- 29
154
- 12
155
- 49
156
- 14
157
- 1
158
- 10
159
- 149
160
- 8
161
- 172
162
- 15
163
- 45
164
- 8
165
- 30
166
- 49
167
- 16
168
- 0
169
- 7
170
- 31
171
- 64
172
- 49
173
- 18
174
- 1
175
- 15
176
- 5
177
- 79
178
- 47
179
- 49
180
- 27
181
- 1
182
- 25
183
- 8
184
- 177
185
- 15
186
- 92
187
- 1
188
- 27
189
- 34
190
- 92
191
- 0
192
- 27
193
- 15
194
- 2
195
- 11
196
- I
197
- 6
198
- I
199
- 1
200
- I
201
- 0
202
- I
203
- 0
204
- n
205
- p
206
- 32
207
- s
208
- 7
209
- bundler
210
- x
211
- 7
212
- require
213
- x
214
- 7
215
- Globals
216
- x
217
- 2
218
- $:
219
- x
220
- 2
221
- []
222
- M
223
- 1
224
- p
225
- 2
226
- x
227
- 9
228
- for_block
229
- t
230
- n
231
- x
232
- 9
233
- __block__
234
- i
235
- 58
236
- 57
237
- 19
238
- 0
239
- 15
240
- 20
241
- 0
242
- 7
243
- 0
244
- 13
245
- 70
246
- 9
247
- 24
248
- 15
249
- 44
250
- 43
251
- 1
252
- 7
253
- 2
254
- 78
255
- 49
256
- 3
257
- 2
258
- 6
259
- 0
260
- 49
261
- 4
262
- 1
263
- 13
264
- 9
265
- 44
266
- 15
267
- 4
268
- 5
269
- 78
270
- 98
271
- 5
272
- 2
273
- 49
274
- 6
275
- 0
276
- 4
277
- 9
278
- 84
279
- 7
280
- 9
281
- 56
282
- 5
283
- 7
284
- 8
285
- 64
286
- 47
287
- 49
288
- 9
289
- 1
290
- 8
291
- 57
292
- 1
293
- 11
294
- I
295
- 6
296
- I
297
- 1
298
- I
299
- 1
300
- I
301
- 1
302
- n
303
- p
304
- 10
305
- n
306
- x
307
- 6
308
- Regexp
309
- s
310
- 16
311
- /bundler-0.(\d+)
312
- x
313
- 3
314
- new
315
- x
316
- 2
317
- =~
318
- x
319
- 24
320
- regexp_last_match_result
321
- x
322
- 4
323
- to_i
324
- x
325
- 1
326
- <
327
- s
328
- 91
329
- Please remove older versions of bundler. This can be done by running `gem cleanup bundler`.
330
- x
331
- 5
332
- abort
333
- p
334
- 9
335
- I
336
- 0
337
- I
338
- 5
339
- I
340
- 4
341
- I
342
- 6
343
- I
344
- 2e
345
- I
346
- 7
347
- I
348
- 38
349
- I
350
- 6
351
- I
352
- 3a
353
- x
354
- 53
355
- /Users/carllerche/Developer/Source/bundler/bin/bundle
356
- p
357
- 1
358
- x
359
- 4
360
- path
361
- x
362
- 4
363
- each
364
- s
365
- 11
366
- bundler/cli
367
- x
368
- 7
369
- Bundler
370
- n
371
- x
372
- 3
373
- CLI
374
- x
375
- 5
376
- start
377
- n
378
- x
379
- 12
380
- BundlerError
381
- x
382
- 3
383
- ===
384
- n
385
- x
386
- 2
387
- ui
388
- x
389
- 7
390
- message
391
- x
392
- 5
393
- error
394
- x
395
- 3
396
- ENV
397
- n
398
- s
399
- 12
400
- BUNDLE_DEBUG
401
- n
402
- x
403
- 9
404
- backtrace
405
- s
406
- 1
407
-
408
-
409
- x
410
- 4
411
- join
412
- x
413
- 11
414
- status_code
415
- x
416
- 4
417
- exit
418
- x
419
- 9
420
- Interrupt
421
- n
422
- n
423
- s
424
- 12
425
-
426
- Quitting...
427
- p
428
- 25
429
- I
430
- 0
431
- I
432
- 4
433
- I
434
- 9
435
- I
436
- 5
437
- I
438
- 17
439
- I
440
- a
441
- I
442
- 20
443
- I
444
- d
445
- I
446
- 37
447
- I
448
- e
449
- I
450
- 46
451
- I
452
- 15
453
- I
454
- 4a
455
- I
456
- f
457
- I
458
- 59
459
- I
460
- 10
461
- I
462
- 7c
463
- I
464
- 11
465
- I
466
- 89
467
- I
468
- 12
469
- I
470
- 96
471
- I
472
- 13
473
- I
474
- a3
475
- I
476
- 14
477
- I
478
- b7
479
- x
480
- 53
481
- /Users/carllerche/Developer/Source/bundler/bin/bundle
482
- p
483
- 1
484
- x
485
- 1
486
- e