rake 10.1.1 → 10.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rake might be problematic. Click here for more details.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +2 -0
- data/.rubocop.yml +27 -0
- data/.togglerc +7 -0
- data/Gemfile +5 -0
- data/{CHANGES → History.rdoc} +84 -54
- data/Manifest.txt +161 -0
- data/README.rdoc +9 -10
- data/Rakefile +34 -337
- data/doc/command_line_usage.rdoc +16 -10
- data/doc/rake.1.gz +0 -0
- data/doc/rakefile.rdoc +72 -36
- data/doc/release_notes/rake-0.5.3.rdoc +1 -1
- data/doc/release_notes/rake-0.5.4.rdoc +1 -1
- data/doc/release_notes/rake-0.8.6.rdoc +1 -19
- data/doc/release_notes/rake-0.9.2.2.rdoc +2 -2
- data/doc/release_notes/rake-0.9.4.rdoc +0 -50
- data/doc/release_notes/rake-0.9.5.rdoc +0 -59
- data/doc/release_notes/rake-0.9.6.rdoc +0 -63
- data/doc/release_notes/rake-10.0.1.rdoc +2 -131
- data/doc/release_notes/rake-10.0.2.rdoc +2 -140
- data/doc/release_notes/rake-10.1.0.rdoc +2 -2
- data/lib/rake.rb +6 -1
- data/lib/rake/alt_system.rb +5 -3
- data/lib/rake/application.rb +102 -60
- data/lib/rake/backtrace.rb +1 -1
- data/lib/rake/cloneable.rb +3 -3
- data/lib/rake/contrib/.document +0 -0
- data/lib/rake/contrib/ftptools.rb +3 -5
- data/lib/rake/contrib/publisher.rb +12 -4
- data/lib/rake/contrib/rubyforgepublisher.rb +3 -1
- data/lib/rake/contrib/sshpublisher.rb +13 -2
- data/lib/rake/contrib/sys.rb +2 -0
- data/lib/rake/cpu_counter.rb +104 -0
- data/lib/rake/default_loader.rb +4 -0
- data/lib/rake/dsl_definition.rb +58 -17
- data/lib/rake/early_time.rb +4 -1
- data/lib/rake/ext/core.rb +2 -5
- data/lib/rake/ext/module.rb +1 -0
- data/lib/rake/ext/string.rb +35 -28
- data/lib/rake/ext/time.rb +1 -1
- data/lib/rake/file_list.rb +7 -9
- data/lib/rake/file_task.rb +1 -1
- data/lib/rake/gempackagetask.rb +3 -1
- data/lib/rake/invocation_chain.rb +0 -1
- data/lib/rake/linked_list.rb +1 -1
- data/lib/rake/packagetask.rb +19 -7
- data/lib/rake/pathmap.rb +2 -0
- data/lib/rake/pseudo_status.rb +2 -2
- data/lib/rake/rake_module.rb +6 -5
- data/lib/rake/rdoctask.rb +2 -0
- data/lib/rake/ruby182_test_unit_fix.rb +2 -0
- data/lib/rake/runtest.rb +6 -1
- data/lib/rake/scope.rb +1 -1
- data/lib/rake/task.rb +14 -9
- data/lib/rake/task_arguments.rb +19 -10
- data/lib/rake/task_manager.rb +20 -8
- data/lib/rake/tasklib.rb +2 -0
- data/lib/rake/testtask.rb +20 -9
- data/lib/rake/thread_pool.rb +13 -10
- data/lib/rake/trace_output.rb +1 -1
- data/lib/rake/version.rb +0 -2
- data/lib/rake/win32.rb +1 -1
- data/rakelib/publish.rake +20 -0
- data/rakelib/test_times.rake +25 -0
- data/test/helper.rb +6 -7
- data/test/support/rakefile_definitions.rb +34 -0
- data/test/test_rake_application.rb +89 -31
- data/test/test_rake_application_options.rb +13 -4
- data/test/test_rake_backtrace.rb +6 -2
- data/test/test_rake_clean.rb +3 -3
- data/test/test_rake_cpu_counter.rb +42 -0
- data/test/test_rake_file_task.rb +10 -0
- data/test/test_rake_functional.rb +17 -1
- data/test/test_rake_path_map.rb +2 -2
- data/test/test_rake_rules.rb +26 -0
- data/test/test_rake_task.rb +16 -0
- data/test/test_rake_task_argument_parsing.rb +6 -0
- data/test/test_rake_task_arguments.rb +6 -0
- data/test/test_rake_task_manager.rb +20 -0
- data/test/test_rake_test_task.rb +23 -1
- metadata +196 -72
- metadata.gz.sig +0 -0
- data/TODO +0 -21
- data/install.rb +0 -80
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b00684be542fa249d7e2c7539f60a22d8125316
|
4
|
+
data.tar.gz: 6b852a9a2211a2ccf2ba99d1f80b231bd710a2c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1063cea22808d157107e1a3a4601ae2ba6b8b79c905d25234911c4f7e9c15a145a1a717eeddbf336fae95023138a99e921d91e0bb82da5bb97c6f53c9626516
|
7
|
+
data.tar.gz: 4e336a918d4c1ca528bb556530a6d26014352dfb24efe0fcefb5160299e99be0f27c762369c473d19168eac1cb32285f634b70ff73d9028e7064bdae7688c5da
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
StringLiterals:
|
2
|
+
Enabled: false
|
3
|
+
|
4
|
+
MultilineBlocks:
|
5
|
+
Enabled: false
|
6
|
+
|
7
|
+
SingleLineBlocks:
|
8
|
+
Enabled: false
|
9
|
+
|
10
|
+
NewLambdaLiteral:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
SpaceAroundEqualsInParameterDefault:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
HashSyntax:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
LineLength:
|
20
|
+
Enabled: true
|
21
|
+
Max: 90
|
22
|
+
|
23
|
+
WhileUntilModifier:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
IfUnlessModifier:
|
27
|
+
Enabled: false
|
data/.togglerc
ADDED
data/Gemfile
ADDED
data/{CHANGES → History.rdoc}
RENAMED
@@ -1,10 +1,42 @@
|
|
1
|
-
|
1
|
+
=== 10.1.2 / 2014-03-24
|
2
2
|
|
3
|
-
|
4
|
-
doc/release_notes directory) for changes after in version 0.9.4
|
5
|
-
and later.
|
3
|
+
Enhancements:
|
6
4
|
|
7
|
-
|
5
|
+
* Rake now requires Ruby 1.9 or newer. For me, this is a breaking change, but
|
6
|
+
it seems that Jim planned to release it with Rake 10.2. See also pull
|
7
|
+
request #247 by Philip Arndt.
|
8
|
+
* Rake now allows you to declare tasks under a namespace like:
|
9
|
+
|
10
|
+
task 'a:b' do ... end
|
11
|
+
|
12
|
+
Pull request #232 by Judson Lester.
|
13
|
+
* Task#source defaults to the first prerequisite in non-rule tasks. Pull
|
14
|
+
request #215 by Avdi Grimm.
|
15
|
+
* Rake now automatically rebuilds and reloads imported files. Pull request
|
16
|
+
#209 by Randy Coulman.
|
17
|
+
* The rake task arguments can contain escaped commas. Pull request #214 by
|
18
|
+
Filip Hrbek.
|
19
|
+
* Rake now prints the exception class on errors. Patch #251 by David Cornu.
|
20
|
+
|
21
|
+
Bug fixes:
|
22
|
+
|
23
|
+
* Fixed typos. Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
|
24
|
+
by Zachary Scott.
|
25
|
+
* Fixed documentation for calling tasks with arguments. Pull request #235 by
|
26
|
+
John Varghese.
|
27
|
+
* Clarified `rake -f` usage message. Pull request #252 by Marco Pfatschbacher.
|
28
|
+
* Fixed a test failure on windows. Pull request #231 by Hiroshi Shirosaki.
|
29
|
+
* Fixed corrupted rake.1.gz. Pull request #225 by Michel Boaventura.
|
30
|
+
* Fixed bug in can_detect_signals? in test. Patch from #243 by Alexey
|
31
|
+
Borzenkov.
|
32
|
+
|
33
|
+
=== 10.1.1 and earlier
|
34
|
+
|
35
|
+
Additions to the old CHANGES file were not made consistently so some
|
36
|
+
versions are missing from this file. These changes are usually described in
|
37
|
+
the individual release notes files.
|
38
|
+
|
39
|
+
=== 0.9.3
|
8
40
|
|
9
41
|
* The rake test loader now removes arguments it has processed. Issue #51
|
10
42
|
* Rake::TaskArguments now responds to #values_at
|
@@ -17,15 +49,15 @@ NOTE: Refer to the individual release documents (in the
|
|
17
49
|
* lib/rake/file_list.rb (Rake::FileList#egrep): there is no need to
|
18
50
|
open files in binary mode. (NAKAMURA Usaku)
|
19
51
|
|
20
|
-
|
52
|
+
=== 0.9.2
|
21
53
|
|
22
54
|
* Unknown
|
23
55
|
|
24
|
-
|
56
|
+
=== 0.9.1
|
25
57
|
|
26
58
|
* Added deprecation warnings to the Rake DSL methods.
|
27
59
|
|
28
|
-
|
60
|
+
=== 0.9.0
|
29
61
|
|
30
62
|
* *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
|
31
63
|
no longer private methods in Object. If you need to call 'task :xzy' inside
|
@@ -87,24 +119,22 @@ NOTE: Refer to the individual release documents (in the
|
|
87
119
|
* Fixed that file tasks did not perform prereq lookups in scope
|
88
120
|
(Redmine #57).
|
89
121
|
|
90
|
-
|
122
|
+
=== 0.8.7
|
91
123
|
|
92
124
|
* Fixed EXEEXT for JRuby on windows.
|
93
125
|
|
94
|
-
|
126
|
+
=== 0.8.6
|
95
127
|
|
96
128
|
* Minor fixes to the RDoc generation (removed dependency on darkfish
|
97
129
|
and removed inline source option).
|
98
130
|
|
99
|
-
== PreVersion 0.8.6
|
100
|
-
|
101
131
|
* Now allow # comments to comment a task definition.
|
102
132
|
|
103
|
-
|
133
|
+
=== 0.8.5
|
104
134
|
|
105
135
|
* Better support for the system command on Windows.
|
106
136
|
|
107
|
-
|
137
|
+
=== 0.8.4
|
108
138
|
|
109
139
|
* Preserve case when locating rakefiles (patch from James
|
110
140
|
M. Lawrence/quix)
|
@@ -131,7 +161,7 @@ NOTE: Refer to the individual release documents (in the
|
|
131
161
|
* Removed reference to manage_gem to fix the warning produced by the
|
132
162
|
gem package task.
|
133
163
|
|
134
|
-
|
164
|
+
=== 0.8.3
|
135
165
|
|
136
166
|
* Enhanced the system directory detection in windows. We now check
|
137
167
|
HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
|
@@ -141,7 +171,7 @@ NOTE: Refer to the individual release documents (in the
|
|
141
171
|
* Added fix to handle ruby installations in directories with spaces in
|
142
172
|
their name.
|
143
173
|
|
144
|
-
|
174
|
+
=== 0.8.2
|
145
175
|
|
146
176
|
* Fixed bug in package task so that it will include the subdir
|
147
177
|
directory in the package for testing. (Bug found by Adam Majer)
|
@@ -197,12 +227,12 @@ NOTE: Refer to the individual release documents (in the
|
|
197
227
|
Redheendran for spending a good part of the afternoon at the
|
198
228
|
Lonestar Ruby Conference to help me work out these issues.
|
199
229
|
|
200
|
-
|
230
|
+
=== 0.8.1
|
201
231
|
|
202
232
|
* Removed requires on parsedate.rb (in Ftptools)
|
203
233
|
* Removed ftools from rake.rb. Made it options in sys.rb
|
204
234
|
|
205
|
-
|
235
|
+
=== 0.8.0
|
206
236
|
|
207
237
|
* Added task parameters (e.g. "rake build[version7]")
|
208
238
|
* Made task parameters passable to prerequisites.
|
@@ -215,14 +245,14 @@ NOTE: Refer to the individual release documents (in the
|
|
215
245
|
* Removed --usage and make -h the same as -H.
|
216
246
|
* Make a prettier inspect for tasks.
|
217
247
|
|
218
|
-
|
248
|
+
=== 0.7.3
|
219
249
|
|
220
250
|
* Added existing and existing! methods to FileList
|
221
251
|
* FileLists now claim to be Arrays (via is_a?) to get better support
|
222
252
|
from the FileUtil module.
|
223
253
|
* Added init and top_level for custom rake applications.
|
224
254
|
|
225
|
-
|
255
|
+
=== 0.7.2
|
226
256
|
|
227
257
|
* Error messages are now send to stderr rather than stdout (from
|
228
258
|
Payton Quackenbush).
|
@@ -257,7 +287,7 @@ NOTE: Refer to the individual release documents (in the
|
|
257
287
|
* Refactored the FileList reject logic to remove duplication.
|
258
288
|
* Removed if __FILE__ at the end of the rake.rb file.
|
259
289
|
|
260
|
-
|
290
|
+
=== 0.7.1
|
261
291
|
|
262
292
|
* Added optional filter parameter to the --tasks command line option.
|
263
293
|
* Added flatten to allow rule transform procs to return lists of
|
@@ -271,7 +301,7 @@ NOTE: Refer to the individual release documents (in the
|
|
271
301
|
* Fixed the safe_ln function to fall back to cp in more error
|
272
302
|
scenarios.
|
273
303
|
|
274
|
-
|
304
|
+
=== 0.7.0
|
275
305
|
|
276
306
|
* Added Rake.original_dir to return the original starting directory of
|
277
307
|
the rake application.
|
@@ -292,11 +322,11 @@ NOTE: Refer to the individual release documents (in the
|
|
292
322
|
better anonymous namespace behavior.
|
293
323
|
* Task objects my now be used in prerequisite lists directly.
|
294
324
|
|
295
|
-
|
325
|
+
=== 0.6.1
|
296
326
|
|
297
327
|
* Rebuilt 0.6.0 gem without signing.
|
298
328
|
|
299
|
-
|
329
|
+
=== 0.6.0
|
300
330
|
|
301
331
|
* Fixed file creation bug in the unit tests (caused infinite loop on
|
302
332
|
windows).
|
@@ -320,13 +350,13 @@ NOTE: Refer to the individual release documents (in the
|
|
320
350
|
* Multiple prerequisites on Rake rules now allowed (initial patch
|
321
351
|
supplied by Stuart Jansen).
|
322
352
|
|
323
|
-
|
353
|
+
=== 0.5.4
|
324
354
|
|
325
355
|
* Added double quotes to the test runner.
|
326
356
|
* Added .svn to default ignore list.
|
327
357
|
* Updated FileList#include to support nested arrays and filelists.
|
328
358
|
|
329
|
-
|
359
|
+
=== 0.5.3
|
330
360
|
|
331
361
|
* Added support for importing Rakefile and other dependencies.
|
332
362
|
* Fixed bug so that now rules can chain off of existing tasks as well
|
@@ -342,7 +372,7 @@ NOTE: Refer to the individual release documents (in the
|
|
342
372
|
flatten bug). Added many tests around file list.
|
343
373
|
* Added +ext+ method to both String and FileList.
|
344
374
|
|
345
|
-
|
375
|
+
=== 0.5.0
|
346
376
|
|
347
377
|
* Fixed documentation that was lacking the Rake module name (Tilman
|
348
378
|
Sauerbeck).
|
@@ -355,35 +385,35 @@ NOTE: Refer to the individual release documents (in the
|
|
355
385
|
* Added Brian Candler's fix for problems in --trace and --dry-run
|
356
386
|
mode.
|
357
387
|
|
358
|
-
|
388
|
+
=== 0.4.15
|
359
389
|
|
360
390
|
* Fixed a bug that prevented the TESTOPTS flag from working with the
|
361
391
|
revised for 1.8.2 test task.
|
362
392
|
* Updated the docs on --trace to indicate that it also enables a full
|
363
393
|
backtrace on errors.
|
364
394
|
|
365
|
-
|
395
|
+
=== 0.4.14
|
366
396
|
|
367
397
|
* Modified the TestTask to workaround the Ruby 1.8.2 change in
|
368
398
|
autoexecuting unit tests.
|
369
399
|
|
370
|
-
|
400
|
+
=== 0.4.13
|
371
401
|
|
372
402
|
* Fixed the dry-run flag so it is operating again.
|
373
403
|
* Multiple arguments to sh and ruby commands will not be interpreted
|
374
404
|
by the shell (patch provided by Jonathan Paisley).
|
375
405
|
|
376
|
-
|
406
|
+
=== 0.4.12
|
377
407
|
|
378
408
|
* Added --silent (-s) to suppress the (in directory) rake message.
|
379
409
|
|
380
|
-
|
410
|
+
=== 0.4.11
|
381
411
|
|
382
412
|
* Changed the "don't know how to rake" message (finally)
|
383
413
|
* Changes references to a literal "Rakefile" to reference the global
|
384
414
|
variable $rakefile (which contains the actual name of the rakefile).
|
385
415
|
|
386
|
-
|
416
|
+
=== 0.4.10
|
387
417
|
|
388
418
|
* Added block support to the "sh" command, allowing users to take
|
389
419
|
special actions on the result of the system call. E.g.
|
@@ -392,35 +422,35 @@ NOTE: Refer to the individual release documents (in the
|
|
392
422
|
puts "Program returned #{res.exitstatus}" if ! ok
|
393
423
|
end
|
394
424
|
|
395
|
-
|
425
|
+
=== 0.4.9
|
396
426
|
|
397
427
|
* Switched to Jamis Buck's RDoc template.
|
398
428
|
* Removed autorequire from Rake's gem spec. This prevents the Rake
|
399
429
|
libraries from loading while using rails.
|
400
430
|
|
401
|
-
|
431
|
+
=== 0.4.8
|
402
432
|
|
403
433
|
* Added support for .rb versions of Rakefile.
|
404
434
|
* Removed \\\n's from test task.
|
405
435
|
* Fixed Ruby 1.9 compatibility issue with FileList.
|
406
436
|
|
407
|
-
|
437
|
+
=== 0.4.7
|
408
438
|
|
409
439
|
* Fixed problem in FileList that caused Ruby 1.9 to go into infinite
|
410
440
|
recursion. Since to_a was removed from Object, it does not need to
|
411
441
|
added back into the list of methods to rewrite in FileList. (Thanks
|
412
442
|
to Kent Sibilev for pointing this out).
|
413
443
|
|
414
|
-
|
444
|
+
=== 0.4.6
|
415
445
|
* Removed test version of ln in FileUtils that prevented safe_ln from
|
416
446
|
using ln.
|
417
447
|
|
418
|
-
|
448
|
+
=== 0.4.5
|
419
449
|
* Upgraded comments in TestTask.
|
420
450
|
* FileList to_s and inspect now automatically resolve pending changes.
|
421
451
|
* FileList#exclude properly returns the FileList.
|
422
452
|
|
423
|
-
|
453
|
+
=== 0.4.4
|
424
454
|
* Fixed initialization problem with @comment.
|
425
455
|
* Now using multi -r technique in TestTask. Switch Rakefile back to
|
426
456
|
using the built-in test task macros because the rake runtime is no
|
@@ -430,18 +460,18 @@ NOTE: Refer to the individual release documents (in the
|
|
430
460
|
* Allow a +test_files+ attribute in test tasks. This allows more
|
431
461
|
flexibility in specifying test files.
|
432
462
|
|
433
|
-
|
463
|
+
=== 0.4.3
|
434
464
|
* Fixed Comment leakage.
|
435
465
|
|
436
|
-
|
466
|
+
=== 0.4.2
|
437
467
|
* Added safe_ln that falls back to a copy if a file link is not supported.
|
438
468
|
* Package builder now uses safe_ln.
|
439
469
|
|
440
|
-
|
470
|
+
=== 0.4.1
|
441
471
|
* Task comments are now additive, combined with "/".
|
442
472
|
* Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
|
443
473
|
|
444
|
-
|
474
|
+
=== 0.4.0
|
445
475
|
* FileList now uses deferred loading. The file system is not searched
|
446
476
|
until the first call that needs the file names.
|
447
477
|
* VAR=VALUE options are now accepted on the command line and are
|
@@ -449,7 +479,7 @@ NOTE: Refer to the individual release documents (in the
|
|
449
479
|
Rakefile by referencing ENV['VAR'].
|
450
480
|
* File.mtime is now used (instead of File.new().mtime).
|
451
481
|
|
452
|
-
|
482
|
+
=== 0.3.2.x
|
453
483
|
|
454
484
|
* Removed some hidden dependencies on rubygems. Tests now will test
|
455
485
|
gems only if they are installed.
|
@@ -457,20 +487,20 @@ NOTE: Refer to the individual release documents (in the
|
|
457
487
|
reference to Sys outside of the contrib area.
|
458
488
|
* Updated all copyright notices to include 2004.
|
459
489
|
|
460
|
-
|
490
|
+
=== 0.3.2
|
461
491
|
|
462
492
|
* GEM Installation now works with the application stub.
|
463
493
|
|
464
|
-
|
494
|
+
=== 0.3.1
|
465
495
|
|
466
496
|
* FileLists now automatically ignore CVS, .bak, !
|
467
497
|
* GEM Installation now works.
|
468
498
|
|
469
|
-
|
499
|
+
=== 0.3.0
|
470
500
|
|
471
501
|
Promoted 0.2.10.
|
472
502
|
|
473
|
-
|
503
|
+
=== 0.2.10
|
474
504
|
General
|
475
505
|
|
476
506
|
* Added title to Rake's rdocs
|
@@ -493,7 +523,7 @@ FileList Issues
|
|
493
523
|
* Dropped bang version of exclude. Now using ant-like include/exclude semantics.
|
494
524
|
* Enabled the "yield self" idiom in FileList#initialize.
|
495
525
|
|
496
|
-
|
526
|
+
=== 0.2.9
|
497
527
|
|
498
528
|
This version contains numerous changes as the RubyConf.new(2003)
|
499
529
|
presentation was being prepared. The changes include:
|
@@ -501,7 +531,7 @@ presentation was being prepared. The changes include:
|
|
501
531
|
* The monolithic rubyapp task library is in the process of being
|
502
532
|
dropped in favor of lighter weight task libraries.
|
503
533
|
|
504
|
-
|
534
|
+
=== 0.2.7
|
505
535
|
|
506
536
|
* Added "desc" for task descriptions.
|
507
537
|
* -T will now display tasks with descriptions.
|
@@ -509,20 +539,20 @@ presentation was being prepared. The changes include:
|
|
509
539
|
* Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
|
510
540
|
is still supported in the contrib area.
|
511
541
|
|
512
|
-
|
542
|
+
=== 0.2.6
|
513
543
|
|
514
544
|
* Moved to RubyForge
|
515
545
|
|
516
|
-
|
546
|
+
=== 0.2.5
|
517
547
|
|
518
548
|
* Switched to standard ruby app builder.
|
519
549
|
* Added no_match option to file matcher.
|
520
550
|
|
521
|
-
|
551
|
+
=== 0.2.4
|
522
552
|
|
523
553
|
* Fixed indir, which neglected to actually change directories.
|
524
554
|
|
525
|
-
|
555
|
+
=== 0.2.3
|
526
556
|
|
527
557
|
* Added rake module for a help target
|
528
558
|
* Added 'for_files' to Sys
|
data/Manifest.txt
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
.rubocop.yml
|
2
|
+
.togglerc
|
3
|
+
Gemfile
|
4
|
+
History.rdoc
|
5
|
+
MIT-LICENSE
|
6
|
+
Manifest.txt
|
7
|
+
README.rdoc
|
8
|
+
Rakefile
|
9
|
+
bin/rake
|
10
|
+
doc/command_line_usage.rdoc
|
11
|
+
doc/example/Rakefile1
|
12
|
+
doc/example/Rakefile2
|
13
|
+
doc/example/a.c
|
14
|
+
doc/example/b.c
|
15
|
+
doc/example/main.c
|
16
|
+
doc/glossary.rdoc
|
17
|
+
doc/jamis.rb
|
18
|
+
doc/proto_rake.rdoc
|
19
|
+
doc/rake.1.gz
|
20
|
+
doc/rakefile.rdoc
|
21
|
+
doc/rational.rdoc
|
22
|
+
doc/release_notes/rake-0.4.14.rdoc
|
23
|
+
doc/release_notes/rake-0.4.15.rdoc
|
24
|
+
doc/release_notes/rake-0.5.0.rdoc
|
25
|
+
doc/release_notes/rake-0.5.3.rdoc
|
26
|
+
doc/release_notes/rake-0.5.4.rdoc
|
27
|
+
doc/release_notes/rake-0.6.0.rdoc
|
28
|
+
doc/release_notes/rake-0.7.0.rdoc
|
29
|
+
doc/release_notes/rake-0.7.1.rdoc
|
30
|
+
doc/release_notes/rake-0.7.2.rdoc
|
31
|
+
doc/release_notes/rake-0.7.3.rdoc
|
32
|
+
doc/release_notes/rake-0.8.0.rdoc
|
33
|
+
doc/release_notes/rake-0.8.2.rdoc
|
34
|
+
doc/release_notes/rake-0.8.3.rdoc
|
35
|
+
doc/release_notes/rake-0.8.4.rdoc
|
36
|
+
doc/release_notes/rake-0.8.5.rdoc
|
37
|
+
doc/release_notes/rake-0.8.6.rdoc
|
38
|
+
doc/release_notes/rake-0.8.7.rdoc
|
39
|
+
doc/release_notes/rake-0.9.0.rdoc
|
40
|
+
doc/release_notes/rake-0.9.1.rdoc
|
41
|
+
doc/release_notes/rake-0.9.2.2.rdoc
|
42
|
+
doc/release_notes/rake-0.9.2.rdoc
|
43
|
+
doc/release_notes/rake-0.9.3.rdoc
|
44
|
+
doc/release_notes/rake-0.9.4.rdoc
|
45
|
+
doc/release_notes/rake-0.9.5.rdoc
|
46
|
+
doc/release_notes/rake-0.9.6.rdoc
|
47
|
+
doc/release_notes/rake-10.0.0.rdoc
|
48
|
+
doc/release_notes/rake-10.0.1.rdoc
|
49
|
+
doc/release_notes/rake-10.0.2.rdoc
|
50
|
+
doc/release_notes/rake-10.0.3.rdoc
|
51
|
+
doc/release_notes/rake-10.1.0.rdoc
|
52
|
+
lib/rake.rb
|
53
|
+
lib/rake/alt_system.rb
|
54
|
+
lib/rake/application.rb
|
55
|
+
lib/rake/backtrace.rb
|
56
|
+
lib/rake/clean.rb
|
57
|
+
lib/rake/cloneable.rb
|
58
|
+
lib/rake/contrib/.document
|
59
|
+
lib/rake/contrib/compositepublisher.rb
|
60
|
+
lib/rake/contrib/ftptools.rb
|
61
|
+
lib/rake/contrib/publisher.rb
|
62
|
+
lib/rake/contrib/rubyforgepublisher.rb
|
63
|
+
lib/rake/contrib/sshpublisher.rb
|
64
|
+
lib/rake/contrib/sys.rb
|
65
|
+
lib/rake/cpu_counter.rb
|
66
|
+
lib/rake/default_loader.rb
|
67
|
+
lib/rake/dsl_definition.rb
|
68
|
+
lib/rake/early_time.rb
|
69
|
+
lib/rake/ext/core.rb
|
70
|
+
lib/rake/ext/module.rb
|
71
|
+
lib/rake/ext/string.rb
|
72
|
+
lib/rake/ext/time.rb
|
73
|
+
lib/rake/file_creation_task.rb
|
74
|
+
lib/rake/file_list.rb
|
75
|
+
lib/rake/file_task.rb
|
76
|
+
lib/rake/file_utils.rb
|
77
|
+
lib/rake/file_utils_ext.rb
|
78
|
+
lib/rake/gempackagetask.rb
|
79
|
+
lib/rake/invocation_chain.rb
|
80
|
+
lib/rake/invocation_exception_mixin.rb
|
81
|
+
lib/rake/linked_list.rb
|
82
|
+
lib/rake/loaders/makefile.rb
|
83
|
+
lib/rake/multi_task.rb
|
84
|
+
lib/rake/name_space.rb
|
85
|
+
lib/rake/packagetask.rb
|
86
|
+
lib/rake/pathmap.rb
|
87
|
+
lib/rake/phony.rb
|
88
|
+
lib/rake/private_reader.rb
|
89
|
+
lib/rake/promise.rb
|
90
|
+
lib/rake/pseudo_status.rb
|
91
|
+
lib/rake/rake_module.rb
|
92
|
+
lib/rake/rake_test_loader.rb
|
93
|
+
lib/rake/rdoctask.rb
|
94
|
+
lib/rake/ruby182_test_unit_fix.rb
|
95
|
+
lib/rake/rule_recursion_overflow_error.rb
|
96
|
+
lib/rake/runtest.rb
|
97
|
+
lib/rake/scope.rb
|
98
|
+
lib/rake/task.rb
|
99
|
+
lib/rake/task_argument_error.rb
|
100
|
+
lib/rake/task_arguments.rb
|
101
|
+
lib/rake/task_manager.rb
|
102
|
+
lib/rake/tasklib.rb
|
103
|
+
lib/rake/testtask.rb
|
104
|
+
lib/rake/thread_history_display.rb
|
105
|
+
lib/rake/thread_pool.rb
|
106
|
+
lib/rake/trace_output.rb
|
107
|
+
lib/rake/version.rb
|
108
|
+
lib/rake/win32.rb
|
109
|
+
rakelib/publish.rake
|
110
|
+
rakelib/test_times.rake
|
111
|
+
test/file_creation.rb
|
112
|
+
test/helper.rb
|
113
|
+
test/support/rakefile_definitions.rb
|
114
|
+
test/support/ruby_runner.rb
|
115
|
+
test/test_private_reader.rb
|
116
|
+
test/test_rake.rb
|
117
|
+
test/test_rake_application.rb
|
118
|
+
test/test_rake_application_options.rb
|
119
|
+
test/test_rake_backtrace.rb
|
120
|
+
test/test_rake_clean.rb
|
121
|
+
test/test_rake_cpu_counter.rb
|
122
|
+
test/test_rake_definitions.rb
|
123
|
+
test/test_rake_directory_task.rb
|
124
|
+
test/test_rake_dsl.rb
|
125
|
+
test/test_rake_early_time.rb
|
126
|
+
test/test_rake_extension.rb
|
127
|
+
test/test_rake_file_creation_task.rb
|
128
|
+
test/test_rake_file_list.rb
|
129
|
+
test/test_rake_file_list_path_map.rb
|
130
|
+
test/test_rake_file_task.rb
|
131
|
+
test/test_rake_file_utils.rb
|
132
|
+
test/test_rake_ftp_file.rb
|
133
|
+
test/test_rake_functional.rb
|
134
|
+
test/test_rake_invocation_chain.rb
|
135
|
+
test/test_rake_linked_list.rb
|
136
|
+
test/test_rake_makefile_loader.rb
|
137
|
+
test/test_rake_multi_task.rb
|
138
|
+
test/test_rake_name_space.rb
|
139
|
+
test/test_rake_package_task.rb
|
140
|
+
test/test_rake_path_map.rb
|
141
|
+
test/test_rake_path_map_explode.rb
|
142
|
+
test/test_rake_path_map_partial.rb
|
143
|
+
test/test_rake_pseudo_status.rb
|
144
|
+
test/test_rake_rake_test_loader.rb
|
145
|
+
test/test_rake_reduce_compat.rb
|
146
|
+
test/test_rake_require.rb
|
147
|
+
test/test_rake_rules.rb
|
148
|
+
test/test_rake_scope.rb
|
149
|
+
test/test_rake_task.rb
|
150
|
+
test/test_rake_task_argument_parsing.rb
|
151
|
+
test/test_rake_task_arguments.rb
|
152
|
+
test/test_rake_task_lib.rb
|
153
|
+
test/test_rake_task_manager.rb
|
154
|
+
test/test_rake_task_manager_argument_resolution.rb
|
155
|
+
test/test_rake_task_with_arguments.rb
|
156
|
+
test/test_rake_test_task.rb
|
157
|
+
test/test_rake_thread_pool.rb
|
158
|
+
test/test_rake_top_level_functions.rb
|
159
|
+
test/test_rake_win32.rb
|
160
|
+
test/test_thread_history_display.rb
|
161
|
+
test/test_trace_output.rb
|