windows-pr 1.2.4 → 1.2.5

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