rake 10.4.2 → 13.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. checksums.yaml +5 -5
  2. data/CONTRIBUTING.rdoc +16 -7
  3. data/Gemfile +10 -0
  4. data/History.rdoc +2022 -287
  5. data/README.rdoc +40 -25
  6. data/Rakefile +25 -65
  7. data/bin/bundle +105 -0
  8. data/bin/console +7 -0
  9. data/bin/rake +20 -24
  10. data/bin/rdoc +29 -0
  11. data/bin/rubocop +29 -0
  12. data/bin/setup +6 -0
  13. data/doc/glossary.rdoc +10 -11
  14. data/doc/jamis.rb +1 -0
  15. data/doc/rake.1 +139 -124
  16. data/doc/rakefile.rdoc +2 -33
  17. data/exe/rake +27 -0
  18. data/lib/rake.rb +35 -43
  19. data/lib/rake/application.rb +125 -91
  20. data/lib/rake/backtrace.rb +3 -2
  21. data/lib/rake/clean.rb +8 -6
  22. data/lib/rake/cloneable.rb +1 -0
  23. data/lib/rake/cpu_counter.rb +10 -28
  24. data/lib/rake/default_loader.rb +1 -0
  25. data/lib/rake/dsl_definition.rb +6 -12
  26. data/lib/rake/early_time.rb +1 -0
  27. data/lib/rake/ext/core.rb +1 -0
  28. data/lib/rake/ext/string.rb +24 -21
  29. data/lib/rake/file_creation_task.rb +4 -3
  30. data/lib/rake/file_list.rb +35 -28
  31. data/lib/rake/file_task.rb +12 -4
  32. data/lib/rake/file_utils.rb +38 -32
  33. data/lib/rake/file_utils_ext.rb +8 -18
  34. data/lib/rake/invocation_chain.rb +1 -0
  35. data/lib/rake/invocation_exception_mixin.rb +1 -0
  36. data/lib/rake/late_time.rb +2 -1
  37. data/lib/rake/linked_list.rb +24 -15
  38. data/lib/rake/loaders/makefile.rb +23 -9
  39. data/lib/rake/multi_task.rb +2 -1
  40. data/lib/rake/name_space.rb +1 -1
  41. data/lib/rake/packagetask.rb +40 -17
  42. data/lib/rake/phony.rb +2 -1
  43. data/lib/rake/private_reader.rb +1 -0
  44. data/lib/rake/promise.rb +13 -12
  45. data/lib/rake/pseudo_status.rb +1 -0
  46. data/lib/rake/rake_module.rb +30 -1
  47. data/lib/rake/rake_test_loader.rb +18 -13
  48. data/lib/rake/rule_recursion_overflow_error.rb +2 -2
  49. data/lib/rake/scope.rb +3 -2
  50. data/lib/rake/task.rb +82 -31
  51. data/lib/rake/task_argument_error.rb +1 -0
  52. data/lib/rake/task_arguments.rb +15 -4
  53. data/lib/rake/task_manager.rb +54 -33
  54. data/lib/rake/tasklib.rb +2 -14
  55. data/lib/rake/testtask.rb +40 -63
  56. data/lib/rake/thread_history_display.rb +4 -3
  57. data/lib/rake/thread_pool.rb +16 -17
  58. data/lib/rake/trace_output.rb +2 -1
  59. data/lib/rake/version.rb +4 -1
  60. data/lib/rake/win32.rb +10 -15
  61. data/rake.gemspec +43 -0
  62. metadata +33 -270
  63. data/.autotest +0 -7
  64. data/.gemtest +0 -0
  65. data/.rubocop.yml +0 -27
  66. data/.togglerc +0 -7
  67. data/Manifest.txt +0 -166
  68. data/doc/release_notes/rake-0.4.14.rdoc +0 -23
  69. data/doc/release_notes/rake-0.4.15.rdoc +0 -35
  70. data/doc/release_notes/rake-0.5.0.rdoc +0 -53
  71. data/doc/release_notes/rake-0.5.3.rdoc +0 -78
  72. data/doc/release_notes/rake-0.5.4.rdoc +0 -46
  73. data/doc/release_notes/rake-0.6.0.rdoc +0 -141
  74. data/doc/release_notes/rake-0.7.0.rdoc +0 -119
  75. data/doc/release_notes/rake-0.7.1.rdoc +0 -59
  76. data/doc/release_notes/rake-0.7.2.rdoc +0 -121
  77. data/doc/release_notes/rake-0.7.3.rdoc +0 -47
  78. data/doc/release_notes/rake-0.8.0.rdoc +0 -114
  79. data/doc/release_notes/rake-0.8.2.rdoc +0 -165
  80. data/doc/release_notes/rake-0.8.3.rdoc +0 -112
  81. data/doc/release_notes/rake-0.8.4.rdoc +0 -147
  82. data/doc/release_notes/rake-0.8.5.rdoc +0 -53
  83. data/doc/release_notes/rake-0.8.6.rdoc +0 -37
  84. data/doc/release_notes/rake-0.8.7.rdoc +0 -55
  85. data/doc/release_notes/rake-0.9.0.rdoc +0 -112
  86. data/doc/release_notes/rake-0.9.1.rdoc +0 -52
  87. data/doc/release_notes/rake-0.9.2.2.rdoc +0 -55
  88. data/doc/release_notes/rake-0.9.2.rdoc +0 -49
  89. data/doc/release_notes/rake-0.9.3.rdoc +0 -102
  90. data/doc/release_notes/rake-0.9.4.rdoc +0 -60
  91. data/doc/release_notes/rake-0.9.5.rdoc +0 -55
  92. data/doc/release_notes/rake-0.9.6.rdoc +0 -64
  93. data/doc/release_notes/rake-10.0.0.rdoc +0 -178
  94. data/doc/release_notes/rake-10.0.1.rdoc +0 -58
  95. data/doc/release_notes/rake-10.0.2.rdoc +0 -53
  96. data/doc/release_notes/rake-10.0.3.rdoc +0 -191
  97. data/doc/release_notes/rake-10.1.0.rdoc +0 -61
  98. data/lib/rake/alt_system.rb +0 -110
  99. data/lib/rake/contrib/.document +0 -1
  100. data/lib/rake/contrib/compositepublisher.rb +0 -21
  101. data/lib/rake/contrib/ftptools.rb +0 -137
  102. data/lib/rake/contrib/publisher.rb +0 -81
  103. data/lib/rake/contrib/rubyforgepublisher.rb +0 -18
  104. data/lib/rake/contrib/sshpublisher.rb +0 -61
  105. data/lib/rake/contrib/sys.rb +0 -4
  106. data/lib/rake/ext/module.rb +0 -2
  107. data/lib/rake/ext/pathname.rb +0 -25
  108. data/lib/rake/ext/time.rb +0 -16
  109. data/lib/rake/gempackagetask.rb +0 -4
  110. data/lib/rake/pathmap.rb +0 -3
  111. data/lib/rake/rdoctask.rb +0 -4
  112. data/lib/rake/ruby182_test_unit_fix.rb +0 -29
  113. data/lib/rake/runtest.rb +0 -27
  114. data/rakelib/publish.rake +0 -20
  115. data/rakelib/test_times.rake +0 -25
  116. data/test/file_creation.rb +0 -34
  117. data/test/helper.rb +0 -130
  118. data/test/support/rakefile_definitions.rb +0 -478
  119. data/test/support/ruby_runner.rb +0 -34
  120. data/test/test_private_reader.rb +0 -42
  121. data/test/test_rake.rb +0 -40
  122. data/test/test_rake_application.rb +0 -643
  123. data/test/test_rake_application_options.rb +0 -466
  124. data/test/test_rake_backtrace.rb +0 -119
  125. data/test/test_rake_clean.rb +0 -61
  126. data/test/test_rake_cpu_counter.rb +0 -68
  127. data/test/test_rake_definitions.rb +0 -84
  128. data/test/test_rake_directory_task.rb +0 -76
  129. data/test/test_rake_dsl.rb +0 -40
  130. data/test/test_rake_early_time.rb +0 -31
  131. data/test/test_rake_extension.rb +0 -59
  132. data/test/test_rake_file_creation_task.rb +0 -56
  133. data/test/test_rake_file_list.rb +0 -655
  134. data/test/test_rake_file_list_path_map.rb +0 -8
  135. data/test/test_rake_file_task.rb +0 -197
  136. data/test/test_rake_file_utils.rb +0 -309
  137. data/test/test_rake_ftp_file.rb +0 -74
  138. data/test/test_rake_functional.rb +0 -482
  139. data/test/test_rake_invocation_chain.rb +0 -64
  140. data/test/test_rake_late_time.rb +0 -18
  141. data/test/test_rake_linked_list.rb +0 -84
  142. data/test/test_rake_makefile_loader.rb +0 -46
  143. data/test/test_rake_multi_task.rb +0 -64
  144. data/test/test_rake_name_space.rb +0 -57
  145. data/test/test_rake_package_task.rb +0 -79
  146. data/test/test_rake_path_map.rb +0 -168
  147. data/test/test_rake_path_map_explode.rb +0 -34
  148. data/test/test_rake_path_map_partial.rb +0 -18
  149. data/test/test_rake_pathname_extensions.rb +0 -15
  150. data/test/test_rake_pseudo_status.rb +0 -21
  151. data/test/test_rake_rake_test_loader.rb +0 -20
  152. data/test/test_rake_reduce_compat.rb +0 -26
  153. data/test/test_rake_require.rb +0 -40
  154. data/test/test_rake_rules.rb +0 -388
  155. data/test/test_rake_scope.rb +0 -44
  156. data/test/test_rake_task.rb +0 -393
  157. data/test/test_rake_task_argument_parsing.rb +0 -119
  158. data/test/test_rake_task_arguments.rb +0 -127
  159. data/test/test_rake_task_lib.rb +0 -9
  160. data/test/test_rake_task_manager.rb +0 -178
  161. data/test/test_rake_task_manager_argument_resolution.rb +0 -19
  162. data/test/test_rake_task_with_arguments.rb +0 -172
  163. data/test/test_rake_test_task.rb +0 -146
  164. data/test/test_rake_thread_pool.rb +0 -145
  165. data/test/test_rake_top_level_functions.rb +0 -71
  166. data/test/test_rake_win32.rb +0 -72
  167. data/test/test_thread_history_display.rb +0 -101
  168. data/test/test_trace_output.rb +0 -52
data/.autotest DELETED
@@ -1,7 +0,0 @@
1
- require 'autotest/restart'
2
-
3
- Autotest.add_hook :initialize do |at|
4
- at.testlib = ''
5
- at.add_exception '.git'
6
- end
7
-
data/.gemtest DELETED
File without changes
data/.rubocop.yml DELETED
@@ -1,27 +0,0 @@
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 DELETED
@@ -1,7 +0,0 @@
1
- (add-to-list
2
- 'toggle-mapping-styles
3
- '(rake . (
4
- ("test/test_rake_\\1.rb" . "lib/rake/\\1.rb")
5
- ) ))
6
-
7
- (buffer-toggle-style 'rake)
data/Manifest.txt DELETED
@@ -1,166 +0,0 @@
1
- .autotest
2
- .rubocop.yml
3
- .togglerc
4
- CONTRIBUTING.rdoc
5
- History.rdoc
6
- MIT-LICENSE
7
- Manifest.txt
8
- README.rdoc
9
- Rakefile
10
- bin/rake
11
- doc/command_line_usage.rdoc
12
- doc/example/Rakefile1
13
- doc/example/Rakefile2
14
- doc/example/a.c
15
- doc/example/b.c
16
- doc/example/main.c
17
- doc/glossary.rdoc
18
- doc/jamis.rb
19
- doc/proto_rake.rdoc
20
- doc/rake.1
21
- doc/rakefile.rdoc
22
- doc/rational.rdoc
23
- doc/release_notes/rake-0.4.14.rdoc
24
- doc/release_notes/rake-0.4.15.rdoc
25
- doc/release_notes/rake-0.5.0.rdoc
26
- doc/release_notes/rake-0.5.3.rdoc
27
- doc/release_notes/rake-0.5.4.rdoc
28
- doc/release_notes/rake-0.6.0.rdoc
29
- doc/release_notes/rake-0.7.0.rdoc
30
- doc/release_notes/rake-0.7.1.rdoc
31
- doc/release_notes/rake-0.7.2.rdoc
32
- doc/release_notes/rake-0.7.3.rdoc
33
- doc/release_notes/rake-0.8.0.rdoc
34
- doc/release_notes/rake-0.8.2.rdoc
35
- doc/release_notes/rake-0.8.3.rdoc
36
- doc/release_notes/rake-0.8.4.rdoc
37
- doc/release_notes/rake-0.8.5.rdoc
38
- doc/release_notes/rake-0.8.6.rdoc
39
- doc/release_notes/rake-0.8.7.rdoc
40
- doc/release_notes/rake-0.9.0.rdoc
41
- doc/release_notes/rake-0.9.1.rdoc
42
- doc/release_notes/rake-0.9.2.2.rdoc
43
- doc/release_notes/rake-0.9.2.rdoc
44
- doc/release_notes/rake-0.9.3.rdoc
45
- doc/release_notes/rake-0.9.4.rdoc
46
- doc/release_notes/rake-0.9.5.rdoc
47
- doc/release_notes/rake-0.9.6.rdoc
48
- doc/release_notes/rake-10.0.0.rdoc
49
- doc/release_notes/rake-10.0.1.rdoc
50
- doc/release_notes/rake-10.0.2.rdoc
51
- doc/release_notes/rake-10.0.3.rdoc
52
- doc/release_notes/rake-10.1.0.rdoc
53
- lib/rake.rb
54
- lib/rake/alt_system.rb
55
- lib/rake/application.rb
56
- lib/rake/backtrace.rb
57
- lib/rake/clean.rb
58
- lib/rake/cloneable.rb
59
- lib/rake/contrib/.document
60
- lib/rake/contrib/compositepublisher.rb
61
- lib/rake/contrib/ftptools.rb
62
- lib/rake/contrib/publisher.rb
63
- lib/rake/contrib/rubyforgepublisher.rb
64
- lib/rake/contrib/sshpublisher.rb
65
- lib/rake/contrib/sys.rb
66
- lib/rake/cpu_counter.rb
67
- lib/rake/default_loader.rb
68
- lib/rake/dsl_definition.rb
69
- lib/rake/early_time.rb
70
- lib/rake/ext/core.rb
71
- lib/rake/ext/module.rb
72
- lib/rake/ext/pathname.rb
73
- lib/rake/ext/string.rb
74
- lib/rake/ext/time.rb
75
- lib/rake/file_creation_task.rb
76
- lib/rake/file_list.rb
77
- lib/rake/file_task.rb
78
- lib/rake/file_utils.rb
79
- lib/rake/file_utils_ext.rb
80
- lib/rake/gempackagetask.rb
81
- lib/rake/invocation_chain.rb
82
- lib/rake/invocation_exception_mixin.rb
83
- lib/rake/late_time.rb
84
- lib/rake/linked_list.rb
85
- lib/rake/loaders/makefile.rb
86
- lib/rake/multi_task.rb
87
- lib/rake/name_space.rb
88
- lib/rake/packagetask.rb
89
- lib/rake/pathmap.rb
90
- lib/rake/phony.rb
91
- lib/rake/private_reader.rb
92
- lib/rake/promise.rb
93
- lib/rake/pseudo_status.rb
94
- lib/rake/rake_module.rb
95
- lib/rake/rake_test_loader.rb
96
- lib/rake/rdoctask.rb
97
- lib/rake/ruby182_test_unit_fix.rb
98
- lib/rake/rule_recursion_overflow_error.rb
99
- lib/rake/runtest.rb
100
- lib/rake/scope.rb
101
- lib/rake/task.rb
102
- lib/rake/task_argument_error.rb
103
- lib/rake/task_arguments.rb
104
- lib/rake/task_manager.rb
105
- lib/rake/tasklib.rb
106
- lib/rake/testtask.rb
107
- lib/rake/thread_history_display.rb
108
- lib/rake/thread_pool.rb
109
- lib/rake/trace_output.rb
110
- lib/rake/version.rb
111
- lib/rake/win32.rb
112
- rakelib/publish.rake
113
- rakelib/test_times.rake
114
- test/file_creation.rb
115
- test/helper.rb
116
- test/support/rakefile_definitions.rb
117
- test/support/ruby_runner.rb
118
- test/test_private_reader.rb
119
- test/test_rake.rb
120
- test/test_rake_application.rb
121
- test/test_rake_application_options.rb
122
- test/test_rake_backtrace.rb
123
- test/test_rake_clean.rb
124
- test/test_rake_cpu_counter.rb
125
- test/test_rake_definitions.rb
126
- test/test_rake_directory_task.rb
127
- test/test_rake_dsl.rb
128
- test/test_rake_early_time.rb
129
- test/test_rake_extension.rb
130
- test/test_rake_file_creation_task.rb
131
- test/test_rake_file_list.rb
132
- test/test_rake_file_list_path_map.rb
133
- test/test_rake_file_task.rb
134
- test/test_rake_file_utils.rb
135
- test/test_rake_ftp_file.rb
136
- test/test_rake_functional.rb
137
- test/test_rake_invocation_chain.rb
138
- test/test_rake_late_time.rb
139
- test/test_rake_linked_list.rb
140
- test/test_rake_makefile_loader.rb
141
- test/test_rake_multi_task.rb
142
- test/test_rake_name_space.rb
143
- test/test_rake_package_task.rb
144
- test/test_rake_path_map.rb
145
- test/test_rake_path_map_explode.rb
146
- test/test_rake_path_map_partial.rb
147
- test/test_rake_pathname_extensions.rb
148
- test/test_rake_pseudo_status.rb
149
- test/test_rake_rake_test_loader.rb
150
- test/test_rake_reduce_compat.rb
151
- test/test_rake_require.rb
152
- test/test_rake_rules.rb
153
- test/test_rake_scope.rb
154
- test/test_rake_task.rb
155
- test/test_rake_task_argument_parsing.rb
156
- test/test_rake_task_arguments.rb
157
- test/test_rake_task_lib.rb
158
- test/test_rake_task_manager.rb
159
- test/test_rake_task_manager_argument_resolution.rb
160
- test/test_rake_task_with_arguments.rb
161
- test/test_rake_test_task.rb
162
- test/test_rake_thread_pool.rb
163
- test/test_rake_top_level_functions.rb
164
- test/test_rake_win32.rb
165
- test/test_thread_history_display.rb
166
- test/test_trace_output.rb
@@ -1,23 +0,0 @@
1
- = Rake 0.4.14 Released
2
-
3
- == Changes
4
-
5
- Version 0.4.14 is a compatibility fix to allow Rake's test task to
6
- work under Ruby 1.8.2. A change in the Test::Unit autorun feature
7
- prevented Rake from running any tests. This release fixes the
8
- problem.
9
-
10
- Rake 0.4.14 is the recommended release for anyone using Ruby 1.8.2.
11
-
12
- == What is Rake
13
-
14
- Rake is a build tool similar to the make program in many ways. But
15
- instead of cryptic make recipes, Rake uses standard Ruby code to
16
- declare tasks and dependencies. You have the full power of a modern
17
- scripting language built right into your build tool.
18
-
19
- == Availability
20
-
21
- Home Page:: http://rake.rubyforge.org/
22
- Download:: http://rubyforge.org/project/showfiles.php?group_id=50
23
-
@@ -1,35 +0,0 @@
1
- = Rake 0.4.15 Released
2
-
3
- == Changes
4
-
5
- Version 0.4.15 is a bug fix update for the Ruby 1.8.2 compatibility
6
- changes. This release includes:
7
-
8
- * Fixed a bug that prevented the TESTOPTS flag from working with the
9
- revised for 1.8.2 test task.
10
-
11
- * Updated the docs on --trace to indicate that it also enables a full
12
- backtrace on errors.
13
-
14
- * Several fixes for new warnings generated.
15
-
16
- == Mini-Roadmap
17
-
18
- I will continue to issue Rake updates in the 0.4.xx series as new
19
- Ruby-1.8.2 issues become manifest. Once the codebase stabilizes, I
20
- will release a 0.5.0 version incorporating all the changes. If you
21
- are not using Ruby-1.8.2 and wish to avoid version churn, I recommend
22
- staying with a release prior to Rake-0.4.14.
23
-
24
- == What is Rake
25
-
26
- Rake is a build tool similar to the make program in many ways. But
27
- instead of cryptic make recipes, Rake uses standard Ruby code to
28
- declare tasks and dependencies. You have the full power of a modern
29
- scripting language built right into your build tool.
30
-
31
- == Availability
32
-
33
- Home Page:: http://rake.rubyforge.org/
34
- Download:: http://rubyforge.org/project/showfiles.php?group_id=50
35
-
@@ -1,53 +0,0 @@
1
- = Rake 0.5.0 Released
2
-
3
- It has been a long time in coming, but we finally have a new version
4
- of Rake available.
5
-
6
- == Changes
7
-
8
- * Fixed bug where missing intermediate file dependencies could cause
9
- an abort with --trace or --dry-run. (Brian Candler)
10
-
11
- * Recursive rules are now supported (Tilman Sauerbeck).
12
-
13
- * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
14
-
15
- * Added warning option for the Test Task (requested by Eric Hodel).
16
-
17
- * The jamis rdoc template is only used if it exists.
18
-
19
- * Added fix for Ruby 1.8.2 test/unit and rails problem.
20
-
21
- * Added contributed rake man file. (Jani Monoses)
22
-
23
- * Fixed documentation that was lacking the Rake module name (Tilman
24
- Sauerbeck).
25
-
26
- == What is Rake
27
-
28
- Rake is a build tool similar to the make program in many ways. But
29
- instead of cryptic make recipes, Rake uses standard Ruby code to
30
- declare tasks and dependencies. You have the full power of a modern
31
- scripting language built right into your build tool.
32
-
33
- == Availability
34
-
35
- The easiest way to get and install rake is via RubyGems ...
36
-
37
- gem install rake (you may need root/admin privileges)
38
-
39
- Otherwise, you can get it from the more traditional places:
40
-
41
- Home Page:: http://rake.rubyforge.org/
42
- Download:: http://rubyforge.org/project/showfiles.php?group_id=50
43
-
44
- == Thanks
45
-
46
- Lots of people provided input to this release. Thanks to Tilman
47
- Sauerbeck for numerous patches, documentation fixes and suggestions.
48
- And for also pushing me to get this release out. Also, thanks to
49
- Brian Candler for the finding and fixing --trace/dry-run fix. That
50
- was an obscure bug. Also to Eric Hodel for some good suggestions.
51
-
52
- -- Jim Weirich
53
-
@@ -1,78 +0,0 @@
1
- = Rake 0.5.3 Released
2
-
3
- Although it has only been two weeks since the last release, we have
4
- enough updates to the Rake program to make it time for another
5
- release.
6
-
7
- == Changes
8
-
9
- Here are the changes for version 0.5.3 ...
10
-
11
- * FileLists have been extensively changed so that they mimic the
12
- behavior of real arrays even more closely. In particular,
13
- operations on FileLists that return a new collection (e.g. collect,
14
- reject) will now return a FileList rather than an array. In
15
- addition, several places where FileLists were not properly expanded
16
- before use have been fixed.
17
-
18
- * A method (+ext+) to simplify the handling of file extensions was
19
- added to String and to Array.
20
-
21
- * The 'testrb' script in test/unit tends to silently swallow syntax
22
- errors in test suites. Because of that, the default test loader is
23
- now a rake-provided script. You can still use 'testrb' by setting
24
- the loader flag in the test task to :testrb. (See the API documents
25
- for TestTask for all the loader flag values).
26
-
27
- * FileUtil methods (e.g. cp, mv, install) are now declared to be
28
- private. This will cut down on the interference with user defined
29
- methods of the same name.
30
-
31
- * Fixed the verbose flag in the TestTask so that the test code is
32
- controlled by the flag. Also shortened up some failure messages.
33
- (Thanks to Tobias Luetke for the suggestion).
34
-
35
- * Rules will now properly detect a task that can generate a source
36
- file. Previously rules would only consider source files that were
37
- already present.
38
-
39
- * Added an +import+ command that allows Rake to dynamically import
40
- dependendencies into a running Rake session. The +import+ command
41
- can run tasks to update the dependency file before loading them.
42
- Dependency files can be in rake or make format, allowing rake to
43
- work with tools designed to generate dependencies for make.
44
-
45
- == What is Rake
46
-
47
- Rake is a build tool similar to the make program in many ways. But
48
- instead of cryptic make recipes, Rake uses standard Ruby code to
49
- declare tasks and dependencies. You have the full power of a modern
50
- scripting language built right into your build tool.
51
-
52
- == Availability
53
-
54
- The easiest way to get and install rake is via RubyGems ...
55
-
56
- gem install rake (you may need root/admin privileges)
57
-
58
- Otherwise, you can get it from the more traditional places:
59
-
60
- Home Page:: http://rake.rubyforge.org/
61
- Download:: http://rubyforge.org/project/showfiles.php?group_id=50
62
-
63
- == Thanks
64
-
65
- As usual, it was input from users that drove a alot of these changes.
66
- Thanks to ...
67
-
68
- * Brian Gernhardt for the rules fix (especially for the patience to
69
- explain the problem to me until I got what he was talking about).
70
- * Stefan Lang for pointing out problems in the dark corners of the
71
- FileList implementation.
72
- * Alexey Verkhovsky pointing out the silently swallows syntax errors
73
- in tests.
74
- * Tobias Luetke for beautifying the test task output.
75
- * Sam Roberts for some of the ideas behind dependency loading.
76
-
77
- -- Jim Weirich
78
-
@@ -1,46 +0,0 @@
1
- = Rake 0.5.4 Released
2
-
3
- Time for some minor bug fixes and small enhancements
4
-
5
- == Changes
6
-
7
- Here are the changes for version 0.5.4 ...
8
-
9
- * Added double quotes to the test runner. This allows the location of
10
- the tests (and runner) to be in a directory path that contains
11
- spaces (e.g. "C:/Program Files/ruby/bin").
12
-
13
- * Added .svn to default ignore list. Now subversion project metadata
14
- is automatically ignored by Rake's FileList.
15
-
16
- * Updated FileList#include to support nested arrays and filelists.
17
- FileLists are flat lists of file names. Using a FileList in an
18
- include will flatten out the nested file names.
19
-
20
- == What is Rake
21
-
22
- Rake is a build tool similar to the make program in many ways. But
23
- instead of cryptic make recipes, Rake uses standard Ruby code to
24
- declare tasks and dependencies. You have the full power of a modern
25
- scripting language built right into your build tool.
26
-
27
- == Availability
28
-
29
- The easiest way to get and install rake is via RubyGems ...
30
-
31
- gem install rake (you may need root/admin privileges)
32
-
33
- Otherwise, you can get it from the more traditional places:
34
-
35
- Home Page:: http://rake.rubyforge.org/
36
- Download:: http://rubyforge.org/project/showfiles.php?group_id=50
37
-
38
- == Thanks
39
-
40
- As usual, it was input from users that drove a alot of these changes.
41
- Thanks to ...
42
-
43
- * Tilman Sauerbeck for the nested FileList suggestion.
44
- * Josh Knowles for pointing out the spaces in directory name problem.
45
-
46
- -- Jim Weirich