rake 0.9.2.2 → 13.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/History.rdoc +2403 -0
  3. data/MIT-LICENSE +1 -1
  4. data/README.rdoc +64 -106
  5. data/doc/command_line_usage.rdoc +65 -21
  6. data/doc/glossary.rdoc +40 -49
  7. data/doc/jamis.rb +1 -0
  8. data/doc/rake.1 +156 -0
  9. data/doc/rakefile.rdoc +127 -62
  10. data/{bin → exe}/rake +1 -7
  11. data/lib/rake/application.rb +507 -271
  12. data/lib/rake/backtrace.rb +24 -0
  13. data/lib/rake/clean.rb +54 -8
  14. data/lib/rake/cloneable.rb +11 -19
  15. data/lib/rake/cpu_counter.rb +107 -0
  16. data/lib/rake/default_loader.rb +5 -0
  17. data/lib/rake/dsl_definition.rb +67 -48
  18. data/lib/rake/early_time.rb +5 -1
  19. data/lib/rake/ext/core.rb +5 -6
  20. data/lib/rake/ext/string.rb +61 -52
  21. data/lib/rake/file_creation_task.rb +4 -3
  22. data/lib/rake/file_list.rb +81 -49
  23. data/lib/rake/file_task.rb +15 -8
  24. data/lib/rake/file_utils.rb +63 -43
  25. data/lib/rake/file_utils_ext.rb +14 -25
  26. data/lib/rake/invocation_chain.rb +25 -19
  27. data/lib/rake/invocation_exception_mixin.rb +1 -0
  28. data/lib/rake/late_time.rb +18 -0
  29. data/lib/rake/linked_list.rb +112 -0
  30. data/lib/rake/loaders/makefile.rb +23 -9
  31. data/lib/rake/multi_task.rb +4 -6
  32. data/lib/rake/name_space.rb +36 -23
  33. data/lib/rake/packagetask.rb +71 -34
  34. data/lib/rake/phony.rb +16 -0
  35. data/lib/rake/private_reader.rb +21 -0
  36. data/lib/rake/promise.rb +100 -0
  37. data/lib/rake/pseudo_status.rb +8 -2
  38. data/lib/rake/rake_module.rb +41 -3
  39. data/lib/rake/rake_test_loader.rb +9 -4
  40. data/lib/rake/rule_recursion_overflow_error.rb +2 -2
  41. data/lib/rake/scope.rb +43 -0
  42. data/lib/rake/task.rb +186 -79
  43. data/lib/rake/task_argument_error.rb +1 -0
  44. data/lib/rake/task_arguments.rb +46 -15
  45. data/lib/rake/task_manager.rb +91 -67
  46. data/lib/rake/tasklib.rb +2 -12
  47. data/lib/rake/testtask.rb +61 -63
  48. data/lib/rake/thread_history_display.rb +49 -0
  49. data/lib/rake/thread_pool.rb +163 -0
  50. data/lib/rake/trace_output.rb +23 -0
  51. data/lib/rake/version.rb +5 -3
  52. data/lib/rake/win32.rb +14 -18
  53. data/lib/rake.rb +35 -33
  54. data/rake.gemspec +100 -0
  55. metadata +74 -176
  56. data/.gemtest +0 -0
  57. data/CHANGES +0 -522
  58. data/Rakefile +0 -369
  59. data/TODO +0 -20
  60. data/doc/rake.1.gz +0 -0
  61. data/doc/release_notes/rake-0.4.14.rdoc +0 -23
  62. data/doc/release_notes/rake-0.4.15.rdoc +0 -35
  63. data/doc/release_notes/rake-0.5.0.rdoc +0 -53
  64. data/doc/release_notes/rake-0.5.3.rdoc +0 -78
  65. data/doc/release_notes/rake-0.5.4.rdoc +0 -46
  66. data/doc/release_notes/rake-0.6.0.rdoc +0 -141
  67. data/doc/release_notes/rake-0.7.0.rdoc +0 -119
  68. data/doc/release_notes/rake-0.7.1.rdoc +0 -59
  69. data/doc/release_notes/rake-0.7.2.rdoc +0 -121
  70. data/doc/release_notes/rake-0.7.3.rdoc +0 -47
  71. data/doc/release_notes/rake-0.8.0.rdoc +0 -114
  72. data/doc/release_notes/rake-0.8.2.rdoc +0 -165
  73. data/doc/release_notes/rake-0.8.3.rdoc +0 -112
  74. data/doc/release_notes/rake-0.8.4.rdoc +0 -147
  75. data/doc/release_notes/rake-0.8.5.rdoc +0 -53
  76. data/doc/release_notes/rake-0.8.6.rdoc +0 -55
  77. data/doc/release_notes/rake-0.8.7.rdoc +0 -55
  78. data/doc/release_notes/rake-0.9.0.rdoc +0 -112
  79. data/doc/release_notes/rake-0.9.1.rdoc +0 -52
  80. data/doc/release_notes/rake-0.9.2.rdoc +0 -49
  81. data/install.rb +0 -90
  82. data/lib/rake/alt_system.rb +0 -109
  83. data/lib/rake/classic_namespace.rb +0 -11
  84. data/lib/rake/contrib/compositepublisher.rb +0 -21
  85. data/lib/rake/contrib/ftptools.rb +0 -150
  86. data/lib/rake/contrib/publisher.rb +0 -73
  87. data/lib/rake/contrib/rubyforgepublisher.rb +0 -16
  88. data/lib/rake/contrib/sshpublisher.rb +0 -50
  89. data/lib/rake/contrib/sys.rb +0 -191
  90. data/lib/rake/ext/module.rb +0 -39
  91. data/lib/rake/ext/time.rb +0 -14
  92. data/lib/rake/gempackagetask.rb +0 -15
  93. data/lib/rake/pathmap.rb +0 -1
  94. data/lib/rake/rdoctask.rb +0 -234
  95. data/lib/rake/ruby182_test_unit_fix.rb +0 -25
  96. data/lib/rake/runtest.rb +0 -21
  97. data/test/file_creation.rb +0 -34
  98. data/test/helper.rb +0 -492
  99. data/test/test_rake.rb +0 -40
  100. data/test/test_rake_application.rb +0 -489
  101. data/test/test_rake_application_options.rb +0 -335
  102. data/test/test_rake_clean.rb +0 -14
  103. data/test/test_rake_definitions.rb +0 -80
  104. data/test/test_rake_directory_task.rb +0 -46
  105. data/test/test_rake_dsl.rb +0 -77
  106. data/test/test_rake_early_time.rb +0 -31
  107. data/test/test_rake_extension.rb +0 -59
  108. data/test/test_rake_file_creation_task.rb +0 -56
  109. data/test/test_rake_file_list.rb +0 -628
  110. data/test/test_rake_file_list_path_map.rb +0 -8
  111. data/test/test_rake_file_task.rb +0 -102
  112. data/test/test_rake_file_utils.rb +0 -305
  113. data/test/test_rake_ftp_file.rb +0 -59
  114. data/test/test_rake_functional.rb +0 -450
  115. data/test/test_rake_invocation_chain.rb +0 -52
  116. data/test/test_rake_makefile_loader.rb +0 -44
  117. data/test/test_rake_multi_task.rb +0 -51
  118. data/test/test_rake_name_space.rb +0 -43
  119. data/test/test_rake_package_task.rb +0 -79
  120. data/test/test_rake_path_map.rb +0 -157
  121. data/test/test_rake_path_map_explode.rb +0 -34
  122. data/test/test_rake_path_map_partial.rb +0 -18
  123. data/test/test_rake_pseudo_status.rb +0 -21
  124. data/test/test_rake_rake_test_loader.rb +0 -21
  125. data/test/test_rake_rdoc_task.rb +0 -83
  126. data/test/test_rake_require.rb +0 -40
  127. data/test/test_rake_rules.rb +0 -327
  128. data/test/test_rake_task.rb +0 -267
  129. data/test/test_rake_task_argument_parsing.rb +0 -103
  130. data/test/test_rake_task_arguments.rb +0 -88
  131. data/test/test_rake_task_lib.rb +0 -9
  132. data/test/test_rake_task_manager.rb +0 -157
  133. data/test/test_rake_task_manager_argument_resolution.rb +0 -36
  134. data/test/test_rake_task_with_arguments.rb +0 -173
  135. data/test/test_rake_test_task.rb +0 -120
  136. data/test/test_rake_top_level_functions.rb +0 -111
  137. data/test/test_rake_win32.rb +0 -72
  138. data/test/test_sys.rb +0 -20
data/CHANGES DELETED
@@ -1,522 +0,0 @@
1
- = Rake Changelog
2
-
3
- == Master (for 0.9.3)
4
-
5
- * The rake test loader now removes arguments it has processed. Issue #51
6
- * Rake::TaskArguments now responds to #values_at
7
- * RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
8
- * Rake tests are now directory-independent
9
- * Rake tests are no longer require flexmock
10
- * Commands constant is no longer polluting top level namespace.
11
-
12
- == Version 0.9.2
13
-
14
- * Unknown
15
-
16
- == Version 0.9.1
17
-
18
- * Added deprecation warnings to the Rake DSL methods.
19
-
20
- == Version 0.9.0
21
-
22
- * *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
23
- no longer private methods in Object. If you need to call 'task :xzy' inside
24
- your class, include Rake::DSL into the class. The DSL is still available at
25
- the top level scope (via the top level object which extends Rake::DSL).
26
-
27
- * Rake now warns when the deprecated :needs syntax used.
28
-
29
- * Rake history is now UTF-8 encoded.
30
-
31
- * Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
32
- Based on patch by Roger Pack.
33
-
34
- * Rake now requires (instead of loads) files in the test task. Patch by Cezary
35
- Baginski.
36
-
37
- * Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
38
-
39
- * Rake now prints the Rakefile directory only when it's different from the
40
- current directory. Patch by Alex Chaffee.
41
-
42
- * Improved rakefile_location discovery on Windows. Patch by James Tucker.
43
-
44
- * Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
45
- Lüdtke
46
-
47
- * Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
48
- 'rdoc/task')
49
-
50
- * Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
51
- 'rubygems/package_task')
52
-
53
- * Rake now outputs various messages to $stderr instead of $stdout.
54
-
55
- * Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
56
-
57
- * Split rake.rb into individual files.
58
-
59
- * Support for the --where (-W) flag for showing where a task is defined.
60
-
61
- * Fixed quoting in test task.
62
- (http://onestepback.org/redmine/issues/show/44,
63
- http://www.pivotaltracker.com/story/show/1223138)
64
-
65
- * Fixed the silent option parsing problem.
66
- (http://onestepback.org/redmine/issues/show/47)
67
-
68
- * Fixed :verbose=>false flag on sh and ruby commands.
69
-
70
- * Rake command line options may be given by default in a RAKEOPT
71
- environment variable.
72
-
73
- * Errors in Rake will now display the task invocation chain in effect
74
- at the time of the error.
75
-
76
- * Accepted change by warnickr to not expand test patterns in shell
77
- (allowing more files in the test suite).
78
-
79
- * Fixed that file tasks did not perform prereq lookups in scope
80
- (Redmine #57).
81
-
82
- == Version 0.8.7
83
-
84
- * Fixed EXEEXT for JRuby on windows.
85
-
86
- == Version 0.8.6
87
-
88
- * Minor fixes to the RDoc generation (removed dependency on darkfish
89
- and removed inline source option).
90
-
91
- == PreVersion 0.8.6
92
-
93
- * Now allow # comments to comment a task definition.
94
-
95
- == Version 0.8.5
96
-
97
- * Better support for the system command on Windows.
98
-
99
- == Version 0.8.4
100
-
101
- * Preserve case when locating rakefiles (patch from James
102
- M. Lawrence/quix)
103
-
104
- * Better support for windows paths in the test task (patch from Simon
105
- Chiang/bahuvrihi)
106
-
107
- * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
108
- APPDATA, USERPROFILE (patch from Luis Lavena)
109
-
110
- * MingGW is now recognized as a windows platform. (patch from Luis
111
- Lavena)
112
-
113
- * Numerous fixes to the windows test suite (patch from Luis Lavena).
114
-
115
- * Improved Rakefile case insensitivity testing (patch from Luis
116
- Lavena).
117
-
118
- * Fixed stray ARGV option problem that was interfering with
119
- Test::Unit::Runner.
120
-
121
- * Fixed default verbose mode (was accidently changed to false).
122
-
123
- * Removed reference to manage_gem to fix the warning produced by the
124
- gem package task.
125
-
126
- == Version 0.8.3
127
-
128
- * Enhanced the system directory detection in windows. We now check
129
- HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
130
- supplied by James Tucker). Rake no long aborts if it can't find the
131
- directory.
132
-
133
- * Added fix to handle ruby installations in directories with spaces in
134
- their name.
135
-
136
- == Version 0.8.2
137
-
138
- * Fixed bug in package task so that it will include the subdir
139
- directory in the package for testing. (Bug found by Adam Majer)
140
-
141
- * Added ENV var to rakefile to prevent OS X from including extended
142
- attribute junk in a tar file. (Bug found by Adam Majer)
143
-
144
- * Fixed filename dependency order bug in test_inspect_pending and
145
- test_to_s_pending. (Bug found by Adam Majer)
146
-
147
- * Fixed check for file utils options to make them immune to the
148
- symbol/string differences. (Patch supplied by Edwin Pratomo)
149
-
150
- * Fixed bug with rules involving multiple source (Patch supplied by
151
- Emanuel Indermühle)
152
-
153
- * Switched from getoptlong to optparse (patches supplied by Edwin
154
- Pratomo)
155
-
156
- * The -T option will now attempt to dynamically sense the size of the
157
- terminal. RAKE_COLUMNS will override any dynamic sensing.
158
-
159
- * FileList#clone and FileList#dup have better sematics w.r.t. taint
160
- and freeze.
161
-
162
- * Added ability clear prerequisites, and/or actions from an existing
163
- task.
164
-
165
- * Added the ability to reenable a task to be invoked a second time.
166
-
167
- * Changed RDoc test task to have no default template. This makes it
168
- easier for the tempate to pick up the template from the environment.
169
-
170
- * Changed from using Mutex to Monitor. Evidently Mutex causes thread
171
- join errors when Ruby is compiled with -disable-pthreads. (Patch
172
- supplied by Ittay Dror)
173
-
174
- * Fixed bug in makefile parser that had problems with extra spaces in
175
- file task names. (Patch supplied by Ittay Dror)
176
-
177
- * Added a performance patch for reading large makefile dependency
178
- files. (Patch supplied by Ittay Dror)
179
-
180
- * Default values for task arguments can easily be specified with the
181
- :with_defaults method. (Idea for default argument merging supplied
182
- by (Adam Q. Salter)
183
-
184
- * The -T output will only self-truncate if the output is a tty.
185
- However, if RAKE_COLUMNS is explicitly set, it will be honored in
186
- any case. (Patch provided by Gavin Stark).
187
-
188
- * Numerous fixes for running under windows. A big thanks to Bheeshmar
189
- Redheendran for spending a good part of the afternoon at the
190
- Lonestar Ruby Conference to help me work out these issues.
191
-
192
- == Version 0.8.1
193
-
194
- * Removed requires on parsedate.rb (in Ftptools)
195
- * Removed ftools from rake.rb. Made it options in sys.rb
196
-
197
- == Version 0.8.0
198
-
199
- * Added task parameters (e.g. "rake build[version7]")
200
- * Made task parameters passable to prerequisites.
201
- * Comments are limited to 80 columns or so (suggested by Jamis Buck).
202
- * Added -D to display full comments (suggested by Jamis Buck).
203
- * The rake program will set the status value used in any explicit
204
- exit(n) calls. (patch provided by Stephen Touset)
205
- * Fixed error in functional tests that were not including session (and
206
- silently skipping the functionl tests.
207
- * Removed --usage and make -h the same as -H.
208
- * Make a prettier inspect for tasks.
209
-
210
- == Version 0.7.3
211
-
212
- * Added existing and existing! methods to FileList
213
- * FileLists now claim to be Arrays (via is_a?) to get better support
214
- from the FileUtil module.
215
- * Added init and top_level for custom rake applications.
216
-
217
- == Version 0.7.2
218
-
219
- * Error messages are now send to stderr rather than stdout (from
220
- Payton Quackenbush).
221
- * Better error handling on invalid command line arguments (from Payton
222
- Quackenbush).
223
- * Added rcov task and updated unit testing for better code coverage.
224
- * Fixed some bugs where the application object was going to the global
225
- appliation instead of using its own data.
226
- * Added square and curly bracket patterns to FileList#include (Tilman
227
- Sauerbeck).
228
- * Added plain filename support to rule dependents (suggested by Nobu
229
- Nakada).
230
- * Added pathmap support to rule dependents.
231
- * Added a 'tasks' method to a namespace to get a list of tasks
232
- associated with the namespace.
233
- * Fixed the method name leak from FileUtils (bug found by Glenn
234
- Vanderburg).
235
- * Added rake_extension to handle detection of extension collisions.
236
- * Added test for noop, bad_option and verbose flags to sh command.
237
- * Removed dependency on internal fu_xxx functions from FileUtils.
238
- * Added a 'shame' task to the Rakefile.
239
- * Added tar_command and zip_command options to the Package task.
240
- * Added a description to the gem task in GemPackageTask.
241
- * Fixed a bug when rules have multiple prerequisites (patch by Joel
242
- VanderWerf)
243
- * Added a protected 'require "rubygems"' to test/test_application to
244
- unbreak cruisecontrol.rb.
245
- * Added the handful of RakeFileUtils to the private method as well.
246
- * Added block based exclusion.
247
- * The clean task will no longer delete 'core' if it is a directory.
248
- * Removed rake_dup. Now we just simply rescue a bad dup.
249
- * Refactored the FileList reject logic to remove duplication.
250
- * Removed if __FILE__ at the end of the rake.rb file.
251
-
252
- == Version 0.7.1
253
-
254
- * Added optional filter parameter to the --tasks command line option.
255
- * Added flatten to allow rule transform procs to return lists of
256
- prereqs (Joel VanderWerf provided patch).
257
- * Added pathmap to String and FileList.
258
- * The -r option will now load .rake files (but a straight require
259
- doesn't yet). NOTE: This is experimental ... it may be
260
- discontinued.
261
- * The -f option without a value will disable the search for a
262
- Rakefile. The assumption is that the -r files are adequate.
263
- * Fixed the safe_ln function to fall back to cp in more error
264
- scenarios.
265
-
266
- == Version 0.7.0
267
-
268
- * Added Rake.original_dir to return the original starting directory of
269
- the rake application.
270
- * Added safe_ln support for openAFS (from Ludvig Omholt).
271
- * Added --trace reminder on short exception messages (David Heinemeier
272
- Hansson suggestion).
273
- * Added multitask declaration that executes prerequisites in
274
- parallel. (Doug Young providied an initial implementation).
275
- * Fixed missing_const hack to be compatible with Rails. (Jamis Buck
276
- supplied test case).
277
- * Made the RDoc task default to internal (in-process) RDoc formatting.
278
- The old behavior is still available by setting the +external+ flag
279
- to true.
280
- * Rakefiles are now loaded with the expanded path to prevent
281
- accidental polution from the Ruby load path.
282
- * The +namespace+ command now returns a NameSpace object that can be
283
- used to lookup tasks defined in that namespace. This allows for
284
- better anonymous namespace behavior.
285
- * Task objects my now be used in prerequisite lists directly.
286
-
287
- == Version 0.6.1
288
-
289
- * Rebuilt 0.6.0 gem without signing.
290
-
291
- == Version 0.6.0
292
-
293
- * Fixed file creation bug in the unit tests (caused infinite loop on
294
- windows).
295
- * Fixed bug where session based functional tests were run under
296
- windows.
297
- * Fixed bug in directory tasks so that updating a directory will not
298
- retrigger file tasks depending on the directory (see
299
- FileCreationTask and EarlyTime).
300
- * Added egrep to FileList
301
- * ruby command now runs same ruby version as rake.
302
- * Added investigation to task object. (suggested by Martin Fowler)
303
- * Added ruby_opts to the test task to allow arbitrary ruby options to
304
- be passed to the test script. (Greg Fast)
305
- * Fixed the test loader to ignore options. (Greg Fast)
306
- * Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
307
- module namespace. Old style namespace behavior can be invoked via
308
- the --classic-namespace option. (requested by Kelly Felkins).
309
- * GemTask is now sensitive to the gem platform (Masao Mutoh).
310
- * A non-existing file prerequisite will no longer cause an exception
311
- (Philipp Neubeck).
312
- * Multiple prerequisites on Rake rules now allowed (initial patch
313
- supplied by Stuart Jansen).
314
-
315
- == Version 0.5.4
316
-
317
- * Added double quotes to the test runner.
318
- * Added .svn to default ignore list.
319
- * Updated FileList#include to support nested arrays and filelists.
320
-
321
- == Version 0.5.3
322
-
323
- * Added support for importing Rakefile and other dependencies.
324
- * Fixed bug so that now rules can chain off of existing tasks as well
325
- as existing files.
326
- * Fixed verbose flag bug in the testing task. Shortened some failure
327
- messages.
328
- * Make FileUtils methods private at the top level module to avoid
329
- accidental method leaking into other objects.
330
- * Added test loader option to test task. "testrb" is no longer the
331
- default test loader. It is now eating syntax errors that should
332
- halt the unit tests.
333
- * Revamped FileList so that it works more like and array (addressed
334
- flatten bug). Added many tests around file list.
335
- * Added +ext+ method to both String and FileList.
336
-
337
- == Version 0.5.0
338
-
339
- * Fixed documentation that was lacking the Rake module name (Tilman
340
- Sauerbeck).
341
- * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
342
- * Recursive rules are now supported (Tilman Sauerbeck).
343
- * Added warning option for the Test Task (requested by Eric Hodel).
344
- * The jamis rdoc template is only used if it exists.
345
- * Added fix for Ruby 1.8.2 test/unit and rails problem.
346
- * Added contributed rake man file (Jani Monoses).
347
- * Added Brian Candler's fix for problems in --trace and --dry-run
348
- mode.
349
-
350
- == Version 0.4.15
351
-
352
- * Fixed a bug that prevented the TESTOPTS flag from working with the
353
- revised for 1.8.2 test task.
354
- * Updated the docs on --trace to indicate that it also enables a full
355
- backtrace on errors.
356
-
357
- == Version 0.4.14
358
-
359
- * Modified the TestTask to workaround the Ruby 1.8.2 change in
360
- autoexecuting unit tests.
361
-
362
- == Version 0.4.13
363
-
364
- * Fixed the dry-run flag so it is operating again.
365
- * Multiple arguments to sh and ruby commands will not be interpreted
366
- by the shell (patch provided by Jonathan Paisley).
367
-
368
- == Version 0.4.12
369
-
370
- * Added --silent (-s) to suppress the (in directory) rake message.
371
-
372
- == Version 0.4.11
373
-
374
- * Changed the "don't know how to rake" message (finally)
375
- * Changes references to a literal "Rakefile" to reference the global
376
- variable $rakefile (which contains the actual name of the rakefile).
377
-
378
- == Version 0.4.10
379
-
380
- * Added block support to the "sh" command, allowing users to take
381
- special actions on the result of the system call. E.g.
382
-
383
- sh "shell_command" do |ok, res|
384
- puts "Program returned #{res.exitstatus}" if ! ok
385
- end
386
-
387
- == Version 0.4.9
388
-
389
- * Switched to Jamis Buck's RDoc template.
390
- * Removed autorequire from Rake's gem spec. This prevents the Rake
391
- libraries from loading while using rails.
392
-
393
- == Version 0.4.8
394
-
395
- * Added support for .rb versions of Rakefile.
396
- * Removed \\\n's from test task.
397
- * Fixed Ruby 1.9 compatibility issue with FileList.
398
-
399
- == Version 0.4.7
400
-
401
- * Fixed problem in FileList that caused Ruby 1.9 to go into infinite
402
- recursion. Since to_a was removed from Object, it does not need to
403
- added back into the list of methods to rewrite in FileList. (Thanks
404
- to Kent Sibilev for pointing this out).
405
-
406
- == Version 0.4.6
407
- * Removed test version of ln in FileUtils that prevented safe_ln from
408
- using ln.
409
-
410
- == Version 0.4.5
411
- * Upgraded comments in TestTask.
412
- * FileList to_s and inspect now automatically resolve pending changes.
413
- * FileList#exclude properly returns the FileList.
414
-
415
- == Version 0.4.4
416
- * Fixed initialization problem with @comment.
417
- * Now using multi -r technique in TestTask. Switch Rakefile back to
418
- using the built-in test task macros because the rake runtime is no
419
- longer needed.
420
- * Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
421
- macros.
422
- * Allow a +test_files+ attribute in test tasks. This allows more
423
- flexibility in specifying test files.
424
-
425
- == Version 0.4.3
426
- * Fixed Comment leakage.
427
-
428
- == Version 0.4.2
429
- * Added safe_ln that falls back to a copy if a file link is not supported.
430
- * Package builder now uses safe_ln.
431
-
432
- == Version 0.4.1
433
- * Task comments are now additive, combined with "/".
434
- * Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
435
-
436
- == Version 0.4.0
437
- * FileList now uses deferred loading. The file system is not searched
438
- until the first call that needs the file names.
439
- * VAR=VALUE options are now accepted on the command line and are
440
- treated like environment variables. The values may be tested in a
441
- Rakefile by referencing ENV['VAR'].
442
- * File.mtime is now used (instead of File.new().mtime).
443
-
444
- == Version 0.3.2.x
445
-
446
- * Removed some hidden dependencies on rubygems. Tests now will test
447
- gems only if they are installed.
448
- * Removed Sys from some example files. I believe that is that last
449
- reference to Sys outside of the contrib area.
450
- * Updated all copyright notices to include 2004.
451
-
452
- == Version 0.3.2
453
-
454
- * GEM Installation now works with the application stub.
455
-
456
- == Version 0.3.1
457
-
458
- * FileLists now automatically ignore CVS, .bak, !
459
- * GEM Installation now works.
460
-
461
- == Version 0.3.0
462
-
463
- Promoted 0.2.10.
464
-
465
- == Version 0.2.10
466
- General
467
-
468
- * Added title to Rake's rdocs
469
- * Contrib packages are no longer included in the documentation.
470
-
471
- RDoc Issues
472
-
473
- * Removed default for the '--main' option
474
- * Fixed rendering of the rdoc options
475
- * Fixed clean/clobber confusion with rerdoc
476
- * 'title' attribute added
477
-
478
- Package Task Library Issues
479
-
480
- * Version (or explicit :noversion) is required.
481
- * +package_file+ attribute is now writable
482
-
483
- FileList Issues
484
-
485
- * Dropped bang version of exclude. Now using ant-like include/exclude semantics.
486
- * Enabled the "yield self" idiom in FileList#initialize.
487
-
488
- == Version 0.2.9
489
-
490
- This version contains numerous changes as the RubyConf.new(2003)
491
- presentation was being prepared. The changes include:
492
-
493
- * The monolithic rubyapp task library is in the process of being
494
- dropped in favor of lighter weight task libraries.
495
-
496
- == Version 0.2.7
497
-
498
- * Added "desc" for task descriptions.
499
- * -T will now display tasks with descriptions.
500
- * -P will display tasks and prerequisites.
501
- * Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
502
- is still supported in the contrib area.
503
-
504
- == Version 0.2.6
505
-
506
- * Moved to RubyForge
507
-
508
- == Version 0.2.5
509
-
510
- * Switched to standard ruby app builder.
511
- * Added no_match option to file matcher.
512
-
513
- == Version 0.2.4
514
-
515
- * Fixed indir, which neglected to actually change directories.
516
-
517
- == Version 0.2.3
518
-
519
- * Added rake module for a help target
520
- * Added 'for_files' to Sys
521
- * Added a $rakefile constant
522
- * Added test for selecting proper rule with multiple targets.