win32-api 1.4.8 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (564) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGES +212 -144
  3. data/Dockerfile +99 -0
  4. data/Dockerfile.trunk +17 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +24 -0
  7. data/MANIFEST +9 -9
  8. data/{README → README.md} +136 -106
  9. data/RELEASE.md +32 -0
  10. data/Rakefile +261 -128
  11. data/appveyor.yml +46 -0
  12. data/build-gem.bat +3 -0
  13. data/ext/Makefile +267 -0
  14. data/ext/api-x64-mingw32.def +2 -0
  15. data/ext/api.o +0 -0
  16. data/ext/api.so +0 -0
  17. data/ext/extconf.rb +15 -11
  18. data/ext/mkmf.log +38 -0
  19. data/ext/win32/api.c +1102 -949
  20. data/ext/win32/api.so +0 -0
  21. data/test.rb +10 -0
  22. data/test/test_win32_api.rb +145 -148
  23. data/test/test_win32_api_callback.rb +74 -74
  24. data/test/test_win32_api_function.rb +66 -66
  25. data/vendor/bundle/ruby/2.5.0/bin/rake +27 -0
  26. data/vendor/bundle/ruby/2.5.0/bin/rake-compiler-dock +27 -0
  27. data/vendor/bundle/ruby/2.5.0/bin/rake-compiler-dock.bat +6 -0
  28. data/vendor/bundle/ruby/2.5.0/bin/rake.bat +6 -0
  29. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/BSDL +22 -0
  30. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/COPYING +57 -0
  31. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/Gemfile +9 -0
  32. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/LEGAL +4 -0
  33. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/README.rdoc +81 -0
  34. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/Rakefile +59 -0
  35. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/bin/console +12 -0
  36. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/bin/setup +6 -0
  37. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert.rb +98 -0
  38. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/colorize.rb +9 -0
  39. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/configuration.rb +46 -0
  40. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/context.rb +235 -0
  41. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/enable_tracepoint_events.rb +91 -0
  42. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/inspector.rb +61 -0
  43. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/parser.rb +251 -0
  44. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/lib/power_assert/version.rb +3 -0
  45. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.5/power_assert.gemspec +31 -0
  46. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/BSDL +22 -0
  47. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/COPYING +57 -0
  48. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/Gemfile +9 -0
  49. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/LEGAL +4 -0
  50. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/README.rdoc +81 -0
  51. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/Rakefile +59 -0
  52. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/bin/console +12 -0
  53. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/bin/setup +6 -0
  54. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert.rb +98 -0
  55. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/colorize.rb +9 -0
  56. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/configuration.rb +46 -0
  57. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/context.rb +238 -0
  58. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/enable_tracepoint_events.rb +91 -0
  59. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/inspector.rb +61 -0
  60. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/parser.rb +251 -0
  61. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/lib/power_assert/version.rb +3 -0
  62. data/vendor/bundle/ruby/2.5.0/gems/power_assert-1.1.7/power_assert.gemspec +31 -0
  63. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
  64. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/Gemfile +10 -0
  65. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/History.rdoc +2368 -0
  66. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/MIT-LICENSE +21 -0
  67. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/README.rdoc +155 -0
  68. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/Rakefile +41 -0
  69. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/bundle +105 -0
  70. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/console +7 -0
  71. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/rake +29 -0
  72. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/rdoc +29 -0
  73. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/rubocop +29 -0
  74. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/bin/setup +6 -0
  75. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
  76. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
  77. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
  78. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/example/a.c +6 -0
  79. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/example/b.c +6 -0
  80. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/example/main.c +11 -0
  81. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
  82. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/jamis.rb +592 -0
  83. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
  84. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/rake.1 +156 -0
  85. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
  86. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/doc/rational.rdoc +151 -0
  87. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/exe/rake +27 -0
  88. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake.rb +71 -0
  89. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/application.rb +824 -0
  90. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
  91. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
  92. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
  93. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
  94. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
  95. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
  96. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
  97. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
  98. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
  99. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
  100. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
  101. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
  102. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
  103. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
  104. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
  105. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
  106. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
  107. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
  108. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
  109. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
  110. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
  111. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
  112. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
  113. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
  114. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
  115. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
  116. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
  117. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
  118. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  119. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
  120. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/task.rb +434 -0
  121. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
  122. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
  123. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
  124. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
  125. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
  126. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
  127. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
  128. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
  129. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/version.rb +10 -0
  130. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
  131. data/vendor/bundle/ruby/2.5.0/gems/rake-13.0.1/rake.gemspec +43 -0
  132. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/Dockerfile.jruby +61 -0
  133. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/Dockerfile.mri +122 -0
  134. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/Gemfile +8 -0
  135. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/History.md +130 -0
  136. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/LICENSE.txt +22 -0
  137. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/README.md +162 -0
  138. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/Rakefile +36 -0
  139. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/bin/rake-compiler-dock +18 -0
  140. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/mk_i686.rb +16 -0
  141. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/patches/rake-compiler-1.0.7/enable-static.diff +13 -0
  142. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/patches/ruby-2.5.3/no_sendfile.patch +24 -0
  143. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/runas +12 -0
  144. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/sigfw.c +45 -0
  145. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/strip_wrapper +30 -0
  146. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/build/sudoers +1 -0
  147. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock.rb +66 -0
  148. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/colors.rb +43 -0
  149. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/docker_check.rb +350 -0
  150. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/gem_helper.rb +73 -0
  151. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/predefined_user_group.rb +5 -0
  152. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/starter.rb +155 -0
  153. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/lib/rake_compiler_dock/version.rb +4 -0
  154. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/rake-compiler-dock.gemspec +28 -0
  155. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/test/test_environment_variables.rb +54 -0
  156. data/vendor/bundle/ruby/2.5.0/gems/rake-compiler-dock-0.7.2/test/test_starter.rb +33 -0
  157. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/COPYING +67 -0
  158. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/GPL +339 -0
  159. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/LGPL +502 -0
  160. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/PSFL +271 -0
  161. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/README.md +101 -0
  162. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/Rakefile +80 -0
  163. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/doc/text/getting-started.md +246 -0
  164. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/doc/text/how-to.md +90 -0
  165. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/doc/text/news.md +1453 -0
  166. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test-unit.rb +34 -0
  167. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit.rb +514 -0
  168. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/assertion-failed-error.rb +25 -0
  169. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/assertions.rb +2256 -0
  170. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/attribute-matcher.rb +26 -0
  171. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/attribute.rb +227 -0
  172. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/auto-runner-loader.rb +17 -0
  173. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/autorunner.rb +537 -0
  174. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/code-snippet-fetcher.rb +56 -0
  175. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector.rb +73 -0
  176. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector/descendant.rb +19 -0
  177. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector/dir.rb +108 -0
  178. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector/load.rb +197 -0
  179. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector/objectspace.rb +34 -0
  180. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/collector/xml.rb +249 -0
  181. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/color-scheme.rb +198 -0
  182. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/color.rb +134 -0
  183. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/data-sets.rb +116 -0
  184. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/data.rb +371 -0
  185. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/diff.rb +746 -0
  186. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/error.rb +158 -0
  187. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/exception-handler.rb +82 -0
  188. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/failure.rb +169 -0
  189. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/fault-location-detector.rb +100 -0
  190. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/fixture.rb +298 -0
  191. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/notification.rb +138 -0
  192. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/omission.rb +198 -0
  193. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/pending.rb +155 -0
  194. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/priority.rb +196 -0
  195. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/runner/console.rb +84 -0
  196. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/runner/emacs.rb +8 -0
  197. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/runner/xml.rb +15 -0
  198. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/test-suite-creator.rb +103 -0
  199. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/testcase.rb +899 -0
  200. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/testresult.rb +132 -0
  201. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/testsuite.rb +175 -0
  202. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/console/outputlevel.rb +15 -0
  203. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/console/testrunner.rb +750 -0
  204. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  205. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/testrunner.rb +53 -0
  206. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/testrunnermediator.rb +114 -0
  207. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  208. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/ui/xml/testrunner.rb +224 -0
  209. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/util/backtracefilter.rb +59 -0
  210. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/util/method-owner-finder.rb +28 -0
  211. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/util/observable.rb +90 -0
  212. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/util/output.rb +32 -0
  213. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/util/procwrapper.rb +48 -0
  214. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/lib/test/unit/version.rb +5 -0
  215. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/sample/adder.rb +13 -0
  216. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/sample/subtracter.rb +12 -0
  217. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/sample/test_adder.rb +20 -0
  218. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/sample/test_subtracter.rb +20 -0
  219. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/sample/test_user.rb +23 -0
  220. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/collector/test-descendant.rb +182 -0
  221. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/collector/test-load.rb +475 -0
  222. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/collector/test_dir.rb +407 -0
  223. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/collector/test_objectspace.rb +102 -0
  224. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/header-label.csv +3 -0
  225. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/header-label.tsv +3 -0
  226. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/header.csv +3 -0
  227. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/header.tsv +3 -0
  228. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/no-header.csv +2 -0
  229. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/no-header.tsv +2 -0
  230. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/fixtures/plus.csv +3 -0
  231. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/run-test.rb +22 -0
  232. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-assertions.rb +2187 -0
  233. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-attribute-matcher.rb +38 -0
  234. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-attribute.rb +123 -0
  235. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-code-snippet.rb +79 -0
  236. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-color-scheme.rb +82 -0
  237. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-color.rb +47 -0
  238. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-data.rb +419 -0
  239. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-diff.rb +518 -0
  240. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-emacs-runner.rb +60 -0
  241. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-error.rb +26 -0
  242. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-failure.rb +33 -0
  243. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-fault-location-detector.rb +163 -0
  244. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-fixture.rb +713 -0
  245. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-notification.rb +33 -0
  246. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-omission.rb +81 -0
  247. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-pending.rb +70 -0
  248. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-priority.rb +184 -0
  249. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-test-case.rb +1279 -0
  250. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-test-result.rb +113 -0
  251. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-test-suite-creator.rb +97 -0
  252. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/test-test-suite.rb +151 -0
  253. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/testunit-test-util.rb +33 -0
  254. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/ui/test_testrunmediator.rb +20 -0
  255. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/util/test-method-owner-finder.rb +38 -0
  256. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/util/test-output.rb +11 -0
  257. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/util/test_backtracefilter.rb +52 -0
  258. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/util/test_observable.rb +102 -0
  259. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.4/test/util/test_procwrapper.rb +36 -0
  260. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/COPYING +67 -0
  261. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/GPL +339 -0
  262. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/LGPL +502 -0
  263. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/PSFL +271 -0
  264. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/README.md +101 -0
  265. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/Rakefile +80 -0
  266. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/doc/text/getting-started.md +246 -0
  267. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/doc/text/how-to.md +90 -0
  268. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/doc/text/news.md +1464 -0
  269. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test-unit.rb +34 -0
  270. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit.rb +514 -0
  271. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/assertion-failed-error.rb +25 -0
  272. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/assertions.rb +2256 -0
  273. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/attribute-matcher.rb +26 -0
  274. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/attribute.rb +227 -0
  275. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/auto-runner-loader.rb +17 -0
  276. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/autorunner.rb +537 -0
  277. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/code-snippet-fetcher.rb +58 -0
  278. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector.rb +73 -0
  279. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector/descendant.rb +19 -0
  280. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector/dir.rb +108 -0
  281. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector/load.rb +197 -0
  282. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector/objectspace.rb +34 -0
  283. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/collector/xml.rb +249 -0
  284. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/color-scheme.rb +198 -0
  285. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/color.rb +134 -0
  286. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/data-sets.rb +116 -0
  287. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/data.rb +371 -0
  288. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/diff.rb +746 -0
  289. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/error.rb +158 -0
  290. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/exception-handler.rb +82 -0
  291. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/failure.rb +169 -0
  292. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/fault-location-detector.rb +100 -0
  293. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/fixture.rb +298 -0
  294. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/notification.rb +138 -0
  295. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/omission.rb +198 -0
  296. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/pending.rb +155 -0
  297. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/priority.rb +196 -0
  298. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/runner/console.rb +84 -0
  299. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/runner/emacs.rb +8 -0
  300. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/runner/xml.rb +15 -0
  301. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/test-suite-creator.rb +103 -0
  302. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/testcase.rb +899 -0
  303. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/testresult.rb +132 -0
  304. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/testsuite.rb +175 -0
  305. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/console/outputlevel.rb +15 -0
  306. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/console/testrunner.rb +750 -0
  307. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  308. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunner.rb +53 -0
  309. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunnermediator.rb +114 -0
  310. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  311. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/ui/xml/testrunner.rb +224 -0
  312. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/util/backtracefilter.rb +59 -0
  313. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/util/method-owner-finder.rb +28 -0
  314. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/util/observable.rb +90 -0
  315. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/util/output.rb +32 -0
  316. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/util/procwrapper.rb +48 -0
  317. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/lib/test/unit/version.rb +5 -0
  318. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/sample/adder.rb +13 -0
  319. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/sample/subtracter.rb +12 -0
  320. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/sample/test_adder.rb +20 -0
  321. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/sample/test_subtracter.rb +20 -0
  322. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/sample/test_user.rb +23 -0
  323. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/collector/test-descendant.rb +182 -0
  324. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/collector/test-load.rb +475 -0
  325. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/collector/test_dir.rb +407 -0
  326. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/collector/test_objectspace.rb +102 -0
  327. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/header-label.csv +3 -0
  328. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/header-label.tsv +3 -0
  329. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/header.csv +3 -0
  330. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/header.tsv +3 -0
  331. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/no-header.csv +2 -0
  332. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/no-header.tsv +2 -0
  333. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/fixtures/plus.csv +3 -0
  334. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/run-test.rb +22 -0
  335. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-assertions.rb +2187 -0
  336. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-attribute-matcher.rb +38 -0
  337. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-attribute.rb +123 -0
  338. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-code-snippet.rb +79 -0
  339. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-color-scheme.rb +82 -0
  340. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-color.rb +47 -0
  341. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-data.rb +419 -0
  342. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-diff.rb +518 -0
  343. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-emacs-runner.rb +60 -0
  344. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-error.rb +26 -0
  345. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-failure.rb +33 -0
  346. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-fault-location-detector.rb +163 -0
  347. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-fixture.rb +713 -0
  348. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-notification.rb +33 -0
  349. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-omission.rb +81 -0
  350. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-pending.rb +70 -0
  351. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-priority.rb +184 -0
  352. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-test-case.rb +1279 -0
  353. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-test-result.rb +113 -0
  354. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-test-suite-creator.rb +97 -0
  355. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/test-test-suite.rb +151 -0
  356. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/testunit-test-util.rb +33 -0
  357. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/ui/test_testrunmediator.rb +20 -0
  358. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/util/test-method-owner-finder.rb +38 -0
  359. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/util/test-output.rb +11 -0
  360. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/util/test_backtracefilter.rb +52 -0
  361. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/util/test_observable.rb +102 -0
  362. data/vendor/bundle/ruby/2.5.0/gems/test-unit-3.3.5/test/util/test_procwrapper.rb +36 -0
  363. data/vendor/bundle/ruby/2.5.0/specifications/power_assert-1.1.5.gemspec +54 -0
  364. data/vendor/bundle/ruby/2.5.0/specifications/power_assert-1.1.7.gemspec +54 -0
  365. data/vendor/bundle/ruby/2.5.0/specifications/rake-13.0.1.gemspec +26 -0
  366. data/vendor/bundle/ruby/2.5.0/specifications/rake-compiler-dock-0.7.2.gemspec +40 -0
  367. data/vendor/bundle/ruby/2.5.0/specifications/test-unit-3.3.4.gemspec +48 -0
  368. data/vendor/bundle/ruby/2.5.0/specifications/test-unit-3.3.5.gemspec +48 -0
  369. data/vendor/bundle/ruby/2.7.0/bin/rake +27 -0
  370. data/vendor/bundle/ruby/2.7.0/bin/rake.bat +2 -0
  371. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/BSDL +22 -0
  372. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/COPYING +57 -0
  373. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/Gemfile +9 -0
  374. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/LEGAL +4 -0
  375. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/README.rdoc +81 -0
  376. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/Rakefile +59 -0
  377. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/bin/console +12 -0
  378. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/bin/setup +6 -0
  379. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert.rb +98 -0
  380. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/colorize.rb +9 -0
  381. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/configuration.rb +46 -0
  382. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/context.rb +238 -0
  383. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/enable_tracepoint_events.rb +91 -0
  384. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/inspector.rb +61 -0
  385. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/parser.rb +251 -0
  386. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/lib/power_assert/version.rb +3 -0
  387. data/vendor/bundle/ruby/2.7.0/gems/power_assert-1.1.7/power_assert.gemspec +31 -0
  388. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
  389. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/Gemfile +10 -0
  390. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/History.rdoc +2368 -0
  391. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/MIT-LICENSE +21 -0
  392. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/README.rdoc +155 -0
  393. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/Rakefile +41 -0
  394. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/bundle +105 -0
  395. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/console +7 -0
  396. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rake +29 -0
  397. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rdoc +29 -0
  398. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/rubocop +29 -0
  399. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/bin/setup +6 -0
  400. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
  401. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
  402. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
  403. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/a.c +6 -0
  404. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/b.c +6 -0
  405. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/example/main.c +11 -0
  406. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
  407. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/jamis.rb +592 -0
  408. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
  409. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rake.1 +156 -0
  410. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
  411. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/doc/rational.rdoc +151 -0
  412. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/exe/rake +27 -0
  413. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake.rb +71 -0
  414. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/application.rb +824 -0
  415. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
  416. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
  417. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
  418. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
  419. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
  420. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
  421. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
  422. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
  423. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
  424. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
  425. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
  426. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
  427. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
  428. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
  429. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
  430. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
  431. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
  432. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
  433. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
  434. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
  435. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
  436. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
  437. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
  438. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
  439. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
  440. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
  441. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
  442. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
  443. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  444. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
  445. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task.rb +434 -0
  446. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
  447. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
  448. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
  449. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
  450. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
  451. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
  452. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
  453. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
  454. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/version.rb +10 -0
  455. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
  456. data/vendor/bundle/ruby/2.7.0/gems/rake-13.0.1/rake.gemspec +43 -0
  457. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/COPYING +67 -0
  458. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/GPL +339 -0
  459. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/LGPL +502 -0
  460. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/PSFL +271 -0
  461. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/README.md +101 -0
  462. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/Rakefile +80 -0
  463. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/doc/text/getting-started.md +246 -0
  464. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/doc/text/how-to.md +90 -0
  465. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/doc/text/news.md +1464 -0
  466. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test-unit.rb +34 -0
  467. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit.rb +514 -0
  468. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/assertion-failed-error.rb +25 -0
  469. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/assertions.rb +2256 -0
  470. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/attribute-matcher.rb +26 -0
  471. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/attribute.rb +227 -0
  472. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/auto-runner-loader.rb +17 -0
  473. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/autorunner.rb +537 -0
  474. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/code-snippet-fetcher.rb +58 -0
  475. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector.rb +73 -0
  476. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector/descendant.rb +19 -0
  477. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector/dir.rb +108 -0
  478. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector/load.rb +197 -0
  479. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector/objectspace.rb +34 -0
  480. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/collector/xml.rb +249 -0
  481. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/color-scheme.rb +198 -0
  482. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/color.rb +134 -0
  483. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/data-sets.rb +116 -0
  484. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/data.rb +371 -0
  485. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/diff.rb +746 -0
  486. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/error.rb +158 -0
  487. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/exception-handler.rb +82 -0
  488. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/failure.rb +169 -0
  489. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/fault-location-detector.rb +100 -0
  490. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/fixture.rb +298 -0
  491. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/notification.rb +138 -0
  492. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/omission.rb +198 -0
  493. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/pending.rb +155 -0
  494. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/priority.rb +196 -0
  495. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/runner/console.rb +84 -0
  496. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/runner/emacs.rb +8 -0
  497. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/runner/xml.rb +15 -0
  498. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/test-suite-creator.rb +103 -0
  499. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/testcase.rb +899 -0
  500. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/testresult.rb +132 -0
  501. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/testsuite.rb +175 -0
  502. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/console/outputlevel.rb +15 -0
  503. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/console/testrunner.rb +750 -0
  504. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  505. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunner.rb +53 -0
  506. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunnermediator.rb +114 -0
  507. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  508. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/ui/xml/testrunner.rb +224 -0
  509. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/util/backtracefilter.rb +59 -0
  510. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/util/method-owner-finder.rb +28 -0
  511. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/util/observable.rb +90 -0
  512. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/util/output.rb +32 -0
  513. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/util/procwrapper.rb +48 -0
  514. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/lib/test/unit/version.rb +5 -0
  515. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/sample/adder.rb +13 -0
  516. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/sample/subtracter.rb +12 -0
  517. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/sample/test_adder.rb +20 -0
  518. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/sample/test_subtracter.rb +20 -0
  519. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/sample/test_user.rb +23 -0
  520. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/collector/test-descendant.rb +182 -0
  521. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/collector/test-load.rb +475 -0
  522. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/collector/test_dir.rb +407 -0
  523. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/collector/test_objectspace.rb +102 -0
  524. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/header-label.csv +3 -0
  525. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/header-label.tsv +3 -0
  526. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/header.csv +3 -0
  527. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/header.tsv +3 -0
  528. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/no-header.csv +2 -0
  529. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/no-header.tsv +2 -0
  530. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/fixtures/plus.csv +3 -0
  531. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/run-test.rb +22 -0
  532. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-assertions.rb +2187 -0
  533. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-attribute-matcher.rb +38 -0
  534. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-attribute.rb +123 -0
  535. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-code-snippet.rb +79 -0
  536. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-color-scheme.rb +82 -0
  537. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-color.rb +47 -0
  538. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-data.rb +419 -0
  539. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-diff.rb +518 -0
  540. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-emacs-runner.rb +60 -0
  541. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-error.rb +26 -0
  542. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-failure.rb +33 -0
  543. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-fault-location-detector.rb +163 -0
  544. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-fixture.rb +713 -0
  545. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-notification.rb +33 -0
  546. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-omission.rb +81 -0
  547. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-pending.rb +70 -0
  548. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-priority.rb +184 -0
  549. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-test-case.rb +1279 -0
  550. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-test-result.rb +113 -0
  551. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-test-suite-creator.rb +97 -0
  552. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/test-test-suite.rb +151 -0
  553. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/testunit-test-util.rb +33 -0
  554. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/ui/test_testrunmediator.rb +20 -0
  555. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/util/test-method-owner-finder.rb +38 -0
  556. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/util/test-output.rb +11 -0
  557. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/util/test_backtracefilter.rb +52 -0
  558. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/util/test_observable.rb +102 -0
  559. data/vendor/bundle/ruby/2.7.0/gems/test-unit-3.3.5/test/util/test_procwrapper.rb +36 -0
  560. data/vendor/bundle/ruby/2.7.0/specifications/power_assert-1.1.7.gemspec +46 -0
  561. data/vendor/bundle/ruby/2.7.0/specifications/rake-13.0.1.gemspec +26 -0
  562. data/vendor/bundle/ruby/2.7.0/specifications/test-unit-3.3.5.gemspec +41 -0
  563. data/win32-api.gemspec +27 -29
  564. metadata +610 -63
@@ -0,0 +1,3 @@
1
+ module PowerAssert
2
+ VERSION = "1.1.7"
3
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'power_assert/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'power_assert'
8
+ s.version = PowerAssert::VERSION
9
+ s.authors = ['Kazuki Tsujimoto']
10
+ s.email = ['kazuki@callcc.net']
11
+ s.homepage = 'https://github.com/k-tsj/power_assert'
12
+ s.summary = "Power Assert for Ruby"
13
+ s.description = "Power Assert for Ruby. Power Assert shows each value of variables and method calls in the expression. It is useful for testing, providing which value wasn't correct when the condition is not satisfied."
14
+
15
+ s.files = `git ls-files -z`.split("\x0").reject do |f|
16
+ f.match(%r{^(test|spec|features|benchmark)/})
17
+ end
18
+ s.bindir = 'exe'
19
+ s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ s.require_paths = ['lib']
21
+ s.add_development_dependency 'test-unit'
22
+ s.add_development_dependency 'rake'
23
+ s.add_development_dependency 'simplecov'
24
+ s.add_development_dependency 'bundler'
25
+ s.add_development_dependency 'pry'
26
+ s.add_development_dependency 'byebug'
27
+ s.add_development_dependency 'benchmark-ips'
28
+ s.extra_rdoc_files = ['README.rdoc']
29
+ s.rdoc_options = ['--main', 'README.rdoc']
30
+ s.licenses = ['2-clause BSDL', "Ruby's"]
31
+ end
@@ -0,0 +1,43 @@
1
+ = Source Repository
2
+
3
+ Rake is currently hosted at github. The github web page is
4
+ https://github.com/ruby/rake . The public git clone URL is
5
+
6
+ https://github.com/ruby/rake.git
7
+
8
+ = Running the Rake Test Suite
9
+
10
+ If you wish to run the unit and functional tests that come with Rake:
11
+
12
+ * +cd+ into the top project directory of rake.
13
+ * Install gem dependency using bundler:
14
+
15
+ $ bundle install # Install bundler, minitest and rdoc
16
+
17
+ * Run the test suite
18
+
19
+ $ rake
20
+
21
+ = Rubocop
22
+
23
+ Rake uses Rubocop to enforce a consistent style on new changes being
24
+ proposed. You can check your code with Rubocop using:
25
+
26
+ $ ./bin/rubocop
27
+
28
+ = Issues and Bug Reports
29
+
30
+ Feel free to submit commits or feature requests. If you send a patch,
31
+ remember to update the corresponding unit tests. In fact, I prefer
32
+ new feature to be submitted in the form of new unit tests.
33
+
34
+ For other information, feel free to ask on the ruby-talk mailing list.
35
+
36
+ If you have found a bug in rake please try with the latest version of rake
37
+ before filing an issue. Also check History.rdoc for bug fixes that may have
38
+ addressed your issue.
39
+
40
+ When submitting pull requests please check the rake Travis-CI page for test
41
+ failures:
42
+
43
+ https://travis-ci.org/ruby/rake
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem "bundler"
7
+ gem "minitest"
8
+ gem "coveralls"
9
+ gem "rubocop"
10
+ end
@@ -0,0 +1,2368 @@
1
+ === 13.0.1
2
+
3
+ ==== Bug fixes
4
+
5
+ * Fixed bug: Reenabled task raises previous exception on second invokation
6
+ Pull Request #271 by thorsteneckel
7
+ * Fix an incorrectly resolved arg pattern
8
+ Pull Request #327 by mjbellantoni
9
+
10
+ === 13.0.0
11
+
12
+ ==== Enhancements
13
+
14
+ * Follows recent changes on keyword arguments in ruby 2.7.
15
+ Pull Request #326 by nobu
16
+ * Make `PackageTask` be able to omit parent directory while packing files
17
+ Pull Request #310 by tonytonyjan
18
+ * Add order only dependency
19
+ Pull Request #269 by take-cheeze
20
+
21
+ ==== Compatibility changes
22
+
23
+ * Drop old ruby versions(< 2.2)
24
+
25
+ === 12.3.3
26
+
27
+ ==== Bug fixes
28
+
29
+ * Use the application's name in error message if a task is not found.
30
+ Pull Request #303 by tmatilai
31
+
32
+ ==== Enhancements:
33
+
34
+ * Use File.open explicitly.
35
+
36
+ === 12.3.2
37
+
38
+ ==== Bug fixes
39
+
40
+ * Fixed test fails caused by 2.6 warnings.
41
+ Pull Request #297 by hsbt
42
+
43
+ ==== Enhancements:
44
+
45
+ * Rdoc improvements.
46
+ Pull Request #293 by colby-swandale
47
+ * Improve multitask performance.
48
+ Pull Request #273 by jsm
49
+ * Add alias `prereqs`.
50
+ Pull Request #268 by take-cheeze
51
+
52
+ === 12.3.1
53
+
54
+ ==== Bug fixes
55
+
56
+ * Support did_you_mean >= v1.2.0 which has a breaking change on formatters.
57
+ Pull request #262 by FUJI Goro.
58
+
59
+ ==== Enhancements:
60
+
61
+ * Don't run task if it depends on already invoked but failed task.
62
+ Pull request #252 by Gonzalo Rodriguez.
63
+ * Make space trimming consistent for all task arguments.
64
+ Pull request #259 by Gonzalo Rodriguez.
65
+ * Removes duplicated inclusion of Rake::DSL in tests.
66
+ Pull request #254 by Gonzalo Rodriguez.
67
+ * Re-raise a LoadError that didn't come from require in the test loader.
68
+ Pull request #250 by Dylan Thacker-Smith.
69
+
70
+ === 12.3.0
71
+
72
+ ==== Compatibility Changes
73
+
74
+ * Bump `required_ruby_version` to Ruby 2.0.0. Rake has already
75
+ removed support for Ruby 1.9.x.
76
+
77
+ ==== Enhancements:
78
+
79
+ * Support `test-bundled-gems` task on ruby core.
80
+
81
+ === 12.2.1
82
+
83
+ ==== Bug fixes
84
+
85
+ * Fixed to break Capistrano::Application on capistrano3.
86
+
87
+ === 12.2.0
88
+
89
+ ==== Enhancements:
90
+
91
+ * Make rake easier to use as a library
92
+ Pull request #211 by @drbrain
93
+ * Fix quadratic performance in FileTask#out_of_date?
94
+ Pull request #224 by @doudou
95
+ * Clarify output when printing nested exception traces
96
+ Pull request #232 by @urbanautomaton
97
+
98
+ ==== Bug fixes
99
+
100
+ * Account for a file that match 2 or more patterns.
101
+ Pull request #231 by @styd
102
+
103
+ === 12.1.0
104
+
105
+ ==== Enhancements:
106
+
107
+ * Added did_you_mean feature for invalid rake task.
108
+ Pull request #221 by @xtina-starr
109
+ * Enabled to dependency chained by extensions. Pull request #39 by Petr Skocik.
110
+ * Make all of string literals to frozen objects on Ruby 2.4 or later.
111
+
112
+ ==== Bug fixes
113
+
114
+ * Typo fixes in rakefile.rdoc. Pull request #180 by Yuta Kurotaki.
115
+ * Fix unexpected behavior of file task with dryrun option.
116
+ Pull request #183 by @aycabta.
117
+ * Make LoadError from running tests more obvious. Pull request #195
118
+ by Eric Hodel.
119
+ * Fix unexpected TypeError with hash style option. Pull request #202
120
+ by Kuniaki IGARASHI.
121
+
122
+ === 12.0.0
123
+
124
+ ==== Compatibility Changes
125
+
126
+ * Removed arguments on clear #157 by Jesse Bowes
127
+ * Removed `rake/contrib` packages. These are extracted to `rake-contrib` gem.
128
+ * Removed deprecated method named `last\_comment`.
129
+
130
+ ==== Enhancements:
131
+
132
+ * Re-use trace option on `cleanup` task. #164 by Brian Henderson
133
+ * Actions adore keyword arguments #174 by Josh Cheek
134
+ * Rake::TaskArguments#key? alias of #has_key? #175 by Paul Annesley
135
+
136
+ === 11.3.0 / 2016-09-20
137
+
138
+ ==== Enhancements:
139
+
140
+ * Remove to reference `Fixnum` constant. Pull request #160 by nobu
141
+
142
+ === 11.2.2 / 2016-06-12
143
+
144
+ ==== Bug fixes
145
+
146
+ * Fix unexpected behavior with multiple dependencies on Rake::TestTask
147
+
148
+ === 11.2.1 / 2016-06-12
149
+
150
+ ==== Bug fixes
151
+
152
+ * Fix regression of dependencies handling on Rake::TestTask. Report #139
153
+
154
+ === 11.2.0 / 2016-06-11
155
+
156
+ ==== Bug fixes
157
+
158
+ * Fix unexpected cut-out behavior on task description using triple dots
159
+ and exclamation. Report #106 from Stephan Kämper and Pull request #134 by Lee
160
+ * Fix empty argument assignment with `with_defaults` option. Pull request #135
161
+ by bakunyo
162
+ * Ignore to use `hwprefs` on Darwin platform. Use sysctl now. Report #128
163
+
164
+ ==== Enhancements
165
+
166
+ * Spawn options for sh Pull equest #138 by Eric Hodel.
167
+ * Allow to specify dependencies(prerequisites) for Rake::TestTask
168
+ Pull request #117 by Tim Maslyuchenko
169
+ * Use Bundler task instead of hoe for gem release.
170
+ * Remove explicitly load to rubygems for Ruby 1.8.
171
+ * Unify to declare `Rake::VERSION`.
172
+ * Support xz format for PackageTask.
173
+
174
+ === 11.1.2 / 2016-03-28
175
+
176
+ ==== Bug fixes
177
+
178
+ * Remove `-W` option when Rake::TestTask#verbose enabled. It's misunderstanding
179
+ specification change with Rake 11. Partly revert #67
180
+
181
+ === 11.1.1 / 2016-03-14
182
+
183
+ ==== Bug fixes
184
+
185
+ * Use `-W` instead of `--verbose` when Rake::TestTask#verbose enabled.
186
+ JRuby doesn't have `--verbose` option.
187
+
188
+ === 11.1.0 / 2016-03-11
189
+
190
+ ==== Compatibility Changes
191
+
192
+ * Revert to remove `last\_comment`. It will remove Rake 12.
193
+
194
+ === 11.0.1 / 2016-03-09
195
+
196
+ ==== Bug fixes
197
+
198
+ * Fixed packaging manifest.
199
+
200
+ === 11.0.0 / 2016-03-09
201
+
202
+ ==== Bug fixes
203
+
204
+ * Correctly handle bad encoding in exception messages. Pull request #113
205
+ by Tomer Brisker
206
+ * Fix verbose option at TestTask. Pull request #67 by Mike Blumtritt
207
+
208
+ ==== Enhancements
209
+
210
+ * Make FileList#exclude more analogous to FileList#include.
211
+ * Use IO.open instead of Open3.popen3 for CPU counter.
212
+ * Make Rake::Task#already_invoked publicly accessible.
213
+ Pull request #93 by Joe Rafaniello
214
+ * Lookup prerequisites with same name outside of scope instead of
215
+ matching self. Pull request #96 by Sandy Vanderbleek
216
+ * Make FileList#pathmap behave like String#pathmap.
217
+ Pull request #61 by Daniel Tamai
218
+ * Add fetch method to task arguments.
219
+ Pull request #12 by Chris Keathley
220
+ * Use ruby warnings by default. Pull request #97 by Harold Giménez
221
+
222
+ ==== Compatibility Changes
223
+
224
+ * Removed to support Ruby 1.8.x
225
+ * Removed constant named `RAKEVERSION`
226
+ * Removed Rake::AltSystem
227
+ * Removed Rake::RubyForgePublisher
228
+ * Removed Rake::TaskManager#last\_comment. Use last\_description.
229
+ * Removed Rake::TaskLib#paste
230
+ * Removed Top-level SshDirPublisher, SshFreshDirPublisher, SshFilePublisher
231
+ and CompositePublisher from lib/rake/contrib/publisher.rb
232
+ * Removed "rake/runtest.rb"
233
+
234
+ === 10.5.0 / 2016-01-13
235
+
236
+ ==== Enhancements
237
+
238
+ * Removed monkey patching for Ruby 1.8. Pull request #46 by Pablo Herrero.
239
+ * Inheritance class of Rake::FileList returns always self class.
240
+ Pull request #74 by Thomas Scholz
241
+
242
+ === 10.4.2 / 2014-12-02
243
+
244
+ ==== Bug fixes
245
+
246
+ * Rake no longer edits ARGV. This allows you to re-exec rake from a rake
247
+ task. Pull requset #9 by Matt Palmer.
248
+ * Documented how Rake::DSL#desc handles sentences in task descriptions.
249
+ Issue #7 by Raza Sayed.
250
+ * Fixed test error on 1.9.3 with legacy RubyGems. Issue #8 by Matt Palmer.
251
+ * Deleted duplicated History entry. Pull request #10 by Yuji Yamamoto.
252
+
253
+ === 10.4.1 / 2014-12-01
254
+
255
+ ==== Bug fixes
256
+
257
+ * Reverted fix for #277 as it caused numerous issues for rake users.
258
+ rails/spring issue #366 by Gustavo Dutra.
259
+
260
+ === 10.4.0 / 2014-11-22
261
+
262
+ ==== Enhancements
263
+
264
+ * Upgraded to minitest 5. Pull request #292 by Teo Ljungberg.
265
+ * Added support for Pathname in rake tasks. Pull request #271 by Randy
266
+ Coulman.
267
+ * Rake now ignores falsy dependencies which allows for easier programmatic
268
+ creation of tasks. Pull request #273 by Manav.
269
+ * Rake no longer edits ARGV. This allows you to re-exec rake from a rake
270
+ task. Issue #277 by Matt Palmer.
271
+ * Etc.nprocessors is used for counting the number of CPUs.
272
+
273
+ ==== Bug fixes
274
+
275
+ * Updated rake manpage. Issue #283 by Nathan Long, pull request #291 by
276
+ skittleys.
277
+ * Add Rake::LATE to allow rebuilding of files that depend on deleted files.
278
+ Bug #286, pull request #287 by David Grayson.
279
+ * Fix relinking of files when repackaging. Bug #276 by Muenze.
280
+ * Fixed some typos. Pull request #280 by Jed Northridge.
281
+ * Try counting CPUs via cpuinfo if host_os was not matched. Pull request
282
+ #282 by Edouard B.
283
+
284
+ === 10.3.2 / 2014-05-15
285
+
286
+ ==== Bug fixes
287
+
288
+ * Rake no longer infinitely loops when showing exception causes that refer to
289
+ each other. Bug #272 by Chris Bandy.
290
+ * Fixed documentation typos. Bug #275 by Jake Worth.
291
+
292
+ === 10.3.1 / 2014-04-17
293
+
294
+ ==== Bug fixes
295
+
296
+ * Really stop reporting an error when cleaning already-deleted files. Pull
297
+ request #269 by Randy Coulman
298
+ * Fixed infinite loop when cleaning already-deleted files on windows.
299
+
300
+ === 10.3 / 2014-04-15
301
+
302
+ ==== Enhancements
303
+
304
+ * Added --build-all option to rake which treats all file prerequisites as
305
+ out-of-date. Pull request #254 by Andrew Gilbert.
306
+ * Added Rake::NameSpace#scope. Issue #263 by Jon San Miguel.
307
+
308
+ ==== Bug fixes
309
+
310
+ * Suppress org.jruby package files in rake error messages for JRuby users.
311
+ Issue #213 by Charles Nutter.
312
+ * Fixed typo, removed extra "h". Pull request #267 by Hsing-Hui Hsu.
313
+ * Rake no longer reports an error when cleaning already-deleted files. Pull
314
+ request #266 by Randy Coulman.
315
+ * Consume stderr while determining CPU count to avoid hang. Issue #268 by
316
+ Albert Sun.
317
+
318
+ === 10.2.2 / 2014-03-27
319
+
320
+ ==== Bug fixes
321
+
322
+ * Restored Ruby 1.8.7 compatibility
323
+
324
+ === 10.2.1 / 2014-03-25
325
+
326
+ ==== Bug fixes
327
+
328
+ * File tasks including a ':' are now top-level tasks again. Issue #262 by
329
+ Josh Holtrop.
330
+ * Use sysctl for CPU count for all BSDs. Pull request #261 by Joshua Stein.
331
+ * Fixed CPU detection for unknown platforms.
332
+
333
+ === 10.2.0 / 2014-03-24
334
+
335
+ ==== Enhancements
336
+
337
+ * Rake now requires Ruby 1.9 or newer. For me, this is a breaking change, but
338
+ it seems that Jim planned to release it with Rake 10.2. See also pull
339
+ request #247 by Philip Arndt.
340
+ * Rake now allows you to declare tasks under a namespace like:
341
+
342
+ task 'a:b' do ... end
343
+
344
+ Pull request #232 by Judson Lester.
345
+ * Task#source defaults to the first prerequisite in non-rule tasks. Pull
346
+ request #215 by Avdi Grimm.
347
+ * Rake now automatically rebuilds and reloads imported files. Pull request
348
+ #209 by Randy Coulman.
349
+ * The rake task arguments can contain escaped commas. Pull request #214 by
350
+ Filip Hrbek.
351
+ * Rake now prints the exception class on errors. Patch #251 by David Cornu.
352
+
353
+ ==== Bug fixes
354
+
355
+ * Fixed typos. Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
356
+ by Zachary Scott.
357
+ * Fixed documentation for calling tasks with arguments. Pull request #235 by
358
+ John Varghese.
359
+ * Clarified `rake -f` usage message. Pull request #252 by Marco Pfatschbacher.
360
+ * Fixed a test failure on windows. Pull request #231 by Hiroshi Shirosaki.
361
+ * Fixed corrupted rake.1.gz. Pull request #225 by Michel Boaventura.
362
+ * Fixed bug in can\_detect\_signals? in test. Patch from #243 by Alexey
363
+ Borzenkov.
364
+
365
+ === 10.1.1
366
+
367
+ * Use http://github.com/jimweirich/rake instead of http://rake.rubyforge.org for
368
+ canonical project url.
369
+
370
+ === 10.1.0
371
+
372
+ ==== Changes
373
+
374
+ ===== New Features
375
+
376
+ * Add support for variable length task argument lists. If more actual
377
+ arguments are supplied than named arguments, then the extra
378
+ arguments values will be in args.extras.
379
+
380
+ * Application name is not displayed in the help banner. (Previously
381
+ "rake" was hardcoded, now rake-based applications can display their
382
+ own names).
383
+
384
+ ===== Bug Fixes
385
+
386
+ Bug fixes include:
387
+
388
+ * Fix backtrace suppression issues.
389
+
390
+ * Rules now explicit get task arguments passed to them.
391
+
392
+ * Rename FileList#exclude? to FileList#exclude\_from\_list? to avoid
393
+ conflict with new Rails method.
394
+
395
+ * Clean / Clobber tasks now report failure to remove files.
396
+
397
+ * Plus heaps of internal code cleanup.
398
+
399
+ ==== Thanks
400
+
401
+ As usual, it was input from users that drove a lot of these changes.
402
+ The following people contributed patches, made suggestions or made
403
+ otherwise helpful comments. Thanks to ...
404
+
405
+ * Michael Nikitochkin (general code cleanup)
406
+ * Vipul A M (general code cleanup)
407
+ * Dennis Bell (variable length task argument lists)
408
+ * Jacob Swanner (rules arguments)
409
+ * Rafael Rosa Fu (documentation typo)
410
+ * Stuart Nelson (install.rb fixes)
411
+ * Lee Hambley (application name in help banner)
412
+
413
+ -- Jim Weirich
414
+
415
+ === 10.0.3
416
+
417
+ "Jim, when will Rake reach version 1.0?"
418
+
419
+ Over the past several years I've been asked that question at
420
+ conferences, panels and over twitter. Due to historical reasons (or
421
+ maybe just plain laziness) Rake has (incorrectly) been treating the
422
+ second digit of the version as the major release number. So in my head
423
+ Rake was already at version 9.
424
+
425
+ Well, it's time to fix things. This next version of Rake drops old,
426
+ crufty, backwards compatibility hacks such as top level constants, DSL
427
+ methods defined in Object and numerous other features that are just no
428
+ longer desired. It's also time to drop the leading zero from the
429
+ version number as well and call this new version of rake what it
430
+ really is: Version 10.
431
+
432
+ So, welcome to Rake 10.0!
433
+
434
+ Rake 10 is actually feature identical to the latest version of Rake 9
435
+ (that would be the version spelled 0.9.3), *except* that Rake 10 drops
436
+ all the sundry deprecated features that have accumulated over the years.
437
+
438
+ If your Rakefile is up to date and current with all the new features
439
+ of Rake 10, you are ready to go. If your Rakefile still uses a few
440
+ deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
441
+ feature set. Just be aware that future features will be in Rake 10
442
+ family line.
443
+
444
+ ==== Changes
445
+
446
+ As mentioned above, there are no new features in Rake 10. However,
447
+ there are a number of features missing:
448
+
449
+ * Classic namespaces are now gone. Rake is no longer able to reflect
450
+ the options settings in the global variables ($rakefile, $show\_tasks,
451
+ $show\_prereqs, $trace, $dryrun and $silent). The
452
+ <tt>--classic-namespace</tt> option is no longer supported.
453
+
454
+ * Global constants are no longer supported. This includes
455
+ <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
456
+ <tt>RakeApp</tt>). The constant missing hook to warn about using
457
+ global rake constants has been removed.
458
+
459
+ * The Rake DSL methods (task, file, directory, etc) are in their own
460
+ module (Rake::DSL). The stub versions of these methods (that printed
461
+ warnings) in Object have been removed. However, the DSL methods are
462
+ added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
463
+ not in the inheritance tree, the presence of the DSL methods in main
464
+ should be low impact on other libraries.
465
+
466
+ If you want to use the Rake DSL commands from your own code, just
467
+ include <tt>Rake::DSL</tt> into your own classes and modules.
468
+
469
+ * The deprecated syntax for task arguments (the one using
470
+ <tt>:needs</tt>) has been removed.
471
+
472
+ * The <tt>--reduce-compat</tt> flag has been removed (it's not needed
473
+ anymore).
474
+
475
+ * The deprecated <tt>rake/sys.rb</tt> library has been removed.
476
+
477
+ * The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
478
+ RDoc supplies its own rake task now.
479
+
480
+ * The deprecated <tt>rake/gempackagetask.rb</tt> library has been
481
+ removed. Gem supplies its own package task now.
482
+
483
+ There is one small behavioral change:
484
+
485
+ * Non-file tasks now always report the current time as their time
486
+ stamp. This is different from the previous behavior where non-file
487
+ tasks reported current time only if there were no prerequisites, and
488
+ the max prerequisite timestamp otherwise. This lead to inconsistent
489
+ and surprising behavior when adding prerequisites to tasks that in
490
+ turn were prequisites to file tasks. The new behavior is more
491
+ consistent and predictable.
492
+
493
+ ==== Changes (from 0.9.3, 0.9.4, 0.9.5)
494
+
495
+ Since Rake 10 includes the changes from the last version of Rake 9,
496
+ we'll repeat the changes for versions 0.9.3 through 0.9.5 here.
497
+
498
+ ===== New Features (in 0.9.3)
499
+
500
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
501
+ available threads.
502
+
503
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
504
+
505
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
506
+ programatically add rake task libraries.
507
+
508
+ * You can specific backtrace suppression patterns (see
509
+ --suppress-backtrace)
510
+
511
+ * Directory tasks can now take prerequisites and actions
512
+
513
+ * Use --backtrace to request a full backtrace without the task trace.
514
+
515
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
516
+ output to standard output rather than standard error.
517
+
518
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
519
+ special purpose builds.
520
+
521
+ * Task#clear now clears task comments as well as actions and
522
+ prerequisites. Task#clear_comment will specifically target comments.
523
+
524
+ * The --all option will force -T and -D to consider all the tasks,
525
+ with and without descriptions.
526
+
527
+ ===== Bug Fixes (in 0.9.3)
528
+
529
+ * Semi-colons in windows rakefile paths now work.
530
+
531
+ * Improved Control-C support when invoking multiple test suites.
532
+
533
+ * egrep method now reads files in text mode (better support for
534
+ Windows)
535
+
536
+ * Better deprecation line number reporting.
537
+
538
+ * The -W option now works with all tasks, whether they have a
539
+ description or not.
540
+
541
+ * File globs in rake should not be sorted alphabetically, independent
542
+ of file system and platform.
543
+
544
+ * Numerous internal improvements.
545
+
546
+ * Documentation typos and fixes.
547
+
548
+ ===== Bug Fixes (in 0.9.4)
549
+
550
+ * Exit status with failing tests is not correctly set to non-zero.
551
+
552
+ * Simplified syntax for phony task (for older versions of RDoc).
553
+
554
+ * Stand alone FileList usage gets glob function (without loading in
555
+ extra dependencies)
556
+
557
+ ===== Bug Fixes (in 0.9.5)
558
+
559
+ * --trace and --backtrace no longer swallow following task names.
560
+
561
+ ==== Thanks
562
+
563
+ As usual, it was input from users that drove a lot of these changes. The
564
+ following people contributed patches, made suggestions or made
565
+ otherwise helpful comments. Thanks to ...
566
+
567
+ * Aaron Patterson
568
+ * Dylan Smith
569
+ * Jo Liss
570
+ * Jonas Pfenniger
571
+ * Kazuki Tsujimoto
572
+ * Michael Bishop
573
+ * Michael Elufimov
574
+ * NAKAMURA Usaku
575
+ * Ryan Davis
576
+ * Sam Grönblom
577
+ * Sam Phippen
578
+ * Sergio Wong
579
+ * Tay Ray Chuan
580
+ * grosser
581
+ * quix
582
+
583
+ Also, many thanks to Eric Hodel for assisting with getting this release
584
+ out the door.
585
+
586
+ -- Jim Weirich
587
+
588
+ === 10.0.2
589
+
590
+ ==== Changes
591
+
592
+ ===== Bug Fixes
593
+
594
+ * --trace and --backtrace no longer swallow following task names.
595
+
596
+ ==== Thanks
597
+
598
+ As usual, it was input from users that drove a lot of these changes. The
599
+ following people contributed patches, made suggestions or made
600
+ otherwise helpful comments. Thanks to ...
601
+
602
+ * Aaron Patterson
603
+ * Dylan Smith
604
+ * Jo Liss
605
+ * Jonas Pfenniger
606
+ * Kazuki Tsujimoto
607
+ * Michael Bishop
608
+ * Michael Elufimov
609
+ * NAKAMURA Usaku
610
+ * Ryan Davis
611
+ * Sam Grönblom
612
+ * Sam Phippen
613
+ * Sergio Wong
614
+ * Tay Ray Chuan
615
+ * grosser
616
+ * quix
617
+
618
+ Also, many thanks to Eric Hodel for assisting with getting this release
619
+ out the door.
620
+
621
+ -- Jim Weirich
622
+
623
+ === 10.0.1
624
+
625
+ ==== Changes
626
+
627
+ ===== Bug Fixes
628
+
629
+ * Exit status with failing tests is not correctly set to non-zero.
630
+
631
+ * Simplified syntax for phony task (for older versions of RDoc).
632
+
633
+ * Stand alone FileList usage gets glob function (without loading in
634
+ extra dependencies)
635
+
636
+ ==== Thanks
637
+
638
+ As usual, it was input from users that drove a lot of these changes. The
639
+ following people contributed patches, made suggestions or made
640
+ otherwise helpful comments. Thanks to ...
641
+
642
+ * Aaron Patterson
643
+ * Dylan Smith
644
+ * Jo Liss
645
+ * Jonas Pfenniger
646
+ * Kazuki Tsujimoto
647
+ * Michael Bishop
648
+ * Michael Elufimov
649
+ * NAKAMURA Usaku
650
+ * Ryan Davis
651
+ * Sam Grönblom
652
+ * Sam Phippen
653
+ * Sergio Wong
654
+ * Tay Ray Chuan
655
+ * grosser
656
+ * quix
657
+
658
+ Also, many thanks to Eric Hodel for assisting with getting this release
659
+ out the door.
660
+
661
+ -- Jim Weirich
662
+
663
+ === 10.0.0
664
+
665
+ "Jim, when will Rake reach version 1.0?"
666
+
667
+ Over the past several years I've been asked that question at
668
+ conferences, panels and over twitter. Due to historical reasons (or
669
+ maybe just plain laziness) Rake has (incorrectly) been treating the
670
+ second digit of the version as the major release number. So in my head
671
+ Rake was already at version 9.
672
+
673
+ Well, it's time to fix things. This next version of Rake drops old,
674
+ crufty, backwards compatibility hacks such as top level constants, DSL
675
+ methods defined in Object and numerous other features that are just no
676
+ longer desired. It's also time to drop the leading zero from the
677
+ version number as well and call this new version of rake what it
678
+ really is: Version 10.
679
+
680
+ So, welcome to Rake 10.0!
681
+
682
+ Rake 10 is actually feature identical to the latest version of Rake 9
683
+ (that would be the version spelled 0.9.3), *except* that Rake 10 drops
684
+ all the sundry deprecated features that have accumulated over the years.
685
+
686
+ If your Rakefile is up to date and current with all the new features
687
+ of Rake 10, you are ready to go. If your Rakefile still uses a few
688
+ deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
689
+ feature set. Just be aware that future features will be in Rake 10
690
+ family line.
691
+
692
+ ==== Changes in 10.0
693
+
694
+ As mentioned above, there are no new features in Rake 10. However,
695
+ there are a number of features missing:
696
+
697
+ * Classic namespaces are now gone. Rake is no longer able to reflect
698
+ the options settings in the global variables ($rakefile, $show\_tasks,
699
+ $show\_prereqs, $trace, $dryrun and $silent). The
700
+ <tt>--classic-namespace</tt> option is no longer supported.
701
+
702
+ * Global constants are no longer supported. This includes
703
+ <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
704
+ <tt>RakeApp</tt>). The constant missing hook to warn about using
705
+ global rake constants has been removed.
706
+
707
+ * The Rake DSL methods (task, file, directory, etc) are in their own
708
+ module (Rake::DSL). The stub versions of these methods (that printed
709
+ warnings) in Object have been removed. However, the DSL methods are
710
+ added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
711
+ not in the inheritance tree, the presence of the DSL methods in main
712
+ should be low impact on other libraries.
713
+
714
+ If you want to use the Rake DSL commands from your own code, just
715
+ include <tt>Rake::DSL</tt> into your own classes and modules.
716
+
717
+ * The deprecated syntax for task arguments (the one using
718
+ <tt>:needs</tt>) has been removed.
719
+
720
+ * The <tt>--reduce-compat</tt> flag has been removed (it's not needed
721
+ anymore).
722
+
723
+ * The deprecated <tt>rake/sys.rb</tt> library has been removed.
724
+
725
+ * The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
726
+ RDoc supplies its own rake task now.
727
+
728
+ * The deprecated <tt>rake/gempackagetask.rb</tt> library has been
729
+ removed. Gem supplies its own package task now.
730
+
731
+ There is one small behavioral change:
732
+
733
+ * Non-file tasks now always report the current time as their time
734
+ stamp. This is different from the previous behavior where non-file
735
+ tasks reported current time only if there were no prerequisites, and
736
+ the max prerequisite timestamp otherwise. This lead to inconsistent
737
+ and surprising behavior when adding prerequisites to tasks that in
738
+ turn were prequisites to file tasks. The new behavior is more
739
+ consistent and predictable.
740
+
741
+ ==== Changes (from 0.9.3)
742
+
743
+ Since Rake 10 includes the changes from the last version of Rake 9,
744
+ we'll repeat the changes for version 0.9.3 here.
745
+
746
+ ===== New Features
747
+
748
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
749
+ available threads.
750
+
751
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
752
+
753
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
754
+ programatically add rake task libraries.
755
+
756
+ * You can specific backtrace suppression patterns (see
757
+ --suppress-backtrace)
758
+
759
+ * Directory tasks can now take prerequisites and actions
760
+
761
+ * Use --backtrace to request a full backtrace without the task trace.
762
+
763
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
764
+ output to standard output rather than standard error.
765
+
766
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
767
+ special purpose builds.
768
+
769
+ * Task#clear now clears task comments as well as actions and
770
+ prerequisites. Task#clear_comment will specifically target comments.
771
+
772
+ * The --all option will force -T and -D to consider all the tasks,
773
+ with and without descriptions.
774
+
775
+ ===== Bug Fixes
776
+
777
+ * Semi-colons in windows rakefile paths now work.
778
+
779
+ * Improved Control-C support when invoking multiple test suites.
780
+
781
+ * egrep method now reads files in text mode (better support for
782
+ Windows)
783
+
784
+ * Better deprecation line number reporting.
785
+
786
+ * The -W option now works with all tasks, whether they have a
787
+ description or not.
788
+
789
+ * File globs in rake should not be sorted alphabetically, independent
790
+ of file system and platform.
791
+
792
+ * Numerous internal improvements.
793
+
794
+ * Documentation typos and fixes.
795
+
796
+
797
+ ==== Thanks
798
+
799
+ As usual, it was input from users that drove a lot of these changes. The
800
+ following people contributed patches, made suggestions or made
801
+ otherwise helpful comments. Thanks to ...
802
+
803
+ * Aaron Patterson
804
+ * Dylan Smith
805
+ * Jo Liss
806
+ * Jonas Pfenniger
807
+ * Kazuki Tsujimoto
808
+ * Michael Bishop
809
+ * Michael Elufimov
810
+ * NAKAMURA Usaku
811
+ * Ryan Davis
812
+ * Sam Grönblom
813
+ * Sam Phippen
814
+ * Sergio Wong
815
+ * Tay Ray Chuan
816
+ * grosser
817
+ * quix
818
+
819
+ Also, many thanks to Eric Hodel for assisting with getting this release
820
+ out the door.
821
+
822
+ -- Jim Weirich
823
+
824
+ === 0.9.6
825
+
826
+ Rake version 0.9.6 contains a number of fixes mainly for merging
827
+ Rake into the Ruby source tree and fixing tests.
828
+
829
+ ==== Changes
830
+
831
+ ===== Bug Fixes (0.9.6)
832
+
833
+ * Better trace output when using a multi-threaded Rakefile.
834
+ * Arg parsing is now consistent for tasks and multitasks.
835
+ * Skip exit code test in versions of Ruby that don't support it well.
836
+
837
+ Changes for better integration with the Ruby source tree:
838
+
839
+ * Fix version literal for Ruby source tree build.
840
+ * Better loading of libraries for testing in Ruby build.
841
+ * Use the ruby version provided by Ruby's tests.
842
+
843
+ ==== Thanks
844
+
845
+ As usual, it was input from users that drove a alot of these changes. The
846
+ following people either contributed patches, made suggestions or made
847
+ otherwise helpful comments. Thanks to ...
848
+
849
+ * Aaron Patterson
850
+ * Dylan Smith
851
+ * Jo Liss
852
+ * Jonas Pfenniger
853
+ * Kazuki Tsujimoto
854
+ * Michael Bishop
855
+ * Michael Elufimov
856
+ * NAKAMURA Usaku
857
+ * Ryan Davis
858
+ * Sam Grönblom
859
+ * Sam Phippen
860
+ * Sergio Wong
861
+ * Tay Ray Chuan
862
+ * grosser
863
+ * quix
864
+
865
+ Also, many thanks to Eric Hodel for assisting with getting this release
866
+ out the door.
867
+
868
+ -- Jim Weirich
869
+
870
+ === 0.9.5
871
+
872
+ Rake version 0.9.5 contains a number of bug fixes.
873
+
874
+ ==== Changes
875
+
876
+ ===== Bug Fixes (0.9.5)
877
+
878
+ * --trace and --backtrace no longer swallow following task names.
879
+
880
+ ==== Thanks
881
+
882
+ As usual, it was input from users that drove a alot of these changes. The
883
+ following people either contributed patches, made suggestions or made
884
+ otherwise helpful comments. Thanks to ...
885
+
886
+ * Aaron Patterson
887
+ * Dylan Smith
888
+ * Jo Liss
889
+ * Jonas Pfenniger
890
+ * Kazuki Tsujimoto
891
+ * Michael Bishop
892
+ * Michael Elufimov
893
+ * NAKAMURA Usaku
894
+ * Ryan Davis
895
+ * Sam Grönblom
896
+ * Sam Phippen
897
+ * Sergio Wong
898
+ * Tay Ray Chuan
899
+ * grosser
900
+ * quix
901
+
902
+ Also, many thanks to Eric Hodel for assisting with getting this release
903
+ out the door.
904
+
905
+ -- Jim Weirich
906
+
907
+ === 0.9.4
908
+
909
+ Rake version 0.9.4 contains a number of bug fixes.
910
+
911
+ ==== Changes
912
+
913
+ ===== Bug Fixes (0.9.4)
914
+
915
+ * Exit status with failing tests is not correctly set to non-zero.
916
+
917
+ * Simplified syntax for phony task (for older versions of RDoc).
918
+
919
+ * Stand alone FileList usage gets glob function (without loading in
920
+ extra dependencies)
921
+
922
+ ==== Thanks
923
+
924
+ As usual, it was input from users that drove a alot of these changes. The
925
+ following people either contributed patches, made suggestions or made
926
+ otherwise helpful comments. Thanks to ...
927
+
928
+ * Aaron Patterson
929
+ * Dylan Smith
930
+ * Jo Liss
931
+ * Jonas Pfenniger
932
+ * Kazuki Tsujimoto
933
+ * Michael Bishop
934
+ * Michael Elufimov
935
+ * NAKAMURA Usaku
936
+ * Ryan Davis
937
+ * Sam Grönblom
938
+ * Sam Phippen
939
+ * Sergio Wong
940
+ * Tay Ray Chuan
941
+ * grosser
942
+ * quix
943
+
944
+ Also, many thanks to Eric Hodel for assisting with getting this release
945
+ out the door.
946
+
947
+ -- Jim Weirich
948
+
949
+ === 0.9.3
950
+
951
+ Rake version 0.9.3 contains some new, backwards compatible features and
952
+ a number of bug fixes.
953
+
954
+ ==== Changes
955
+
956
+ ===== New Features
957
+
958
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
959
+ available threads.
960
+
961
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
962
+
963
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
964
+ programatically add rake task libraries.
965
+
966
+ * You can specific backtrace suppression patterns (see
967
+ --suppress-backtrace)
968
+
969
+ * Directory tasks can now take prerequisites and actions
970
+
971
+ * Use --backtrace to request a full backtrace without the task trace.
972
+
973
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
974
+ output to standard output rather than standard error.
975
+
976
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
977
+ special purpose builds.
978
+
979
+ * Task#clear now clears task comments as well as actions and
980
+ prerequisites. Task#clear_comment will specifically target comments.
981
+
982
+ * The --all option will force -T and -D to consider all the tasks,
983
+ with and without descriptions.
984
+
985
+ ===== Bug Fixes
986
+
987
+ * Semi-colons in windows rakefile paths now work.
988
+
989
+ * Improved Control-C support when invoking multiple test suites.
990
+
991
+ * egrep method now reads files in text mode (better support for
992
+ Windows)
993
+
994
+ * Better deprecation line number reporting.
995
+
996
+ * The -W option now works with all tasks, whether they have a
997
+ description or not.
998
+
999
+ * File globs in rake should not be sorted alphabetically, independent
1000
+ of file system and platform.
1001
+
1002
+ * Numerous internal improvements.
1003
+
1004
+ * Documentation typos and fixes.
1005
+
1006
+ ==== Thanks
1007
+
1008
+ As usual, it was input from users that drove a alot of these changes. The
1009
+ following people either contributed patches, made suggestions or made
1010
+ otherwise helpful comments. Thanks to ...
1011
+
1012
+ * Aaron Patterson
1013
+ * Dylan Smith
1014
+ * Jo Liss
1015
+ * Jonas Pfenniger
1016
+ * Kazuki Tsujimoto
1017
+ * Michael Bishop
1018
+ * Michael Elufimov
1019
+ * NAKAMURA Usaku
1020
+ * Ryan Davis
1021
+ * Sam Grönblom
1022
+ * Sam Phippen
1023
+ * Sergio Wong
1024
+ * Tay Ray Chuan
1025
+ * grosser
1026
+ * quix
1027
+
1028
+ Also, many thanks to Eric Hodel for assisting with getting this release
1029
+ out the door.
1030
+
1031
+ -- Jim Weirich
1032
+
1033
+ === Rake 0.9.2.2
1034
+
1035
+ Rake version 0.9.2.2 is mainly bug fixes.
1036
+
1037
+ ==== Changes
1038
+
1039
+ * The rake test loader now removes arguments it has processed. Issue #51
1040
+ * Rake::TaskArguments now responds to #values\_at
1041
+ * RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
1042
+ * Rake tests are now directory-independent
1043
+ * Rake tests are no longer require flexmock
1044
+ * Commands constant is no longer polluting top level namespace.
1045
+ * Show only the interesting portion of the backtrace by default (James M. Lawrence).
1046
+ * Added --reduce-compat option to remove backward compatible DSL hacks (James M. Lawrence).
1047
+
1048
+ ==== Thanks
1049
+
1050
+ As usual, it was input from users that drove a alot of these changes. The
1051
+ following people either contributed patches, made suggestions or made
1052
+ otherwise helpful comments. Thanks to ...
1053
+
1054
+ * James M. Lawrence (quix)
1055
+ * Roger Pack
1056
+ * Cezary Baginski
1057
+ * Sean Scot August Moon
1058
+ * R.T. Lechow
1059
+ * Alex Chaffee
1060
+ * James Tucker
1061
+ * Matthias Lüdtke
1062
+ * Santiago Pastorino
1063
+
1064
+ Also, bit thanks to Eric Hodel for assisting with getting this release
1065
+ out the door (where "assisting" includes, but is not by any means
1066
+ limited to, "pushing" me to get it done).
1067
+
1068
+ -- Jim Weirich
1069
+
1070
+ === 0.9.2
1071
+
1072
+ Rake version 0.9.2 has a few small fixes. See below for details.
1073
+
1074
+ ==== Changes
1075
+
1076
+ * Support for Ruby 1.8.6 was fixed.
1077
+ * Global DSL warnings now honor --no-deprecate
1078
+
1079
+ ==== Thanks
1080
+
1081
+ As usual, it was input from users that drove a alot of these changes. The
1082
+ following people either contributed patches, made suggestions or made
1083
+ otherwise helpful comments. Thanks to ...
1084
+
1085
+ * James M. Lawrence (quix)
1086
+ * Roger Pack
1087
+ * Cezary Baginski
1088
+ * Sean Scot August Moon
1089
+ * R.T. Lechow
1090
+ * Alex Chaffee
1091
+ * James Tucker
1092
+ * Matthias Lüdtke
1093
+ * Santiago Pastorino
1094
+
1095
+ Also, bit thanks to Eric Hodel for assisting with getting this release
1096
+ out the door (where "assisting" includes, but is not by any means
1097
+ limited to, "pushing" me to get it done).
1098
+
1099
+ -- Jim Weirich
1100
+
1101
+ === 0.9.1
1102
+
1103
+ Rake version 0.9.1 has a number of bug fixes and enhancments (see
1104
+ below for more details). Additionally, the internals have be slightly
1105
+ restructured and improved.
1106
+
1107
+ ==== Changes
1108
+
1109
+ Rake 0.9.1 adds back the global DSL methods, but with deprecation
1110
+ messages. This allows Rake 0.9.1 to be used with older rakefiles with
1111
+ warning messages.
1112
+
1113
+ ==== Thanks
1114
+
1115
+ As usual, it was input from users that drove a alot of these changes. The
1116
+ following people either contributed patches, made suggestions or made
1117
+ otherwise helpful comments. Thanks to ...
1118
+
1119
+ * James M. Lawrence (quix)
1120
+ * Roger Pack
1121
+ * Cezary Baginski
1122
+ * Sean Scot August Moon
1123
+ * R.T. Lechow
1124
+ * Alex Chaffee
1125
+ * James Tucker
1126
+ * Matthias Lüdtke
1127
+ * Santiago Pastorino
1128
+
1129
+ Also, bit thanks to Eric Hodel for assisting with getting this release
1130
+ out the door (where "assisting" includes, but is not by any means
1131
+ limited to, "pushing" me to get it done).
1132
+
1133
+ -- Jim Weirich
1134
+
1135
+ === 0.9.0
1136
+
1137
+ Rake version 0.9.0 has a number of bug fixes and enhancments (see
1138
+ below for more details). Additionally, the internals have be slightly
1139
+ restructured and improved.
1140
+
1141
+ ==== Changes
1142
+
1143
+ ===== New Features / Enhancements / Bug Fixes in Version 0.9.0
1144
+
1145
+ * Rake now warns when the deprecated :needs syntax used (and suggests
1146
+ the proper syntax in the warning).
1147
+
1148
+ * Moved Rake DSL commands to top level ruby object 'main'. Rake DSL
1149
+ commands are no longer private methods in Object. (Suggested by
1150
+ James M. Lawrence/quix)
1151
+
1152
+ * Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
1153
+ Based on patch by Roger Pack.
1154
+
1155
+ * Rake now requires (instead of loads) files in the test task. Patch by Cezary
1156
+ Baginski.
1157
+
1158
+ * Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
1159
+
1160
+ * Rake now prints the Rakefile directory only when it's different from the
1161
+ current directory. Patch by Alex Chaffee.
1162
+
1163
+ * Improved rakefile_location discovery on Windows. Patch by James Tucker.
1164
+
1165
+ * Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
1166
+ Lüdtke
1167
+
1168
+ * Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
1169
+ 'rdoc/task')
1170
+
1171
+ * Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
1172
+ 'rubygems/package\_task')
1173
+
1174
+ * Rake now outputs various messages to $stderr instead of $stdout.
1175
+
1176
+ * Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
1177
+
1178
+ * Removed Rake's DSL methods from the top level scope. If you need to
1179
+ call 'task :xzy' in your code, include Rake::DSL into your class, or
1180
+ put the code in a Rake::DSL.environment do ... end block.
1181
+
1182
+ * Split rake.rb into individual files.
1183
+
1184
+ * Support for the --where (-W) flag for showing where a task is defined.
1185
+
1186
+ * Fixed quoting in test task.
1187
+ (http://onestepback.org/redmine/issues/show/44,
1188
+ http://www.pivotaltracker.com/story/show/1223138)
1189
+
1190
+ * Fixed the silent option parsing problem.
1191
+ (http://onestepback.org/redmine/issues/show/47)
1192
+
1193
+ * Fixed :verbose=>false flag on sh and ruby commands.
1194
+
1195
+ * Rake command line options may be given by default in a RAKEOPT
1196
+ environment variable.
1197
+
1198
+ * Errors in Rake will now display the task invocation chain in effect
1199
+ at the time of the error.
1200
+
1201
+ * Accepted change by warnickr to not expand test patterns in shell
1202
+ (allowing more files in the test suite).
1203
+
1204
+ * Fixed that file tasks did not perform prereq lookups in scope
1205
+ (Redmine #57).
1206
+
1207
+ ==== Thanks
1208
+
1209
+ As usual, it was input from users that drove a alot of these changes. The
1210
+ following people either contributed patches, made suggestions or made
1211
+ otherwise helpful comments. Thanks to ...
1212
+
1213
+ * James M. Lawrence (quix)
1214
+ * Roger Pack
1215
+ * Cezary Baginski
1216
+ * Sean Scot August Moon
1217
+ * R.T. Lechow
1218
+ * Alex Chaffee
1219
+ * James Tucker
1220
+ * Matthias Lüdtke
1221
+ * Santiago Pastorino
1222
+
1223
+ Also, bit thanks to Eric Hodel for assisting with getting this release
1224
+ out the door (where "assisting" includes, but is not by any means
1225
+ limited to, "pushing" me to get it done).
1226
+
1227
+ -- Jim Weirich
1228
+
1229
+
1230
+ === 0.8.7
1231
+
1232
+ Rake version 0.8.5 introduced greatly improved support for executing
1233
+ commands on Windows. The "sh" command now has the same semantics on
1234
+ Windows that it has on Unix based platforms.
1235
+
1236
+ Rake version 0.8.6 includes minor fixes the the RDoc generation.
1237
+ Rake version 0.8.7 includes a minor fix for JRuby running on windows.
1238
+
1239
+ ==== Changes
1240
+
1241
+ ===== New Features / Enhancements in Version 0.8.5
1242
+
1243
+ * Improved implementation of the Rake system command for Windows.
1244
+ (patch from James M. Lawrence/quix)
1245
+
1246
+ * Support for Ruby 1.9's improved system command. (patch from James
1247
+ M. Lawrence/quix)
1248
+
1249
+ * Rake now includes the configured extension when invoking an
1250
+ executable (Config::CONFIG['EXEEXT])
1251
+
1252
+ ===== Bug Fixes in Version 0.8.5
1253
+
1254
+ * Environment variable keys are now correctly cased (it matters in
1255
+ some implementations).
1256
+
1257
+ ==== Thanks
1258
+
1259
+ As usual, it was input from users that drove a alot of these changes. The
1260
+ following people either contributed patches, made suggestions or made
1261
+ otherwise helpful comments. Thanks to ...
1262
+
1263
+ * Charles Nutter
1264
+
1265
+ -- Jim Weirich
1266
+
1267
+ === 0.8.6
1268
+
1269
+ Rake version 0.8.5 introduced greatly improved support for executing
1270
+ commands on Windows. The "sh" command now has the same semantics on
1271
+ Windows that it has on Unix based platforms.
1272
+
1273
+ Rake version 0.8.5 includes minor fixes the the RDoc generation.
1274
+
1275
+ ==== Thanks
1276
+
1277
+ As usual, it was input from users that drove a alot of these changes. The
1278
+ following people either contributed patches, made suggestions or made
1279
+ otherwise helpful comments. Thanks to ...
1280
+
1281
+ * James M. Lawrence/quix
1282
+ * Luis Lavena
1283
+
1284
+ -- Jim Weirich
1285
+
1286
+ === 0.8.5
1287
+
1288
+ Rake version 0.8.5 is a new release of Rake with greatly improved
1289
+ support for executing commands on Windows. The "sh" command now has
1290
+ the same semantics on Windows that it has on Unix based platforms.
1291
+
1292
+ ==== Changes
1293
+
1294
+ ===== New Features / Enhancements in Version 0.8.5
1295
+
1296
+ * Improved implementation of the Rake system command for Windows.
1297
+ (patch from James M. Lawrence/quix)
1298
+
1299
+ * Support for Ruby 1.9's improved system command. (patch from James
1300
+ M. Lawrence/quix)
1301
+
1302
+ * Rake now includes the configured extension when invoking an
1303
+ executable (Config::CONFIG['EXEEXT])
1304
+
1305
+ ===== Bug Fixes in Version 0.8.5
1306
+
1307
+ * Environment variable keys are now correctly cased (it matters in
1308
+ some implementations).
1309
+
1310
+ ==== Thanks
1311
+
1312
+ As usual, it was input from users that drove a alot of these changes. The
1313
+ following people either contributed patches, made suggestions or made
1314
+ otherwise helpful comments. Thanks to ...
1315
+
1316
+ * James M. Lawrence/quix
1317
+ * Luis Lavena
1318
+
1319
+ -- Jim Weirich
1320
+
1321
+ === 0.8.4
1322
+
1323
+ Rake version 0.8.4 is a bug-fix release of rake.
1324
+
1325
+ NOTE: The version of Rake that comes with Ruby 1.9 has diverged
1326
+ slightly from the core Rake code base. Rake 0.8.4 will work
1327
+ with Ruby 1.9, but is not a strict upgrade for the Rake that
1328
+ comes with Ruby 1.9. A (near) future release of Rake will unify
1329
+ those two codebases.
1330
+
1331
+ ==== Letter Writing Campaign
1332
+
1333
+ Thanks to Aaron Patterson (@tenderlove) and Eric Hodel (@drbrain) for
1334
+ their encouraging support in organizing a letter writing campaign to
1335
+ lobby for the "Warning Free" release of rake 0.8.4. A special callout
1336
+ goes to Jonathan D. Lord, Sr (Dr. Wingnut) whose postcard was the
1337
+ first to actually reach me. (see
1338
+ http://tenderlovemaking.com/2009/02/26/we-need-a-new-version-of-rake/
1339
+ for details)
1340
+
1341
+ ==== Changes
1342
+
1343
+ ===== New Features / Enhancements in Version 0.8.4
1344
+
1345
+ * Case is preserved on rakefile names. (patch from James
1346
+ M. Lawrence/quix)
1347
+
1348
+ * Improved Rakefile case insensitivity testing (patch from Luis
1349
+ Lavena).
1350
+
1351
+ * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
1352
+ APPDATA, USERPROFILE (patch from Luis Lavena)
1353
+
1354
+ * MingGW is now recognized as a windows platform. (patch from Luis
1355
+ Lavena)
1356
+
1357
+ ===== Bug Fixes in Version 0.8.4
1358
+
1359
+ * Removed reference to manage_gem to fix the warning produced by the
1360
+ gem package task.
1361
+
1362
+ * Fixed stray ARGV option problem that was interfering with
1363
+ Test::Unit::Runner. (patch from Pivotal Labs)
1364
+
1365
+ ===== Infrastructure Improvements in Version 0.8.4
1366
+
1367
+ * Numerous fixes to the windows test suite (patch from Luis Lavena).
1368
+
1369
+ * Improved Rakefile case insensitivity testing (patch from Luis
1370
+ Lavena).
1371
+
1372
+ * Better support for windows paths in the test task (patch from Simon
1373
+ Chiang/bahuvrihi)
1374
+
1375
+ ==== Thanks
1376
+
1377
+ As usual, it was input from users that drove a alot of these changes. The
1378
+ following people either contributed patches, made suggestions or made
1379
+ otherwise helpful comments. Thanks to ...
1380
+
1381
+ * James M. Lawrence/quix
1382
+ * Luis Lavena
1383
+ * Pivotal Labs
1384
+ * Simon Chiang/bahuvrihi
1385
+
1386
+ -- Jim Weirich
1387
+
1388
+ === 0.8.3
1389
+
1390
+ Rake version 0.8.3 is a bug-fix release of rake.
1391
+
1392
+ ==== Changes
1393
+
1394
+ ===== Bug Fixes in Version 0.8.3
1395
+
1396
+ * Enhanced the system directory detection in windows. We now check
1397
+ HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
1398
+ supplied by James Tucker). Rake no long aborts if it can't find the
1399
+ directory.
1400
+
1401
+ * Added fix to handle ruby installations in directories with spaces in
1402
+ their name.
1403
+
1404
+ ==== Thanks
1405
+
1406
+ As usual, it was input from users that drove a alot of these changes. The
1407
+ following people either contributed patches, made suggestions or made
1408
+ otherwise helpful comments. Thanks to ...
1409
+
1410
+ * Edwin Pratomo
1411
+ * Gavin Stark
1412
+ * Adam Q. Salter
1413
+ * Adam Majer
1414
+ * Emanuel Indermühle
1415
+ * Ittay Dror
1416
+ * Bheeshmar Redheendran (for spending an afternoon with me debugging
1417
+ windows issues)
1418
+
1419
+ -- Jim Weirich
1420
+
1421
+
1422
+ === 0.8.2
1423
+
1424
+ Rake version 0.8.2 is a new release of rake that includes a number of
1425
+ new features and numerous bug fixes.
1426
+
1427
+ ==== Changes
1428
+
1429
+ ===== New Features in Version 0.8.2
1430
+
1431
+ * Switched from getoptlong to optparse (patches supplied by Edwin
1432
+ Pratomo).
1433
+
1434
+ * The -T option will now attempt to dynamically sense the size of the
1435
+ terminal. The -T output will only self-truncate if the output is a
1436
+ tty. However, if RAKE_COLUMNS is explicitly set, it will be honored
1437
+ in any case. (Patch provided by Gavin Stark).
1438
+
1439
+ * The following public methods have been added to rake task objects:
1440
+
1441
+ * task.clear -- Clear both the prerequisites and actions of the
1442
+ target rake task.
1443
+ * task.clear_prerequisites -- Clear all the existing prerequisites
1444
+ from the target rake task.
1445
+ * task.clear_actions -- Clear all the existing actions from the
1446
+ target rake task.
1447
+ * task.reenable -- Re-enable a task, allowing its actions to be
1448
+ executed again if the task is invoked.
1449
+
1450
+ * Changed RDoc test task to have no default template. This makes it
1451
+ easier for the tempate to pick up the template from the environment.
1452
+
1453
+ * Default values for task arguments can easily be specified with the
1454
+ :with_defaults method. (Idea for default argument merging supplied
1455
+ by (Adam Q. Salter)
1456
+
1457
+ ===== Bug Fixes in Version 0.8.2
1458
+
1459
+ * Fixed bug in package task so that it will include the subdir
1460
+ directory in the package for testing. (Bug found by Adam Majer)
1461
+
1462
+ * Fixed filename dependency order bug in test\_inspect\_pending and
1463
+ test\_to\_s\_pending. (Bug found by Adam Majer)
1464
+
1465
+ * Fixed check for file utils options to make them immune to the
1466
+ symbol/string differences. (Patch supplied by Edwin Pratomo)
1467
+
1468
+ * Fixed bug with rules involving multiple source, where only the first
1469
+ dependency of a rule has any effect (Patch supplied by Emanuel
1470
+ Indermühle)
1471
+
1472
+ * FileList#clone and FileList#dup have better sematics w.r.t. taint
1473
+ and freeze.
1474
+
1475
+ * Changed from using Mutex to Monitor. Evidently Mutex causes thread
1476
+ join errors when Ruby is compiled with -disable-pthreads. (Patch
1477
+ supplied by Ittay Dror)
1478
+
1479
+ * Fixed bug in makefile parser that had problems with extra spaces in
1480
+ file task names. (Patch supplied by Ittay Dror)
1481
+
1482
+ ==== Other changes in Version 0.8.2
1483
+
1484
+ * Added ENV var to rake's own Rakefile to prevent OS X from including
1485
+ extended attribute junk in the rake package tar file. (Bug found by
1486
+ Adam Majer)
1487
+
1488
+ * Added a performance patch for reading large makefile dependency
1489
+ files. (Patch supplied by Ittay Dror)
1490
+
1491
+ ==== Task Argument Examples
1492
+
1493
+ Prior to version 0.8.0, rake was only able to handle command line
1494
+ arguments of the form NAME=VALUE that were passed into Rake via the
1495
+ ENV hash. Many folks had asked for some kind of simple command line
1496
+ arguments, perhaps using "--" to separate regular task names from
1497
+ argument values on the command line. The problem is that there was no
1498
+ easy way to associate positional arguments on the command line with
1499
+ different tasks. Suppose both tasks :a and :b expect a command line
1500
+ argument: does the first value go with :a? What if :b is run first?
1501
+ Should it then get the first command line argument.
1502
+
1503
+ Rake 0.8.0 solves this problem by explicitly passing values directly
1504
+ to the tasks that need them. For example, if I had a release task
1505
+ that required a version number, I could say:
1506
+
1507
+ rake release[0.8.2]
1508
+
1509
+ And the string "0.8.2" will be passed to the :release task. Multiple
1510
+ arguments can be passed by separating them with a comma, for example:
1511
+
1512
+ rake name[john,doe]
1513
+
1514
+ Just a few words of caution. The rake task name and its arguments
1515
+ need to be a single command line argument to rake. This generally
1516
+ means no spaces. If spaces are needed, then the entire rake +
1517
+ argument string should be quoted. Something like this:
1518
+
1519
+ rake "name[billy bob, smith]"
1520
+
1521
+ (Quoting rules vary between operating systems and shells, so make sure
1522
+ you consult the proper docs for your OS/shell).
1523
+
1524
+ ===== Tasks that Expect Parameters
1525
+
1526
+ Parameters are only given to tasks that are setup to expect them. In
1527
+ order to handle named parameters, the task declaration syntax for
1528
+ tasks has been extended slightly.
1529
+
1530
+ For example, a task that needs a first name and last name might be
1531
+ declared as:
1532
+
1533
+ task :name, :first_name, :last_name
1534
+
1535
+ The first argument is still the name of the task (:name in this case).
1536
+ The next to argumements are the names of the parameters expected by
1537
+ :name (:first_name and :last_name in the example).
1538
+
1539
+ To access the values of the parameters, the block defining the task
1540
+ behaviour can now accept a second parameter:
1541
+
1542
+ task :name, :first_name, :last_name do |t, args|
1543
+ puts "First name is #{args.first_name}"
1544
+ puts "Last name is #{args.last_name}"
1545
+ end
1546
+
1547
+ The first argument of the block "t" is always bound to the current
1548
+ task object. The second argument "args" is an open-struct like object
1549
+ that allows access to the task arguments. Extra command line
1550
+ arguments to a task are ignored. Missing command line arguments are
1551
+ given the nil value.
1552
+
1553
+ ==== Thanks
1554
+
1555
+ As usual, it was input from users that drove a alot of these changes. The
1556
+ following people either contributed patches, made suggestions or made
1557
+ otherwise helpful comments. Thanks to ...
1558
+
1559
+ * Edwin Pratomo
1560
+ * Gavin Stark
1561
+ * Adam Q. Salter
1562
+ * Adam Majer
1563
+ * Emanuel Indermühle
1564
+ * Ittay Dror
1565
+ * Bheeshmar Redheendran (for spending an afternoon with me debugging
1566
+ windows issues)
1567
+
1568
+ -- Jim Weirich
1569
+
1570
+ === 0.8.0/0.8.1
1571
+
1572
+ Rake version 0.8.0 is a new release of rake that includes serveral new
1573
+ features.
1574
+
1575
+ ==== Changes
1576
+
1577
+ ===== New Features in Version 0.8.0
1578
+
1579
+ * Tasks can now receive command line parameters. See the examples
1580
+ below for more details.
1581
+
1582
+ * Comments are limited to 80 columns on output, but full comments can
1583
+ be seen by using the -D parameter. (feature suggested by Jamis
1584
+ Buck).
1585
+
1586
+ * Explicit exit(n) calls will now set the exit status to n. (patch
1587
+ provided by Stephen Touset).
1588
+
1589
+ * Rake is now compatible with Ruby 1.9.
1590
+
1591
+ Version 0.8.1 is a minor update that includes additional Ruby 1.9
1592
+ compatibility fixes.
1593
+
1594
+ ==== Task Argument Examples
1595
+
1596
+ Prior to version 0.8.0, rake was only able to handle command line
1597
+ arguments of the form NAME=VALUE that were passed into Rake via the
1598
+ ENV hash. Many folks had asked for some kind of simple command line
1599
+ arguments, perhaps using "--" to separate regular task names from
1600
+ argument values on the command line. The problem is that there was no
1601
+ easy way to associate positional arguments on the command line with
1602
+ different tasks. Suppose both tasks :a and :b expect a command line
1603
+ argument: does the first value go with :a? What if :b is run first?
1604
+ Should it then get the first command line argument.
1605
+
1606
+ Rake 0.8.0 solves this problem by explicitly passing values directly
1607
+ to the tasks that need them. For example, if I had a release task
1608
+ that required a version number, I could say:
1609
+
1610
+ rake release[0.8.0]
1611
+
1612
+ And the string "0.8.0" will be passed to the :release task. Multiple
1613
+ arguments can be passed by separating them with a comma, for example:
1614
+
1615
+ rake name[john,doe]
1616
+
1617
+ Just a few words of caution. The rake task name and its arguments
1618
+ need to be a single command line argument to rake. This generally
1619
+ means no spaces. If spaces are needed, then the entire rake +
1620
+ argument string should be quoted. Something like this:
1621
+
1622
+ rake "name[billy bob, smith]"
1623
+
1624
+ (Quoting rules vary between operating systems and shells, so make sure
1625
+ you consult the proper docs for your OS/shell).
1626
+
1627
+ ===== Tasks that Expect Parameters
1628
+
1629
+ Parameters are only given to tasks that are setup to expect them. In
1630
+ order to handle named parameters, the task declaration syntax for
1631
+ tasks has been extended slightly.
1632
+
1633
+ For example, a task that needs a first name and last name might be
1634
+ declared as:
1635
+
1636
+ task :name, :first_name, :last_name
1637
+
1638
+ The first argument is still the name of the task (:name in this case).
1639
+ The next to argumements are the names of the parameters expected by
1640
+ :name (:first_name and :last_name in the example).
1641
+
1642
+ To access the values of the parameters, the block defining the task
1643
+ behaviour can now accept a second parameter:
1644
+
1645
+ task :name, :first_name, :last_name do |t, args|
1646
+ puts "First name is #{args.first_name}"
1647
+ puts "Last name is #{args.last_name}"
1648
+ end
1649
+
1650
+ The first argument of the block "t" is always bound to the current
1651
+ task object. The second argument "args" is an open-struct like object
1652
+ that allows access to the task arguments. Extra command line
1653
+ arguments to a task are ignored. Missing command line arguments are
1654
+ given the nil value.
1655
+
1656
+ ==== Thanks
1657
+
1658
+ As usual, it was input from users that drove a alot of these changes. The
1659
+ following people either contributed patches, made suggestions or made
1660
+ otherwise helpful comments. Thanks to ...
1661
+
1662
+ * Jamis Buck (for comment formatting suggestions)
1663
+ * Stephen Touset (for exit status patch).
1664
+
1665
+ -- Jim Weirich
1666
+
1667
+
1668
+ === 0.7.3
1669
+
1670
+ Rake version 0.7.3 is a minor release that includes some refactoring to better
1671
+ support custom Rake applications.
1672
+
1673
+ ==== Changes
1674
+
1675
+ ===== New Features in Version 0.7.3
1676
+
1677
+ * Added the +init+ and +top_level+ methods to make the creation of custom Rake applications a bit easier. E.g.
1678
+
1679
+ gem 'rake', ">= 0.7.3"
1680
+ require 'rake'
1681
+
1682
+ Rake.application.init('myrake')
1683
+
1684
+ task :default do
1685
+ something_interesting
1686
+ end
1687
+
1688
+ Rake.application.top_level
1689
+
1690
+ ==== Thanks
1691
+
1692
+ As usual, it was input from users that drove a alot of these changes. The
1693
+ following people either contributed patches, made suggestions or made
1694
+ otherwise helpful comments. Thanks to ...
1695
+
1696
+ -- Jim Weirich
1697
+
1698
+
1699
+ === 0.7.2
1700
+
1701
+
1702
+ Version 0.7.2 supplies a bug fix and a few minor enhancements. In
1703
+ particular, the new version fixes an incompatibility with the soon to
1704
+ be released Ruby 1.8.6. We strongly recommend upgrading to Rake 0.7.2
1705
+ in order to be compatible with the new version of Ruby.
1706
+
1707
+ ==== Changes
1708
+
1709
+ ===== Bug Fixes in 0.7.2
1710
+
1711
+ There are quite a number of bug fixes in the new 0.7.2 version of
1712
+ Rake:
1713
+
1714
+ * Removed dependency on internal fu_xxx functions from FileUtils.
1715
+
1716
+ * Error messages are now send to stderr rather than stdout (from
1717
+ Payton Quackenbush).
1718
+
1719
+ * Better error handling on invalid command line arguments (from Payton
1720
+ Quackenbush).
1721
+
1722
+ * Fixed some bugs where the application object was going to the global
1723
+ appliation instead of using its own data.
1724
+
1725
+ * Fixed the method name leak from FileUtils (bug found by Glenn
1726
+ Vanderburg).
1727
+
1728
+ * Added test for noop, bad_option and verbose flags to sh command.
1729
+
1730
+ * Added a description to the gem task in GemPackageTask.
1731
+
1732
+ * Fixed a bug when rules have multiple prerequisites (patch by Joel
1733
+ VanderWerf)
1734
+
1735
+ * Added the handful of RakeFileUtils to the private method as well.
1736
+
1737
+ ===== New Features in 0.7.2
1738
+
1739
+ The following new features are available in Rake version 0.7.2:
1740
+
1741
+ * Added square and curly bracket patterns to FileList#include (Tilman
1742
+ Sauerbeck).
1743
+
1744
+ * FileLists can now pass a block to FileList#exclude to exclude files
1745
+ based on calculated values.
1746
+
1747
+ * Added plain filename support to rule dependents (suggested by Nobu
1748
+ Nakada).
1749
+
1750
+ * Added pathmap support to rule dependents. In other words, if a
1751
+ pathmap format (beginning with a '%') is given as a Rake rule
1752
+ dependent, then the name of the depend will be the name of the
1753
+ target with the pathmap format applied.
1754
+
1755
+ * Added a 'tasks' method to a namespace to get a list of tasks
1756
+ associated with the namespace.
1757
+
1758
+ * Added tar_command and zip_command options to the Package task.
1759
+
1760
+ * The clean task will no longer delete 'core' if it is a directory.
1761
+
1762
+ ===== Internal Rake Improvements
1763
+
1764
+ The following changes will are mainly internal improvements and
1765
+ refactorings and have little effect on the end user. But they may be
1766
+ of interest to the general public.
1767
+
1768
+ * Added rcov task and updated unit testing for better code coverage.
1769
+
1770
+ * Added a 'shame' task to the Rakefile.
1771
+
1772
+ * Added rake_extension to handle detection of extension collisions.
1773
+
1774
+ * Added a protected 'require "rubygems"' to test/test_application to
1775
+ unbreak cruisecontrol.rb.
1776
+
1777
+ * Removed rake\_dup. Now we just simply rescue a bad dup.
1778
+
1779
+ * Refactored the FileList reject logic to remove duplication.
1780
+
1781
+ * Removed if \_\_FILE\_\_ at the end of the rake.rb file.
1782
+
1783
+ ==== Thanks
1784
+
1785
+ As usual, it was input from users that drove a alot of these changes.
1786
+ The following people either contributed patches, made suggestions or
1787
+ made otherwise helpful comments. Thanks to ...
1788
+
1789
+ * Payton Quackenbush -- For several error handling improvements.
1790
+
1791
+ * Glenn Vanderburg -- For finding and fixing the method name leak from
1792
+ FileUtils.
1793
+
1794
+ * Joel VanderWerf -- for finding and fixing a bug in the handling of
1795
+ multiple prerequisites.
1796
+
1797
+ * Tilman Sauerbeck -- For some enhancing FileList to support more
1798
+ advanced file globbing.
1799
+
1800
+ * Nobu Nakada -- For suggesting plain file name support to rule dependents.
1801
+
1802
+ -- Jim Weirich
1803
+
1804
+ === 0.7.1
1805
+
1806
+ Version 0.7.1 supplies a bug fix and a few minor enhancements.
1807
+
1808
+ ==== Changes
1809
+
1810
+ ===== Bug Fixes in 0.7.1
1811
+
1812
+ * Changes in the exception reported for the FileUtils.ln caused
1813
+ safe_ln to fail with a NotImplementedError. Rake 0.7.1 will now
1814
+ catch that error or any StandardError and properly fall back to
1815
+ using +cp+.
1816
+
1817
+ ===== New Features in 0.7.1
1818
+
1819
+ * You can filter the results of the --task option by supplying an
1820
+ optional regular expression. This allows the user to easily find a
1821
+ particular task name in a long list of possible names.
1822
+
1823
+ * Transforming procs in a rule may now return a list of prerequisites.
1824
+ This allows more flexible rule formation.
1825
+
1826
+ * FileList and String now support a +pathmap+ melthod that makes the
1827
+ transforming paths a bit easier. See the API docs for +pathmap+ for
1828
+ details.
1829
+
1830
+ * The -f option without a value will disable the search for a
1831
+ Rakefile. This allows the Rakefile to be defined entirely in a
1832
+ library (and loaded with the -r option). The current working
1833
+ directory is not changed when this is done.
1834
+
1835
+ ==== Thanks
1836
+
1837
+ As usual, it was input from users that drove a alot of these changes.
1838
+ The following people either contributed patches, made suggestions or
1839
+ made otherwise helpful comments. Thanks to ...
1840
+
1841
+ * James Britt and Assaph Mehr for reporting and helping to debug the
1842
+ safe_ln issue.
1843
+
1844
+ -- Jim Weirich
1845
+
1846
+
1847
+ === 0.7.0
1848
+
1849
+ These changes for Rake have been brewing for a long time. Here they
1850
+ are, I hope you enjoy them.
1851
+
1852
+ ==== Changes
1853
+
1854
+ ===== New Features
1855
+
1856
+ * Name space support for task names (see below).
1857
+ * Prerequisites can be executed in parallel (see below).
1858
+ * Added safe_ln support for openAFS (via Ludvig Omholt).
1859
+ * RDoc defaults to internal (in-process) invocation. The old behavior
1860
+ is still available by setting the +external+ flag to true.
1861
+ * Rakefiles are now loaded with the expanded path to prevent
1862
+ accidental pollution from the Ruby load path.
1863
+ * Task objects my now be used in prerequisite lists directly.
1864
+ * Task objects (in addition to task names) may now be included in the
1865
+ prerequisite list of a task.
1866
+ * Internals cleanup and refactoring.
1867
+
1868
+ ===== Bug Fixes
1869
+
1870
+ * Compatibility fixes for Ruby 1.8.4 FileUtils changes.
1871
+
1872
+ ===== Namespaces
1873
+
1874
+ Tasks can now be nested inside their own namespaces. Tasks within one
1875
+ namespace will not accidentally interfer with tasks named in a different
1876
+ namespace.
1877
+
1878
+ For example:
1879
+
1880
+ namespace "main" do
1881
+ task :build do
1882
+ # Build the main program
1883
+ end
1884
+ end
1885
+
1886
+ namespace "samples" do
1887
+ task :build do
1888
+ # Build the sample programs
1889
+ end
1890
+ end
1891
+
1892
+ task :build_all => ["main:build", "samples:build"]
1893
+
1894
+ Even though both tasks are named :build, they are separate tasks in
1895
+ their own namespaces. The :build_all task (defined in the toplevel
1896
+ namespace) references both build tasks in its prerequisites.
1897
+
1898
+ You may invoke each of the individual build tasks with the following
1899
+ commands:
1900
+
1901
+ rake main:build
1902
+ rake samples:build
1903
+
1904
+ Or invoke both via the :build_all command:
1905
+
1906
+ rake build_all
1907
+
1908
+ Namespaces may be nested arbitrarily. Since the name of file tasks
1909
+ correspond to the name of a file in the external file system,
1910
+ FileTasks are not affected by the namespaces.
1911
+
1912
+ See the Rakefile format documentation (in the Rake API documents) for
1913
+ more information.
1914
+
1915
+ ===== Parallel Tasks
1916
+
1917
+ Sometimes you have several tasks that can be executed in parallel. By
1918
+ specifying these tasks as prerequisites to a +multitask+ task.
1919
+
1920
+ In the following example the tasks copy\_src, copy\_doc and copy\_bin
1921
+ will all execute in parallel in their own thread.
1922
+
1923
+ multitask :copy_files => [:copy_src, :copy_doc, :copy_bin] do
1924
+ puts "All Copies Complete"
1925
+ end
1926
+
1927
+ ==== Thanks
1928
+
1929
+ As usual, it was input from users that drove a alot of these changes.
1930
+ The following people either contributed patches, made suggestions or
1931
+ made otherwise helpful comments. Thanks to ...
1932
+
1933
+ * Doug Young (inspiration for the parallel task)
1934
+ * David Heinemeier Hansson (for --trace message enhancement and for
1935
+ pushing for namespace support).
1936
+ * Ludvig Omholt (for the openAFS fix)
1937
+
1938
+ -- Jim Weirich
1939
+
1940
+ === 0.6.1
1941
+
1942
+ * Rebuilt 0.6.0 gem without signing.
1943
+
1944
+ === 0.6.0
1945
+
1946
+ Its time for some long requested enhancements and lots of bug fixes
1947
+ ... And a whole new web page.
1948
+
1949
+ ==== New Web Page
1950
+
1951
+ The primary documentation for rake has moved from the RubyForge based
1952
+ wiki to its own Hieraki based web site. Constant spam on the wiki
1953
+ made it a difficult to keep clean. The new site will be easier to
1954
+ update and organize.
1955
+
1956
+ Check out the new documentation at: http://docs.rubyrake.org
1957
+
1958
+ We will be adding new documentation to the site as time goes on.
1959
+
1960
+ In addition to the new docs page, make sure you check out Martin
1961
+ Fowlers article on rake at http://martinfowler.com/articles/rake.html
1962
+
1963
+ ==== Changes
1964
+
1965
+ ===== New Features
1966
+
1967
+ * Multiple prerequisites on Rake rules now allowed. However, keep the
1968
+ following in mind:
1969
+
1970
+ 1. All the prerequisites of a rule must be available before a rule
1971
+ is triggered, where "enabled" means (a) an existing file, (b) a
1972
+ defined rule, or (c) another rule which also must be
1973
+ trigger-able.
1974
+ 2. Rules are checked in order of definition, so it is important to
1975
+ order your rules properly. If a file can be created by two
1976
+ different rules, put the more specific rule first (otherwise the
1977
+ more general rule will trigger first and the specific one will
1978
+ never be triggered).
1979
+ 3. The <tt>source</tt> method now returns the name of the first
1980
+ prerequisite listed in the rule. <tt>sources</tt> returns the
1981
+ names of all the rule prerequisites, ordered as they are defined
1982
+ in the rule. If the task has other prerequisites not defined in
1983
+ the rule (but defined in an explicit task definition), then they
1984
+ will _not_ be included in the sources list.
1985
+
1986
+ * FileLists may now use the egrep command. This popular enhancement
1987
+ is now a core part of the FileList object. If you want to get a
1988
+ list of all your to-dos, fixmes and TBD comments, add the following
1989
+ to your Rakefile.
1990
+
1991
+ desc "Look for TODO and FIXME tags in the code"
1992
+ task :todo do
1993
+ FileList['**/*.rb'].egrep /#.*(FIXME|TODO|TBD)/
1994
+ end
1995
+
1996
+ * The <tt>investigation</tt> method was added to task object to dump
1997
+ out some important values. This makes it a bit easier to debug Rake
1998
+ tasks.
1999
+
2000
+ For example, if you are having problems with a particular task, just
2001
+ print it out:
2002
+
2003
+ task :huh do
2004
+ puts Rake::Task['huh'].investigation
2005
+ end
2006
+
2007
+ * The Rake::TestTask class now supports a "ruby\_opts" option to pass
2008
+ arbitrary ruby options to a test subprocess.
2009
+
2010
+ ===== Some Incompatibilities
2011
+
2012
+ * When using the <tt>ruby</tt> command to start a Ruby subprocess, the
2013
+ Ruby interpreter that is currently running rake is used by default.
2014
+ This makes it easier to use rake in an environment with multiple
2015
+ ruby installation. (Previously, the first ruby command found in the
2016
+ PATH was used).
2017
+
2018
+ If you wish to chose a different Ruby interpreter, you can
2019
+ explicitly choose the interpreter via the <tt>sh</tt> command.
2020
+
2021
+ * The major rake classes (Task, FileTask, FileCreationTask, RakeApp)
2022
+ have been moved out of the toplevel scope and are now accessible as
2023
+ Rake::Task, Rake::FileTask, Rake::FileCreationTask and
2024
+ Rake::Application. If your Rakefile
2025
+ directly references any one of these tasks, you may:
2026
+
2027
+ 1. Update your Rakefile to use the new classnames
2028
+ 2. Use the --classic-namespace option on the rake command to get the
2029
+ old behavior,
2030
+ 3. Add <code>require 'rake/classic_namespace'</code> to the
2031
+ Rakefile to get the old behavior.
2032
+
2033
+ <tt>rake</tt> will print a rather annoying warning whenever a
2034
+ deprecated class name is referenced without enabling classic
2035
+ namespace.
2036
+
2037
+ ===== Bug Fixes
2038
+
2039
+ * Several unit tests and functional tests were fixed to run better
2040
+ under windows.
2041
+
2042
+ * Directory tasks are now a specialized version of a File task. A
2043
+ directory task will only be triggered if it doesn't exist. It will
2044
+ not be triggered if it is out of date w.r.t. any of its
2045
+ prerequisites.
2046
+
2047
+ * Fixed a bug in the Rake::GemPackageTask class so that the gem now
2048
+ properly contains the platform name.
2049
+
2050
+ * Fixed a bug where a prerequisite on a <tt>file</tt> task would cause
2051
+ an exception if the prerequisite did not exist.
2052
+
2053
+ ==== Thanks
2054
+
2055
+ As usual, it was input from users that drove a alot of these changes.
2056
+ The following people either contributed patches, made suggestions or
2057
+ made otherwise helpful comments. Thanks to ...
2058
+
2059
+ * Greg Fast (better ruby_opt test options)
2060
+ * Kelly Felkins (requested by better namespace support)
2061
+ * Martin Fowler (suggested Task.investigation)
2062
+ * Stuart Jansen (send initial patch for multiple prerequisites).
2063
+ * Masao Mutch (better support for non-ruby Gem platforms)
2064
+ * Philipp Neubeck (patch for file task exception fix)
2065
+
2066
+ -- Jim Weirich
2067
+
2068
+ === 0.5.4
2069
+
2070
+ Time for some minor bug fixes and small enhancements
2071
+
2072
+ ==== Changes
2073
+
2074
+ Here are the changes for version 0.5.4 ...
2075
+
2076
+ * Added double quotes to the test runner. This allows the location of
2077
+ the tests (and runner) to be in a directory path that contains
2078
+ spaces (e.g. "C:/Program Files/ruby/bin").
2079
+ * Added .svn to default ignore list. Now subversion project metadata
2080
+ is automatically ignored by Rake's FileList.
2081
+ * Updated FileList#include to support nested arrays and filelists.
2082
+ FileLists are flat lists of file names. Using a FileList in an
2083
+ include will flatten out the nested file names.
2084
+
2085
+ == Thanks
2086
+
2087
+ As usual, it was input from users that drove a alot of these changes.
2088
+ Thanks to ...
2089
+
2090
+ * Tilman Sauerbeck for the nested FileList suggestion.
2091
+ * Josh Knowles for pointing out the spaces in directory name problem.
2092
+
2093
+ -- Jim Weirich
2094
+
2095
+ === 0.5.3
2096
+
2097
+ Although it has only been two weeks since the last release, we have
2098
+ enough updates to the Rake program to make it time for another
2099
+ release.
2100
+
2101
+ ==== Changes
2102
+
2103
+ Here are the changes for version 0.5.3 ...
2104
+
2105
+ * FileLists have been extensively changed so that they mimic the
2106
+ behavior of real arrays even more closely. In particular,
2107
+ operations on FileLists that return a new collection (e.g. collect,
2108
+ reject) will now return a FileList rather than an array. In
2109
+ addition, several places where FileLists were not properly expanded
2110
+ before use have been fixed.
2111
+ * A method (+ext+) to simplify the handling of file extensions was
2112
+ added to String and to Array.
2113
+ * The 'testrb' script in test/unit tends to silently swallow syntax
2114
+ errors in test suites. Because of that, the default test loader is
2115
+ now a rake-provided script. You can still use 'testrb' by setting
2116
+ the loader flag in the test task to :testrb. (See the API documents
2117
+ for TestTask for all the loader flag values).
2118
+ * FileUtil methods (e.g. cp, mv, install) are now declared to be
2119
+ private. This will cut down on the interference with user defined
2120
+ methods of the same name.
2121
+ * Fixed the verbose flag in the TestTask so that the test code is
2122
+ controlled by the flag. Also shortened up some failure messages.
2123
+ (Thanks to Tobias Luetke for the suggestion).
2124
+ * Rules will now properly detect a task that can generate a source
2125
+ file. Previously rules would only consider source files that were
2126
+ already present.
2127
+ * Added an +import+ command that allows Rake to dynamically import
2128
+ dependendencies into a running Rake session. The +import+ command
2129
+ can run tasks to update the dependency file before loading them.
2130
+ Dependency files can be in rake or make format, allowing rake to
2131
+ work with tools designed to generate dependencies for make.
2132
+
2133
+ ==== Thanks
2134
+
2135
+ As usual, it was input from users that drove a alot of these changes.
2136
+ Thanks to ...
2137
+
2138
+ * Brian Gernhardt for the rules fix (especially for the patience to
2139
+ explain the problem to me until I got what he was talking about).
2140
+ * Stefan Lang for pointing out problems in the dark corners of the
2141
+ FileList implementation.
2142
+ * Alexey Verkhovsky pointing out the silently swallows syntax errors
2143
+ in tests.
2144
+ * Tobias Luetke for beautifying the test task output.
2145
+ * Sam Roberts for some of the ideas behind dependency loading.
2146
+
2147
+ -- Jim Weirich
2148
+
2149
+
2150
+ === 0.5.0
2151
+
2152
+ It has been a long time in coming, but we finally have a new version
2153
+ of Rake available.
2154
+
2155
+ ==== Changes
2156
+
2157
+ * Fixed documentation that was lacking the Rake module name (Tilman
2158
+ Sauerbeck).
2159
+ * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
2160
+ * Recursive rules are now supported (Tilman Sauerbeck).
2161
+ * Added warning option for the Test Task (requested by Eric Hodel).
2162
+ * The jamis rdoc template is only used if it exists.
2163
+ * Added fix for Ruby 1.8.2 test/unit and rails problem.
2164
+ * Added contributed rake man file (Jani Monoses).
2165
+ * Added Brian Candler's fix for problems in --trace and --dry-run
2166
+ mode.
2167
+
2168
+ ==== Thanks
2169
+
2170
+ Lots of people provided input to this release. Thanks to Tilman
2171
+ Sauerbeck for numerous patches, documentation fixes and suggestions.
2172
+ And for also pushing me to get this release out. Also, thanks to
2173
+ Brian Candler for the finding and fixing --trace/dry-run fix. That
2174
+ was an obscure bug. Also to Eric Hodel for some good suggestions.
2175
+
2176
+ -- Jim Weirich
2177
+
2178
+ === 0.4.15
2179
+
2180
+ ==== Changes
2181
+
2182
+ Version 0.4.15 is a bug fix update for the Ruby 1.8.2 compatibility
2183
+ changes. This release includes:
2184
+
2185
+ * Fixed a bug that prevented the TESTOPTS flag from working with the
2186
+ revised for 1.8.2 test task.
2187
+ * Updated the docs on --trace to indicate that it also enables a full
2188
+ backtrace on errors.
2189
+ * Several fixes for new warnings generated.
2190
+
2191
+ ==== Mini-Roadmap
2192
+
2193
+ I will continue to issue Rake updates in the 0.4.xx series as new
2194
+ Ruby-1.8.2 issues become manifest. Once the codebase stabilizes, I
2195
+ will release a 0.5.0 version incorporating all the changes. If you
2196
+ are not using Ruby-1.8.2 and wish to avoid version churn, I recommend
2197
+ staying with a release prior to Rake-0.4.14.
2198
+
2199
+ === 0.4.14
2200
+
2201
+ Version 0.4.14 is a compatibility fix to allow Rake's test task to
2202
+ work under Ruby 1.8.2. A change in the Test::Unit autorun feature
2203
+ prevented Rake from running any tests. This release fixes the
2204
+ problem.
2205
+
2206
+ Rake 0.4.14 is the recommended release for anyone using Ruby 1.8.2.
2207
+
2208
+ === 0.4.13
2209
+
2210
+ * Fixed the dry-run flag so it is operating again.
2211
+ * Multiple arguments to sh and ruby commands will not be interpreted
2212
+ by the shell (patch provided by Jonathan Paisley).
2213
+
2214
+ === 0.4.12
2215
+
2216
+ * Added --silent (-s) to suppress the (in directory) rake message.
2217
+
2218
+ === 0.4.11
2219
+
2220
+ * Changed the "don't know how to rake" message (finally)
2221
+ * Changes references to a literal "Rakefile" to reference the global
2222
+ variable $rakefile (which contains the actual name of the rakefile).
2223
+
2224
+ === 0.4.10
2225
+
2226
+ * Added block support to the "sh" command, allowing users to take
2227
+ special actions on the result of the system call. E.g.
2228
+
2229
+ sh "shell_command" do |ok, res|
2230
+ puts "Program returned #{res.exitstatus}" if ! ok
2231
+ end
2232
+
2233
+ === 0.4.9
2234
+
2235
+ * Switched to Jamis Buck's RDoc template.
2236
+ * Removed autorequire from Rake's gem spec. This prevents the Rake
2237
+ libraries from loading while using rails.
2238
+
2239
+ === 0.4.8
2240
+
2241
+ * Added support for .rb versions of Rakefile.
2242
+ * Removed \\\n's from test task.
2243
+ * Fixed Ruby 1.9 compatibility issue with FileList.
2244
+
2245
+ === 0.4.7
2246
+
2247
+ * Fixed problem in FileList that caused Ruby 1.9 to go into infinite
2248
+ recursion. Since to_a was removed from Object, it does not need to
2249
+ added back into the list of methods to rewrite in FileList. (Thanks
2250
+ to Kent Sibilev for pointing this out).
2251
+
2252
+ === 0.4.6
2253
+ * Removed test version of ln in FileUtils that prevented safe_ln from
2254
+ using ln.
2255
+
2256
+ === 0.4.5
2257
+ * Upgraded comments in TestTask.
2258
+ * FileList to_s and inspect now automatically resolve pending changes.
2259
+ * FileList#exclude properly returns the FileList.
2260
+
2261
+ === 0.4.4
2262
+ * Fixed initialization problem with @comment.
2263
+ * Now using multi -r technique in TestTask. Switch Rakefile back to
2264
+ using the built-in test task macros because the rake runtime is no
2265
+ longer needed.
2266
+ * Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
2267
+ macros.
2268
+ * Allow a +test_files+ attribute in test tasks. This allows more
2269
+ flexibility in specifying test files.
2270
+
2271
+ === 0.4.3
2272
+ * Fixed Comment leakage.
2273
+
2274
+ === 0.4.2
2275
+ * Added safe_ln that falls back to a copy if a file link is not supported.
2276
+ * Package builder now uses safe\_ln.
2277
+
2278
+ === 0.4.1
2279
+ * Task comments are now additive, combined with "/".
2280
+ * Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
2281
+
2282
+ === 0.4.0
2283
+ * FileList now uses deferred loading. The file system is not searched
2284
+ until the first call that needs the file names.
2285
+ * VAR=VALUE options are now accepted on the command line and are
2286
+ treated like environment variables. The values may be tested in a
2287
+ Rakefile by referencing ENV['VAR'].
2288
+ * File.mtime is now used (instead of File.new().mtime).
2289
+
2290
+ === 0.3.2.x
2291
+
2292
+ * Removed some hidden dependencies on rubygems. Tests now will test
2293
+ gems only if they are installed.
2294
+ * Removed Sys from some example files. I believe that is that last
2295
+ reference to Sys outside of the contrib area.
2296
+ * Updated all copyright notices to include 2004.
2297
+
2298
+ === 0.3.2
2299
+
2300
+ * GEM Installation now works with the application stub.
2301
+
2302
+ === 0.3.1
2303
+
2304
+ * FileLists now automatically ignore CVS, .bak, !
2305
+ * GEM Installation now works.
2306
+
2307
+ === 0.3.0
2308
+
2309
+ Promoted 0.2.10.
2310
+
2311
+ === 0.2.10
2312
+ General
2313
+
2314
+ * Added title to Rake's rdocs
2315
+ * Contrib packages are no longer included in the documentation.
2316
+
2317
+ RDoc Issues
2318
+
2319
+ * Removed default for the '--main' option
2320
+ * Fixed rendering of the rdoc options
2321
+ * Fixed clean/clobber confusion with rerdoc
2322
+ * 'title' attribute added
2323
+
2324
+ Package Task Library Issues
2325
+
2326
+ * Version (or explicit :noversion) is required.
2327
+ * +package_file+ attribute is now writable
2328
+
2329
+ FileList Issues
2330
+
2331
+ * Dropped bang version of exclude. Now using ant-like include/exclude semantics.
2332
+ * Enabled the "yield self" idiom in FileList#initialize.
2333
+
2334
+ === 0.2.9
2335
+
2336
+ This version contains numerous changes as the RubyConf.new(2003)
2337
+ presentation was being prepared. The changes include:
2338
+
2339
+ * The monolithic rubyapp task library is in the process of being
2340
+ dropped in favor of lighter weight task libraries.
2341
+
2342
+ === 0.2.7
2343
+
2344
+ * Added "desc" for task descriptions.
2345
+ * -T will now display tasks with descriptions.
2346
+ * -P will display tasks and prerequisites.
2347
+ * Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
2348
+ is still supported in the contrib area.
2349
+
2350
+ === 0.2.6
2351
+
2352
+ * Moved to RubyForge
2353
+
2354
+ === 0.2.5
2355
+
2356
+ * Switched to standard ruby app builder.
2357
+ * Added no_match option to file matcher.
2358
+
2359
+ === 0.2.4
2360
+
2361
+ * Fixed indir, which neglected to actually change directories.
2362
+
2363
+ === 0.2.3
2364
+
2365
+ * Added rake module for a help target
2366
+ * Added 'for\_files' to Sys
2367
+ * Added a $rakefile constant
2368
+ * Added test for selecting proper rule with multiple targets.