rake 0.9.2 → 13.0.3

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