windows-pr 1.2.4 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ba22094903e6dc30021b290ac0aac86eeaef2cf
4
- data.tar.gz: 51da5343cf128be4c95f4c75405bc7c08f1df734
3
+ metadata.gz: 3b1c2575a24fc69d6d5db6d1c1022c9bf1b7f80e
4
+ data.tar.gz: 843e12e38d88888fbaecda6cd5f3a61a558e7059
5
5
  SHA512:
6
- metadata.gz: 01686ab8e05e52a1e259676159de1f0d76e189b36af3e751f4807020dd20c5ae9184e0ce731df33adef8a42696a289a0da20d6ee7acff10e2dde7b19260ea930
7
- data.tar.gz: 6ea80c4d03b49d35454a505d7585728577c91c0439f1a19352a48f4fc80db9c65797e91b63bba721efb009310657e3dff90a2b7f0ca9c8c6c47ebb8da27ce157
6
+ metadata.gz: 8e5f046429e26d6288df035381589f45b21e5f1713030f7341ce05764f28987c4a97c8b015295ee3927b0ac45689d9eaf06d8a51b098eaf4889ad7a19f22342c
7
+ data.tar.gz: 6df655f371ca586d36a6ede7bd9e71e66108616406cd04532b72eb1f37b85ba1b5bbc424d8b8fd532a525a8f50bc6d84f2eaf0cb7eea568a2356e1bec556cfba
data/CHANGES CHANGED
@@ -1,449 +1,453 @@
1
- = 1.2.4 - 18-Oct-2014
2
- * Replaced test-unit with minitest for the test suite. This necessitated the
3
- addition of a test helper file for compatibility.
4
- * Fix for the Windows::Socket tests.
5
-
6
- = 1.2.3 - 19-Feb-2014
7
- * Updated the get_last_error method to better handle encoding issues. Thanks
8
- go to dalang for the spot.
9
- * Added the Windows::Security::SSPI module and an initial set of constants.
10
- * Updated library for OleIconToCursor function in the Windows::COM module.
11
-
12
- = 1.2.2 - 12-Jul-2012
13
- * Changed some of the function prototypes in the Windows::Process module to
14
- use 'S' instead of 'P' when dealing with const* strings. This fixes potential
15
- errors regarding attempted modification of frozen strings. Thanks go to
16
- Pok Lau and John Keiser.
17
- * Fixed the multi_to_wide documentation. Thanks go to Dan Rathbun for the spot.
18
- * Fixed the MEM_4MB_PAGES constant in the Windows::Memory module.
19
- * Added some token related error constants to the Windows::Error module.
20
-
21
- = 1.2.1 - 25-Aug-2011
22
- * The strcpy, mbscpy and wsccpy functions in the Windows::MSVCRT::String
23
- module have been made friendlier. They will now accept either a string
24
- or an address for the second argument.
25
- * Minor modification to one GetFinalPathNameByHandle test.
26
-
27
- = 1.2.0 - 24-Mar-2011
28
- * All methods and constants are now private. These methods were never meant
29
- to be used by individual objects, but are only meant to be used internally.
30
- Note that, because of an issue currently in the windows-api library, some
31
- methods may still be currently public, but users of this library should not
32
- count on that for long.
33
- * Added the Windows::WSA and Windows::Socket modules.
34
- * Fixed the MAKEWORD and MAKELONG macro methods in the SystemInfo module.
35
- * Added many more functions and some constants to the Windows::Registry module.
36
- Thanks go to Dan Rathbun for the suggestion.
37
- * Fixed the HKEY_CURRENT_USER constant in the Windows::Registry module.
38
- * The custom GetFinalPathNameByHandle method for Windows XP and 2000 has been
39
- fixed and reworked. It is limited to a defacto VOLUME_NAME_NT flag value,
40
- however. See the comments for details.
41
-
42
- = 1.1.3 - 20-Jan-2011
43
- * Added the windows_7? method to the Windows::SystemInfo module.
44
- * Some minor cosmetic updates to other files.
45
-
46
- = 1.1.2 - 6-Nov-2010
47
- * Fixed a job security flag name.
48
-
49
- = 1.1.1 - 6-Nov-2010
50
- * Added some security flags for Job objects to the Windows::Process module.
51
- * Added namespace functions to the Windows::Synchronize module.
52
-
53
- = 1.1.0 - 5-Nov-2010
54
- * Added the get_volume_type method to the Windows::Volume module.
55
- * Added more tests for the Windows::Volume module.
56
- * Removed the non-gem installation task and added a clean task.
57
-
58
- = 1.0.9 - 6-Feb-2010
59
- * A couple of modules that were checking against $KCODE now check against
60
- __ENCODING__ or the string encoding for Ruby 1.9.x.
61
- * Removed an indentation warning that was revealed by Ruby 1.9.x.
62
- * Refactored the Rakefile, scoping and adding additional tasks.
63
- * Updated some tests to handling Ruby 1.9.x better. All tests now pass
64
- without warning with 1.9.x.
65
- * Added SERVICE_ACCEPT_PRESHUTDOWN constant to service.rb.
66
-
67
- = 1.0.8 - 24-Aug-2009
68
- * Several return value constants that were set at -1 are now set to
69
- 0xFFFFFFFF instead because win32-api returns unsigned longs.
70
- * Removed the two mailslot constants from the Windows::File module. They're
71
- defined in the Windows::Mailslot module.
72
- * Added the windows_version method to the Windows::SystemInfo module. It
73
- returns a float in 'major.minor' format.
74
-
75
- = 1.0.7 - 20-Aug-2009
76
- * Added the Windows::Mailslot module.
77
- * The IsProcessInJob function in the Windows::Process module is now wrapped
78
- properly so that it doesn't cause an error on Windows 2000. Thanks go to
79
- Finbar Clenaghan for the spot.
80
- * Minor updates to the conversion guide.
81
-
82
- = 1.0.6 - 19-Jul-2009
83
- * Added several job functions to the Windows::Process module.
84
- * Updated license to Artistic 2.0.
85
-
86
- = 1.0.5 - 21-May-2009
87
- * Fixed VARIANT_TRUE value in the Windows::COM::Variant module.
88
- * Added some functions to the Windows::National module, and handled some
89
- Vista only functions properly.
90
- * Updated the return types of the SafeArrayCreate and SafeArrayCreateVector
91
- functions in the Windows::COM::Automation module.
92
-
93
- = 1.0.4 - 15-May-2009
94
- * Created the Windows::COM::Variant module.
95
- * Created the Windows::COM::Accessibility module.
96
- * Added some IDispatch constants to the Windows::COM module.
97
- * Added some IDispatch error constants to the Windows::Error module.
98
- * Added many more constants to the Windows::COM::Automation module.
99
- * Added a couple of functions to the Windows::National module.
100
- * Corrected the return type for various SysXXX functions in the
101
- Windows::COM::Automation module.
102
- * Corrected the prototype for the RegEnumKeyEx function in the
103
- Windows::Registry module.
104
-
105
- = 1.0.3 - 23-Apr-2009
106
- * Created the Windows::GDI::MetaFile module.
107
- * Added GetWindowLongPtr and SetWindowLongPtr to Windows::Window::Classes.
108
- * Added DefWindowProc to Windows::Window::Message.
109
- * Added more methods and format constants to the Windows::Clipboard module.
110
- * Added more methods to the Windows::GDI::Bitmap module.
111
- * Prototype update for DragQueryFile() in the Windows::Shell module.
112
- * Return type change for GetClipboardData in the Windows::Clipboard module.
113
-
114
- = 1.0.2 - 5-Mar-2009
115
- * Fixed the library for the AttachThreadInput function in the Windows::Thread
116
- module. Thanks go to an anonymous user for the spot.
117
- * Added the beginnings of the Windows::Security::Authentication module.
118
-
119
- = 1.0.1 - 9-Feb-2009
120
- * Added the Windows::Window::Menu module.
121
- * Added the Windows::Window::Classes module.
122
- * Added tests for several Windows::Window::XXX modules that weren't
123
- previously covered.
124
- * Now properly wraps some methods in the Windows::Network::Winsock module
125
- that weren't supported on Windows 2000.
126
- * Added the IsWow64Process function to the Windows::Process module.
127
- * Added the windows_64? helper method to the Windows::Process module.
128
-
129
- = 1.0.0 - 5-Feb-2009
130
- * Fixed the prototype for DuplicateHandle() in the Windows::Handle module.
131
-
132
- = 0.9.9 - 1-Feb-2009
133
- * Now explicitly checks for Win32::API::LoadLibraryError in the method
134
- declarations instead of Windows::API::Error. The latter no longer exists,
135
- and the former is a better way to check for methods that don't exist on
136
- particular versions of Windows. This change requires windows-api 0.3.0
137
- and win32-api 1.3.0.
138
- * Added a few functions to the Windows::Security module.
139
- * Added the NtQuerySystemInformation function to the Windows::NTFS::Winternl
140
- module.
141
- * Added tests for the Windows::NTFS::Winternl module.
142
- * Declaration fix in Windows::Security module for Win2k.
143
- * Fixed a directory test for Win2k.
144
-
145
- = 0.9.8 - 15-Dec-2008
146
- * Added many more functions and a few constants to the Windows::Security
147
- module.
148
-
149
- = 0.9.7 - 5-Dec-2008
150
- * Renamed Windows::NTFS::File to Windows::NTFS::Winternl.
151
- * Updated the Windows::Network::Management and Windows::Shell modules to use
152
- the 'S' prototype where appropriate.
153
- * Updated the Windows::File module to use the 'S' prototype where appropriate.
154
- * Added the GetFinalPathNameByHandle function to the Windows::NTFS::Winternl
155
- module for Windows XP/2000.
156
- * Added a few new functions to the Windows::Volume module and converted 'P'
157
- prototypes to 'S' where appropriate.
158
- * Added SE_OBJECT_TYPE enumeration values to the Windows::Security module.
159
-
160
- = 0.9.6 - 14-Nov-2008
161
- * Updated the RegisterServiceCtrlHandler and RegisterServiceCtrlHandlerEx
162
- prototypes in the Windows::Service module. Changed old 'P' prototype to 'K'
163
- for callbacks.
164
- * Added explicit ANSI and Wide character functions for GetFileSecurity and
165
- SetFileSecurity in the Windows::Security module (since automatic unicode
166
- generation is set to false for that particular module).
167
- * Added IO reparse point tag constants to the Windows::File module.
168
- * The multi_to_wide helper method in Windows::Unicode now returns the string
169
- as-is if it's already a Unicode string.
170
- * A couple 'P' prototypes were switched to 'S' in Windows::Unicode functions.
171
-
172
- = 0.9.5 - 21-Oct-2008
173
- * Fixed the rescue clauses for unsupported functions for the Windows::Console
174
- and Windows::Debug modules. Thanks go to an anonymous user for the spot.
175
- * Added a couple functions to the Windows::File and Windows::NIO modules.
176
- * Removed the SetFilePointer and SetFilePointerEx functions from the
177
- Windows::File module since they're already in the Windows::NIO module.
178
-
179
- = 0.9.4 - 27-Sep-2008
180
- * Added some macros from windef.h to the Windows::SystemInfo module.
181
- * Added the windows_2000?, windows_xp?, windows_2003? and windows_vista?
182
- helper methods to the Windows::SystemInfo module.
183
- * Added the umask and umask_s functions to the Windows::MSVCRT::File module.
184
- * Added SH_DENYNO and SHORT_LIVED constants to the Windows::MSVCRT::IO module.
185
- * Fixed the prototype for open and wopen in the Windows::MSVCRT::IO module.
186
- * Added SHGetFolderLocation to the Windows::Shell module.
187
- * Added NT privilege constants to the Windows::Security module.
188
- * The wide_to_multi helper function is now friendlier with regards to strings
189
- that may be missing a trailing double null.
190
-
191
- = 0.9.3 - 12-Sep-2008
192
- * Added event logging functions for Windows Vista and later to the
193
- Windows::EventLog module.
194
-
195
- = 0.9.2 - 5-Sep-2008
196
- * Added some WoW64 functions to Windows::File and Windows::SystemInfo.
197
- * All modules now rescue Windows::API::Error for failed function loads.
198
- I was previously inconsistent on just what error I was rescuing.
199
-
200
- = 0.9.1 - 28-Jul-2008
201
- * Yet another refactoring of the multi_to_wide and wide_to_multi helper
202
- methods in the Windows::Unicode module. In addition to a bug fix, they
203
- now raise an ArgumentError if they fail.
204
- * Yet another tweak to get_last_error in the Windows::Error module. It now
205
- always uses the explicit ANSI version of the FormatMessage function.
206
- * Added tests for the multi_to_wide and wide_to_multi helper methods.
207
-
208
- = 0.9.0 - 26-Jul-2008
209
- * The process of converting prototypes from 'P' to 'S' has begun. This
210
- means that this library now requires win32-api 1.2.0 or later.
211
- * Added the Windows::Window::Message module.
212
- * Added the Windows::Window::Timer module.
213
- * Added the Windows::Window::Dialog module.
214
- * Added many more functions and constants to the Windows::Security module.
215
- * All ACE related constants have been move from the Windows::File module and
216
- are instead defined in the Windows::Security module. Not to worry, though.
217
- The Windows::File module now mixes in the Windows::Security module.
218
- * Added several profile related functions to the Windows::Shell module.
219
- * Changed the prototype of ConvertSidToStringSid and ConvertStringSidToSid
220
- back to 'LP' in the Windows::Security module. I'm not sure why I changed
221
- those before. If this causes too much grief I'll change them back.
222
-
223
- = 0.8.7 - 23-Jun-2008
224
- * Wide character fix for the get_last_error helper function. Thanks go to
225
- Dave Whitley for the spot.
226
- * Added local memory functions and constants to the Windows::Memory module.
227
-
228
- = 0.8.6 - 14-Jun-2008
229
- * Added the Windows::Network::Winsock module.
230
- * Added the Windows::ToolHelper module.
231
- * Added CLSCTX enum constants to the Windows::COM module.
232
- * Added several WSA socket error constants to Windows::Error.
233
- * Moved the Process32First and Process32Next functions from Windows::Process
234
- to Windows::ToolHelper.
235
-
236
- = 0.8.5 - 28-May-2008
237
- * Added more pipe related error codes to the Windows::Error module.
238
- * Added the FlushFileBuffers function to the Windows::File module.
239
-
240
- = 0.8.4 - 18-May-2008
241
- * Added the Windows::NTFS::File module.
242
- * Added several IOCTL macro methods to the Windows::DeviceIO module.
243
- * Wrapped the GetLayeredWindowAttributes function in the Windows::Window
244
- module since it is only supported on Windows XP or later.
245
- * Fixed the CreateThread prototype with regards to callback support.
246
-
247
- = 0.8.3 - 26-Apr-2008
248
- * Now requires windows-api 0.2.3 or later to take advantage of the
249
- improvements in auto constant generation.
250
- * Fixed a scope resolution bug in the custom memcpy method in the
251
- Windows::MSVCRT::Buffer module.
252
- * Added some more Windows::MSVCRT::String functions.
253
- * Added the FSCTL_ENUM_USN_DATA macro method in Windows::DeviceIO.
254
- * Some modules were refactored to take advantage of the improvements in
255
- windows-api 0.2.3. This resulted in a net reduction of code.
256
-
257
- = 0.8.2 - 17-Apr-2008
258
- * Most of the MSVCRT modules now use the MSVCRT_DLL from the Windows::API
259
- library. This helps resolve an obscure bug where state information from a
260
- statically linked runtime DLL is local to that runtime and not shared with
261
- the Ruby process.
262
- * Now requires windows-api 0.2.2 or later.
263
- * Added more MSVCRT tests.
264
-
265
- = 0.8.1 - 27-Mar-2008
266
- * Added waitable timer functions to the Windows::Synchronize module.
267
- * Fixed params 3 and 4 in the CreateProcess function.
268
-
269
- = 0.8.0 - 20-Jan-2008
270
- * Added the Windows::COM::Automation module.
271
- * Moved Windows::NetworkManagement to Windows::Network::Management.
272
- * Added the Windows::Network::SNMP module.
273
- * Added a MAXPATH constant to Windows::Limits, which is variable depending
274
- on whether or not $KCODE is set to UTF8.
275
- * Added some macro methods to Windows::Error.
276
- * Added many more methods to Windows::COM.
277
- * Fixed the prototype for the SetConsoleCtrlHandler in the Windows::Console
278
- module, and added the CTRL_CLOSE_EVENT constant.
279
-
280
- = 0.7.4 - 11-Dec-2007
281
- * Added several more functions to Windows::Window.
282
- * Added many more constants to the Windows::NetworkManagement module.
283
- * Added several more functions and a few constants to the Windows::Process
284
- module.
285
- * The multi_to_wide and wide_to_multi methods in Windows::Unicode will now
286
- return nil if you pass a nil argument. Also, they will raise a TypeError
287
- if you pass a non-nil, non-string object.
288
-
289
- = 0.7.3 - 23-Nov-2007
290
- * Several thread related methods were moved out of the Windows::Process
291
- module and into the Windows::Thread module.
292
- * Added critical section methods to the Windows::Synchronize module.
293
- * Added many more constants and methods to the Windows::Shell module.
294
- * Created the Windows::Thread module.
295
- * Fixed the PathCreateFromUrl return type in the Windows::Path module.
296
- * Added the strncpy and wcsncpy functions to the Windows::MSVCRT::String
297
- module.
298
- * Added several token related methods and constants to the Windows::Security
299
- module.
300
- * The multi_to_wide and wide_to_multi methods were refactored slightly. Both
301
- now only use MSVCRT string functions internally in case any Ruby String
302
- methods are redefined.
303
-
304
- = 0.7.2 - 15-Oct-2007
305
- * Added the Windows::MSVCRT::Time module.
306
- * Added the Windows::MSVCRT::Directory module.
307
- * Added some SID related security constants to the Windows::Security module.
308
- * Added more constants and the HasOverlappedIoCompleted macro to the
309
- Windows::Synchronize module.
310
- * Added some 'find' methods to the Windows::File module.
311
- * Some prototype fixes for the 'Virtual' functions in Windows::Memory.
312
-
313
- = 0.7.1 - 21-Sep-2007
314
- * Added USN (changejournal) macros to Windows::DeviceIO.
315
- * Added the Heap functions to Windows::Memory.
316
- * Added the Windows::Time module.
317
- * Added a Rakefile with tasks for installation and testing.
318
- * Added and refactored some tests.
319
-
320
- = 0.7.0 - 9-Aug-2007
321
- * All modules now use the windows-api library behind the scenes.
322
- * Added the Windows::NIO module. This contains native Windows IO functions.
323
- * Added several more functions to the Windows::GDI::PaintDrawing module.
324
- * Fixed the prototype for the GetWindowsDirectory function in the
325
- Windows::SystemInfo module.
326
-
327
- = 0.6.6 - 3-May-2007
328
- * Added the Windows::MSVCRT::IO module.
329
- * Removed the SetConsoleCommandHistoryMode method from the Windows::Console
330
- module. This was a preliminary function for Vista only, and it has since
331
- been removed. Thanks go to Drew Colthorp for the spot.
332
-
333
- = 0.6.5 - 28-Feb-2007
334
- * Important bug fixes for the Windows::Directory, Windows::Memory,
335
- Windows::Synchronize and Windows::Volume modules. These were either fixes
336
- for the function declaration or the wrapper method. Thanks go to Katsuyuki
337
- Miyamuko for the spot and the patches.
338
-
339
- = 0.6.4 - 28-Feb-2007
340
- * Add more string functions to the Windows::MSVCRT::String module.
341
- * Minor enhancement to the multi_to_wide and wide_to_multi helper methods in
342
- the Windows::Unicode module. You can now pass an explicit encoding as an
343
- optional second argument.
344
- * Added several more methods to the Windows::National module.
345
- * Finer grained method wrapping/checking for the Windows::Volume module.
346
- Thanks go to Dave Rose for the spot.
347
-
348
- = 0.6.3 - 2-Feb-2007
349
- * Fixed the DLL for SetLastErrorEx in the Windows::Error module.
350
- * Fixed an unitialized constant bug in the Windows::DeviceIO module.
351
- * Fixed a bug in the NetWkstaSetInfo() method, from the
352
- Windows::NetworkManagement module. Thanks go to Richard (???) for the spot.
353
- * Added more security related methods and constants to the Windows::Security
354
- module.
355
- * Fixed a bug in the GetComputerName method in the Windows::SystemInfo module.
356
- Thanks go to Russell Christopher for the spot and the fix.
357
- * Changed method prototype for GetUserName and GetUserNameEx in the
358
- Windows::SystemInfo module.
359
- * Added the PIPE_UNLIMITED_INSTANCES constant to the Windows::Pipe module.
360
- * Altered the prototype for the ConvertSidToStringSid() and
361
- ConvertStringSidToSid() methods from the Windows::Security module.
362
-
363
- = 0.6.2 - 21-Dec-2006
364
- * Added file related constants from sys/stat.h to the Windows::MSVCRT::File
365
- module.
366
- * Added the open_osfhandle method to the Windows::Handle module.
367
- * Changed the signatures for the VirtualFree and VirtualFreeEx functions in
368
- the Windows::Memory module.
369
- * Added the Windows::GDI::Bitmap, Windows::GDI::DeviceContext and
370
- Windows::GDI::PaintingDrawing modules.
371
-
372
- = 0.6.1 - 22-Nov-2006
373
- * Changed the signature for VirtualAlloc and VirtualAllocEx in the
374
- Windows::Memory module (long instead of pointer for first argument).
375
- * Added the get_osfhandle method to the Windows::Handle module.
376
-
377
- = 0.6.0 - 5-Nov-2006
378
- * Added the Windows::Volume module.
379
-
380
- = 0.5.6 - 22-Oct-2006
381
- * Modified the memcpy method in Windows::MSVCRT::Buffer to do the right
382
- thing based on the type of the parameters, as well as automatically
383
- set the default size to the size of the source being copied.
384
-
385
- = 0.5.5 - 11-Oct-2006
386
- * Prototype modification for VirtualQuery and VirtualQueryEx in the
387
- Windows::Memory module.
388
-
389
- = 0.5.4 - 8-Sep-2006
390
- * Added the Windows::NetworkManagement module, which contains methods like
391
- NetUserAdd(), etc.
392
- * Fixed bugs in SetLastError and SetLastErrorEx declarations.
393
- * Finer grained method wrapping/checking for the Windows::Library module.
394
- * Finer grained method wrapping/checking for the Windows::Console module.
395
- * Added a test case for the Windows::Library module.
396
- * Added the LOCKFILE_EXCLUSIVE_LOCK and LOCKFILE_FAIL_IMMEDIATELY constants
397
- to the Windows::File module.
398
-
399
- = 0.5.3 - 10-Aug-2006
400
- * Added wide character functions to the EventLog module.
401
- * Added a test suite for the EventLog module.
402
- * Fixed method wrapper for MapViewOfFileEx.
403
- * Finer grained method wrapping/checking for the Windows::Registry module (the
404
- RegSaveKeyEx might not be defined).
405
-
406
- = 0.5.2 - 29-Jul-2006
407
- * Prototype fixes/changes for CreateProcess, GlobalLock, GlobalMemoryStatusEx,
408
- and CreateFileMapping.
409
- * Finer grained method wrapping/checking for the Windows::Process module (only
410
- two methods might not be defined).
411
- * Added method wrappers for the Handle constants.
412
- * Added mmap related methods and constants.
413
- * Added more test cases.
414
- * Added wide character methods to the Windows::Directory class.
415
- * Added wide character helper methods.
416
- * Added a few more methods to MSVCRT::String.
417
-
418
- = 0.5.1 - 26-May-2006
419
- * Minor updates and fixes for the Unicode and DeviceIO modules.
420
- * Added some wide character support, based on $KCODE values (which should
421
- not be used at this time).
422
-
423
- = 0.5.0 - 23-May-2006
424
- * Added the Registry module
425
- * Added the EventLog module
426
- * Added the National module
427
- * Added the SystemInfo module
428
-
429
- = 0.4.0 - 7-May-2006
430
- * Bug fix for the WaitForMultipleObjects method in synchronize.rb
431
- * Added the Window module (just a few constants for now)
432
- * Added the Console module (AttachConsole, etc)
433
- * Added the Library module (LoadLibrary, etc)
434
- * Added the Directory module (CreateDirectory, etc)
435
- * Added the Shell module (some constants, a few methods for now)
436
- * Added the Unicode module (WideCharToMultiByte, etc)
437
- * Added process creation, priority and startf flags to the Process module
438
-
439
- = 0.3.0 - 22-Apr-2006
440
- * Added the Limits module.
441
- * Added the Security module.
442
- * Fixed a signature bug in the MSVCRT/Buffer module.
443
-
444
- = 0.2.0 - 13-Apr-2006
445
- * Added the FileSystem module.
446
- * Fixed signature and dll mistakes in the File module.
447
-
448
- = 0.1.0 - 4-Apr-2006
449
- * Initial release
1
+ = 1.2.5 - 22-Jun-2016
2
+ * Fixed invalid handle constant in 64bit Windows environment.
3
+ * Suppress test code warnings generated by minitest 5.9.
4
+
5
+ = 1.2.4 - 18-Oct-2014
6
+ * Replaced test-unit with minitest for the test suite. This necessitated the
7
+ addition of a test helper file for compatibility.
8
+ * Fix for the Windows::Socket tests.
9
+
10
+ = 1.2.3 - 19-Feb-2014
11
+ * Updated the get_last_error method to better handle encoding issues. Thanks
12
+ go to dalang for the spot.
13
+ * Added the Windows::Security::SSPI module and an initial set of constants.
14
+ * Updated library for OleIconToCursor function in the Windows::COM module.
15
+
16
+ = 1.2.2 - 12-Jul-2012
17
+ * Changed some of the function prototypes in the Windows::Process module to
18
+ use 'S' instead of 'P' when dealing with const* strings. This fixes potential
19
+ errors regarding attempted modification of frozen strings. Thanks go to
20
+ Pok Lau and John Keiser.
21
+ * Fixed the multi_to_wide documentation. Thanks go to Dan Rathbun for the spot.
22
+ * Fixed the MEM_4MB_PAGES constant in the Windows::Memory module.
23
+ * Added some token related error constants to the Windows::Error module.
24
+
25
+ = 1.2.1 - 25-Aug-2011
26
+ * The strcpy, mbscpy and wsccpy functions in the Windows::MSVCRT::String
27
+ module have been made friendlier. They will now accept either a string
28
+ or an address for the second argument.
29
+ * Minor modification to one GetFinalPathNameByHandle test.
30
+
31
+ = 1.2.0 - 24-Mar-2011
32
+ * All methods and constants are now private. These methods were never meant
33
+ to be used by individual objects, but are only meant to be used internally.
34
+ Note that, because of an issue currently in the windows-api library, some
35
+ methods may still be currently public, but users of this library should not
36
+ count on that for long.
37
+ * Added the Windows::WSA and Windows::Socket modules.
38
+ * Fixed the MAKEWORD and MAKELONG macro methods in the SystemInfo module.
39
+ * Added many more functions and some constants to the Windows::Registry module.
40
+ Thanks go to Dan Rathbun for the suggestion.
41
+ * Fixed the HKEY_CURRENT_USER constant in the Windows::Registry module.
42
+ * The custom GetFinalPathNameByHandle method for Windows XP and 2000 has been
43
+ fixed and reworked. It is limited to a defacto VOLUME_NAME_NT flag value,
44
+ however. See the comments for details.
45
+
46
+ = 1.1.3 - 20-Jan-2011
47
+ * Added the windows_7? method to the Windows::SystemInfo module.
48
+ * Some minor cosmetic updates to other files.
49
+
50
+ = 1.1.2 - 6-Nov-2010
51
+ * Fixed a job security flag name.
52
+
53
+ = 1.1.1 - 6-Nov-2010
54
+ * Added some security flags for Job objects to the Windows::Process module.
55
+ * Added namespace functions to the Windows::Synchronize module.
56
+
57
+ = 1.1.0 - 5-Nov-2010
58
+ * Added the get_volume_type method to the Windows::Volume module.
59
+ * Added more tests for the Windows::Volume module.
60
+ * Removed the non-gem installation task and added a clean task.
61
+
62
+ = 1.0.9 - 6-Feb-2010
63
+ * A couple of modules that were checking against $KCODE now check against
64
+ __ENCODING__ or the string encoding for Ruby 1.9.x.
65
+ * Removed an indentation warning that was revealed by Ruby 1.9.x.
66
+ * Refactored the Rakefile, scoping and adding additional tasks.
67
+ * Updated some tests to handling Ruby 1.9.x better. All tests now pass
68
+ without warning with 1.9.x.
69
+ * Added SERVICE_ACCEPT_PRESHUTDOWN constant to service.rb.
70
+
71
+ = 1.0.8 - 24-Aug-2009
72
+ * Several return value constants that were set at -1 are now set to
73
+ 0xFFFFFFFF instead because win32-api returns unsigned longs.
74
+ * Removed the two mailslot constants from the Windows::File module. They're
75
+ defined in the Windows::Mailslot module.
76
+ * Added the windows_version method to the Windows::SystemInfo module. It
77
+ returns a float in 'major.minor' format.
78
+
79
+ = 1.0.7 - 20-Aug-2009
80
+ * Added the Windows::Mailslot module.
81
+ * The IsProcessInJob function in the Windows::Process module is now wrapped
82
+ properly so that it doesn't cause an error on Windows 2000. Thanks go to
83
+ Finbar Clenaghan for the spot.
84
+ * Minor updates to the conversion guide.
85
+
86
+ = 1.0.6 - 19-Jul-2009
87
+ * Added several job functions to the Windows::Process module.
88
+ * Updated license to Artistic 2.0.
89
+
90
+ = 1.0.5 - 21-May-2009
91
+ * Fixed VARIANT_TRUE value in the Windows::COM::Variant module.
92
+ * Added some functions to the Windows::National module, and handled some
93
+ Vista only functions properly.
94
+ * Updated the return types of the SafeArrayCreate and SafeArrayCreateVector
95
+ functions in the Windows::COM::Automation module.
96
+
97
+ = 1.0.4 - 15-May-2009
98
+ * Created the Windows::COM::Variant module.
99
+ * Created the Windows::COM::Accessibility module.
100
+ * Added some IDispatch constants to the Windows::COM module.
101
+ * Added some IDispatch error constants to the Windows::Error module.
102
+ * Added many more constants to the Windows::COM::Automation module.
103
+ * Added a couple of functions to the Windows::National module.
104
+ * Corrected the return type for various SysXXX functions in the
105
+ Windows::COM::Automation module.
106
+ * Corrected the prototype for the RegEnumKeyEx function in the
107
+ Windows::Registry module.
108
+
109
+ = 1.0.3 - 23-Apr-2009
110
+ * Created the Windows::GDI::MetaFile module.
111
+ * Added GetWindowLongPtr and SetWindowLongPtr to Windows::Window::Classes.
112
+ * Added DefWindowProc to Windows::Window::Message.
113
+ * Added more methods and format constants to the Windows::Clipboard module.
114
+ * Added more methods to the Windows::GDI::Bitmap module.
115
+ * Prototype update for DragQueryFile() in the Windows::Shell module.
116
+ * Return type change for GetClipboardData in the Windows::Clipboard module.
117
+
118
+ = 1.0.2 - 5-Mar-2009
119
+ * Fixed the library for the AttachThreadInput function in the Windows::Thread
120
+ module. Thanks go to an anonymous user for the spot.
121
+ * Added the beginnings of the Windows::Security::Authentication module.
122
+
123
+ = 1.0.1 - 9-Feb-2009
124
+ * Added the Windows::Window::Menu module.
125
+ * Added the Windows::Window::Classes module.
126
+ * Added tests for several Windows::Window::XXX modules that weren't
127
+ previously covered.
128
+ * Now properly wraps some methods in the Windows::Network::Winsock module
129
+ that weren't supported on Windows 2000.
130
+ * Added the IsWow64Process function to the Windows::Process module.
131
+ * Added the windows_64? helper method to the Windows::Process module.
132
+
133
+ = 1.0.0 - 5-Feb-2009
134
+ * Fixed the prototype for DuplicateHandle() in the Windows::Handle module.
135
+
136
+ = 0.9.9 - 1-Feb-2009
137
+ * Now explicitly checks for Win32::API::LoadLibraryError in the method
138
+ declarations instead of Windows::API::Error. The latter no longer exists,
139
+ and the former is a better way to check for methods that don't exist on
140
+ particular versions of Windows. This change requires windows-api 0.3.0
141
+ and win32-api 1.3.0.
142
+ * Added a few functions to the Windows::Security module.
143
+ * Added the NtQuerySystemInformation function to the Windows::NTFS::Winternl
144
+ module.
145
+ * Added tests for the Windows::NTFS::Winternl module.
146
+ * Declaration fix in Windows::Security module for Win2k.
147
+ * Fixed a directory test for Win2k.
148
+
149
+ = 0.9.8 - 15-Dec-2008
150
+ * Added many more functions and a few constants to the Windows::Security
151
+ module.
152
+
153
+ = 0.9.7 - 5-Dec-2008
154
+ * Renamed Windows::NTFS::File to Windows::NTFS::Winternl.
155
+ * Updated the Windows::Network::Management and Windows::Shell modules to use
156
+ the 'S' prototype where appropriate.
157
+ * Updated the Windows::File module to use the 'S' prototype where appropriate.
158
+ * Added the GetFinalPathNameByHandle function to the Windows::NTFS::Winternl
159
+ module for Windows XP/2000.
160
+ * Added a few new functions to the Windows::Volume module and converted 'P'
161
+ prototypes to 'S' where appropriate.
162
+ * Added SE_OBJECT_TYPE enumeration values to the Windows::Security module.
163
+
164
+ = 0.9.6 - 14-Nov-2008
165
+ * Updated the RegisterServiceCtrlHandler and RegisterServiceCtrlHandlerEx
166
+ prototypes in the Windows::Service module. Changed old 'P' prototype to 'K'
167
+ for callbacks.
168
+ * Added explicit ANSI and Wide character functions for GetFileSecurity and
169
+ SetFileSecurity in the Windows::Security module (since automatic unicode
170
+ generation is set to false for that particular module).
171
+ * Added IO reparse point tag constants to the Windows::File module.
172
+ * The multi_to_wide helper method in Windows::Unicode now returns the string
173
+ as-is if it's already a Unicode string.
174
+ * A couple 'P' prototypes were switched to 'S' in Windows::Unicode functions.
175
+
176
+ = 0.9.5 - 21-Oct-2008
177
+ * Fixed the rescue clauses for unsupported functions for the Windows::Console
178
+ and Windows::Debug modules. Thanks go to an anonymous user for the spot.
179
+ * Added a couple functions to the Windows::File and Windows::NIO modules.
180
+ * Removed the SetFilePointer and SetFilePointerEx functions from the
181
+ Windows::File module since they're already in the Windows::NIO module.
182
+
183
+ = 0.9.4 - 27-Sep-2008
184
+ * Added some macros from windef.h to the Windows::SystemInfo module.
185
+ * Added the windows_2000?, windows_xp?, windows_2003? and windows_vista?
186
+ helper methods to the Windows::SystemInfo module.
187
+ * Added the umask and umask_s functions to the Windows::MSVCRT::File module.
188
+ * Added SH_DENYNO and SHORT_LIVED constants to the Windows::MSVCRT::IO module.
189
+ * Fixed the prototype for open and wopen in the Windows::MSVCRT::IO module.
190
+ * Added SHGetFolderLocation to the Windows::Shell module.
191
+ * Added NT privilege constants to the Windows::Security module.
192
+ * The wide_to_multi helper function is now friendlier with regards to strings
193
+ that may be missing a trailing double null.
194
+
195
+ = 0.9.3 - 12-Sep-2008
196
+ * Added event logging functions for Windows Vista and later to the
197
+ Windows::EventLog module.
198
+
199
+ = 0.9.2 - 5-Sep-2008
200
+ * Added some WoW64 functions to Windows::File and Windows::SystemInfo.
201
+ * All modules now rescue Windows::API::Error for failed function loads.
202
+ I was previously inconsistent on just what error I was rescuing.
203
+
204
+ = 0.9.1 - 28-Jul-2008
205
+ * Yet another refactoring of the multi_to_wide and wide_to_multi helper
206
+ methods in the Windows::Unicode module. In addition to a bug fix, they
207
+ now raise an ArgumentError if they fail.
208
+ * Yet another tweak to get_last_error in the Windows::Error module. It now
209
+ always uses the explicit ANSI version of the FormatMessage function.
210
+ * Added tests for the multi_to_wide and wide_to_multi helper methods.
211
+
212
+ = 0.9.0 - 26-Jul-2008
213
+ * The process of converting prototypes from 'P' to 'S' has begun. This
214
+ means that this library now requires win32-api 1.2.0 or later.
215
+ * Added the Windows::Window::Message module.
216
+ * Added the Windows::Window::Timer module.
217
+ * Added the Windows::Window::Dialog module.
218
+ * Added many more functions and constants to the Windows::Security module.
219
+ * All ACE related constants have been move from the Windows::File module and
220
+ are instead defined in the Windows::Security module. Not to worry, though.
221
+ The Windows::File module now mixes in the Windows::Security module.
222
+ * Added several profile related functions to the Windows::Shell module.
223
+ * Changed the prototype of ConvertSidToStringSid and ConvertStringSidToSid
224
+ back to 'LP' in the Windows::Security module. I'm not sure why I changed
225
+ those before. If this causes too much grief I'll change them back.
226
+
227
+ = 0.8.7 - 23-Jun-2008
228
+ * Wide character fix for the get_last_error helper function. Thanks go to
229
+ Dave Whitley for the spot.
230
+ * Added local memory functions and constants to the Windows::Memory module.
231
+
232
+ = 0.8.6 - 14-Jun-2008
233
+ * Added the Windows::Network::Winsock module.
234
+ * Added the Windows::ToolHelper module.
235
+ * Added CLSCTX enum constants to the Windows::COM module.
236
+ * Added several WSA socket error constants to Windows::Error.
237
+ * Moved the Process32First and Process32Next functions from Windows::Process
238
+ to Windows::ToolHelper.
239
+
240
+ = 0.8.5 - 28-May-2008
241
+ * Added more pipe related error codes to the Windows::Error module.
242
+ * Added the FlushFileBuffers function to the Windows::File module.
243
+
244
+ = 0.8.4 - 18-May-2008
245
+ * Added the Windows::NTFS::File module.
246
+ * Added several IOCTL macro methods to the Windows::DeviceIO module.
247
+ * Wrapped the GetLayeredWindowAttributes function in the Windows::Window
248
+ module since it is only supported on Windows XP or later.
249
+ * Fixed the CreateThread prototype with regards to callback support.
250
+
251
+ = 0.8.3 - 26-Apr-2008
252
+ * Now requires windows-api 0.2.3 or later to take advantage of the
253
+ improvements in auto constant generation.
254
+ * Fixed a scope resolution bug in the custom memcpy method in the
255
+ Windows::MSVCRT::Buffer module.
256
+ * Added some more Windows::MSVCRT::String functions.
257
+ * Added the FSCTL_ENUM_USN_DATA macro method in Windows::DeviceIO.
258
+ * Some modules were refactored to take advantage of the improvements in
259
+ windows-api 0.2.3. This resulted in a net reduction of code.
260
+
261
+ = 0.8.2 - 17-Apr-2008
262
+ * Most of the MSVCRT modules now use the MSVCRT_DLL from the Windows::API
263
+ library. This helps resolve an obscure bug where state information from a
264
+ statically linked runtime DLL is local to that runtime and not shared with
265
+ the Ruby process.
266
+ * Now requires windows-api 0.2.2 or later.
267
+ * Added more MSVCRT tests.
268
+
269
+ = 0.8.1 - 27-Mar-2008
270
+ * Added waitable timer functions to the Windows::Synchronize module.
271
+ * Fixed params 3 and 4 in the CreateProcess function.
272
+
273
+ = 0.8.0 - 20-Jan-2008
274
+ * Added the Windows::COM::Automation module.
275
+ * Moved Windows::NetworkManagement to Windows::Network::Management.
276
+ * Added the Windows::Network::SNMP module.
277
+ * Added a MAXPATH constant to Windows::Limits, which is variable depending
278
+ on whether or not $KCODE is set to UTF8.
279
+ * Added some macro methods to Windows::Error.
280
+ * Added many more methods to Windows::COM.
281
+ * Fixed the prototype for the SetConsoleCtrlHandler in the Windows::Console
282
+ module, and added the CTRL_CLOSE_EVENT constant.
283
+
284
+ = 0.7.4 - 11-Dec-2007
285
+ * Added several more functions to Windows::Window.
286
+ * Added many more constants to the Windows::NetworkManagement module.
287
+ * Added several more functions and a few constants to the Windows::Process
288
+ module.
289
+ * The multi_to_wide and wide_to_multi methods in Windows::Unicode will now
290
+ return nil if you pass a nil argument. Also, they will raise a TypeError
291
+ if you pass a non-nil, non-string object.
292
+
293
+ = 0.7.3 - 23-Nov-2007
294
+ * Several thread related methods were moved out of the Windows::Process
295
+ module and into the Windows::Thread module.
296
+ * Added critical section methods to the Windows::Synchronize module.
297
+ * Added many more constants and methods to the Windows::Shell module.
298
+ * Created the Windows::Thread module.
299
+ * Fixed the PathCreateFromUrl return type in the Windows::Path module.
300
+ * Added the strncpy and wcsncpy functions to the Windows::MSVCRT::String
301
+ module.
302
+ * Added several token related methods and constants to the Windows::Security
303
+ module.
304
+ * The multi_to_wide and wide_to_multi methods were refactored slightly. Both
305
+ now only use MSVCRT string functions internally in case any Ruby String
306
+ methods are redefined.
307
+
308
+ = 0.7.2 - 15-Oct-2007
309
+ * Added the Windows::MSVCRT::Time module.
310
+ * Added the Windows::MSVCRT::Directory module.
311
+ * Added some SID related security constants to the Windows::Security module.
312
+ * Added more constants and the HasOverlappedIoCompleted macro to the
313
+ Windows::Synchronize module.
314
+ * Added some 'find' methods to the Windows::File module.
315
+ * Some prototype fixes for the 'Virtual' functions in Windows::Memory.
316
+
317
+ = 0.7.1 - 21-Sep-2007
318
+ * Added USN (changejournal) macros to Windows::DeviceIO.
319
+ * Added the Heap functions to Windows::Memory.
320
+ * Added the Windows::Time module.
321
+ * Added a Rakefile with tasks for installation and testing.
322
+ * Added and refactored some tests.
323
+
324
+ = 0.7.0 - 9-Aug-2007
325
+ * All modules now use the windows-api library behind the scenes.
326
+ * Added the Windows::NIO module. This contains native Windows IO functions.
327
+ * Added several more functions to the Windows::GDI::PaintDrawing module.
328
+ * Fixed the prototype for the GetWindowsDirectory function in the
329
+ Windows::SystemInfo module.
330
+
331
+ = 0.6.6 - 3-May-2007
332
+ * Added the Windows::MSVCRT::IO module.
333
+ * Removed the SetConsoleCommandHistoryMode method from the Windows::Console
334
+ module. This was a preliminary function for Vista only, and it has since
335
+ been removed. Thanks go to Drew Colthorp for the spot.
336
+
337
+ = 0.6.5 - 28-Feb-2007
338
+ * Important bug fixes for the Windows::Directory, Windows::Memory,
339
+ Windows::Synchronize and Windows::Volume modules. These were either fixes
340
+ for the function declaration or the wrapper method. Thanks go to Katsuyuki
341
+ Miyamuko for the spot and the patches.
342
+
343
+ = 0.6.4 - 28-Feb-2007
344
+ * Add more string functions to the Windows::MSVCRT::String module.
345
+ * Minor enhancement to the multi_to_wide and wide_to_multi helper methods in
346
+ the Windows::Unicode module. You can now pass an explicit encoding as an
347
+ optional second argument.
348
+ * Added several more methods to the Windows::National module.
349
+ * Finer grained method wrapping/checking for the Windows::Volume module.
350
+ Thanks go to Dave Rose for the spot.
351
+
352
+ = 0.6.3 - 2-Feb-2007
353
+ * Fixed the DLL for SetLastErrorEx in the Windows::Error module.
354
+ * Fixed an unitialized constant bug in the Windows::DeviceIO module.
355
+ * Fixed a bug in the NetWkstaSetInfo() method, from the
356
+ Windows::NetworkManagement module. Thanks go to Richard (???) for the spot.
357
+ * Added more security related methods and constants to the Windows::Security
358
+ module.
359
+ * Fixed a bug in the GetComputerName method in the Windows::SystemInfo module.
360
+ Thanks go to Russell Christopher for the spot and the fix.
361
+ * Changed method prototype for GetUserName and GetUserNameEx in the
362
+ Windows::SystemInfo module.
363
+ * Added the PIPE_UNLIMITED_INSTANCES constant to the Windows::Pipe module.
364
+ * Altered the prototype for the ConvertSidToStringSid() and
365
+ ConvertStringSidToSid() methods from the Windows::Security module.
366
+
367
+ = 0.6.2 - 21-Dec-2006
368
+ * Added file related constants from sys/stat.h to the Windows::MSVCRT::File
369
+ module.
370
+ * Added the open_osfhandle method to the Windows::Handle module.
371
+ * Changed the signatures for the VirtualFree and VirtualFreeEx functions in
372
+ the Windows::Memory module.
373
+ * Added the Windows::GDI::Bitmap, Windows::GDI::DeviceContext and
374
+ Windows::GDI::PaintingDrawing modules.
375
+
376
+ = 0.6.1 - 22-Nov-2006
377
+ * Changed the signature for VirtualAlloc and VirtualAllocEx in the
378
+ Windows::Memory module (long instead of pointer for first argument).
379
+ * Added the get_osfhandle method to the Windows::Handle module.
380
+
381
+ = 0.6.0 - 5-Nov-2006
382
+ * Added the Windows::Volume module.
383
+
384
+ = 0.5.6 - 22-Oct-2006
385
+ * Modified the memcpy method in Windows::MSVCRT::Buffer to do the right
386
+ thing based on the type of the parameters, as well as automatically
387
+ set the default size to the size of the source being copied.
388
+
389
+ = 0.5.5 - 11-Oct-2006
390
+ * Prototype modification for VirtualQuery and VirtualQueryEx in the
391
+ Windows::Memory module.
392
+
393
+ = 0.5.4 - 8-Sep-2006
394
+ * Added the Windows::NetworkManagement module, which contains methods like
395
+ NetUserAdd(), etc.
396
+ * Fixed bugs in SetLastError and SetLastErrorEx declarations.
397
+ * Finer grained method wrapping/checking for the Windows::Library module.
398
+ * Finer grained method wrapping/checking for the Windows::Console module.
399
+ * Added a test case for the Windows::Library module.
400
+ * Added the LOCKFILE_EXCLUSIVE_LOCK and LOCKFILE_FAIL_IMMEDIATELY constants
401
+ to the Windows::File module.
402
+
403
+ = 0.5.3 - 10-Aug-2006
404
+ * Added wide character functions to the EventLog module.
405
+ * Added a test suite for the EventLog module.
406
+ * Fixed method wrapper for MapViewOfFileEx.
407
+ * Finer grained method wrapping/checking for the Windows::Registry module (the
408
+ RegSaveKeyEx might not be defined).
409
+
410
+ = 0.5.2 - 29-Jul-2006
411
+ * Prototype fixes/changes for CreateProcess, GlobalLock, GlobalMemoryStatusEx,
412
+ and CreateFileMapping.
413
+ * Finer grained method wrapping/checking for the Windows::Process module (only
414
+ two methods might not be defined).
415
+ * Added method wrappers for the Handle constants.
416
+ * Added mmap related methods and constants.
417
+ * Added more test cases.
418
+ * Added wide character methods to the Windows::Directory class.
419
+ * Added wide character helper methods.
420
+ * Added a few more methods to MSVCRT::String.
421
+
422
+ = 0.5.1 - 26-May-2006
423
+ * Minor updates and fixes for the Unicode and DeviceIO modules.
424
+ * Added some wide character support, based on $KCODE values (which should
425
+ not be used at this time).
426
+
427
+ = 0.5.0 - 23-May-2006
428
+ * Added the Registry module
429
+ * Added the EventLog module
430
+ * Added the National module
431
+ * Added the SystemInfo module
432
+
433
+ = 0.4.0 - 7-May-2006
434
+ * Bug fix for the WaitForMultipleObjects method in synchronize.rb
435
+ * Added the Window module (just a few constants for now)
436
+ * Added the Console module (AttachConsole, etc)
437
+ * Added the Library module (LoadLibrary, etc)
438
+ * Added the Directory module (CreateDirectory, etc)
439
+ * Added the Shell module (some constants, a few methods for now)
440
+ * Added the Unicode module (WideCharToMultiByte, etc)
441
+ * Added process creation, priority and startf flags to the Process module
442
+
443
+ = 0.3.0 - 22-Apr-2006
444
+ * Added the Limits module.
445
+ * Added the Security module.
446
+ * Fixed a signature bug in the MSVCRT/Buffer module.
447
+
448
+ = 0.2.0 - 13-Apr-2006
449
+ * Added the FileSystem module.
450
+ * Fixed signature and dll mistakes in the File module.
451
+
452
+ = 0.1.0 - 4-Apr-2006
453
+ * Initial release