guesswhat 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (446) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/CODE_OF_CONDUCT.md +49 -0
  4. data/Gemfile +4 -0
  5. data/README.md +36 -0
  6. data/Rakefile +4 -0
  7. data/bin/console +14 -0
  8. data/bin/setup +8 -0
  9. data/guesswhat.gemspec +25 -0
  10. data/lib/guesswhat/version.rb +3 -0
  11. data/lib/guesswhat.rb +5 -0
  12. data/tasks/rspec.rake +3 -0
  13. data/vendor/bundle/bin/console +23 -0
  14. data/vendor/bundle/bin/htmldiff +25 -0
  15. data/vendor/bundle/bin/ldiff +25 -0
  16. data/vendor/bundle/bin/rake +23 -0
  17. data/vendor/bundle/bin/rspec +23 -0
  18. data/vendor/bundle/bin/setup +23 -0
  19. data/vendor/bundle/cache/diff-lcs-1.2.5.gem +0 -0
  20. data/vendor/bundle/cache/rake-10.5.0.gem +0 -0
  21. data/vendor/bundle/cache/rspec-3.4.0.gem +0 -0
  22. data/vendor/bundle/cache/rspec-core-3.4.4.gem +0 -0
  23. data/vendor/bundle/cache/rspec-expectations-3.4.0.gem +0 -0
  24. data/vendor/bundle/cache/rspec-mocks-3.4.1.gem +0 -0
  25. data/vendor/bundle/cache/rspec-support-3.4.1.gem +0 -0
  26. data/vendor/bundle/gems/diff-lcs-1.2.5/.autotest +3 -0
  27. data/vendor/bundle/gems/diff-lcs-1.2.5/.gemtest +0 -0
  28. data/vendor/bundle/gems/diff-lcs-1.2.5/.hoerc +2 -0
  29. data/vendor/bundle/gems/diff-lcs-1.2.5/.rspec +2 -0
  30. data/vendor/bundle/gems/diff-lcs-1.2.5/.travis.yml +22 -0
  31. data/vendor/bundle/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  32. data/vendor/bundle/gems/diff-lcs-1.2.5/Gemfile +20 -0
  33. data/vendor/bundle/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  34. data/vendor/bundle/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  35. data/vendor/bundle/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  36. data/vendor/bundle/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  37. data/vendor/bundle/gems/diff-lcs-1.2.5/Rakefile +41 -0
  38. data/vendor/bundle/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  39. data/vendor/bundle/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  40. data/vendor/bundle/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  41. data/vendor/bundle/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  42. data/vendor/bundle/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  43. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  44. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  45. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  46. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  47. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  48. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  49. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  50. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  51. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  52. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  53. data/vendor/bundle/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  54. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  55. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  56. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  57. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  58. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  59. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  60. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  61. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  62. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  63. data/vendor/bundle/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  64. data/vendor/bundle/gems/rake-10.5.0/.autotest +7 -0
  65. data/vendor/bundle/gems/rake-10.5.0/.rubocop.yml +27 -0
  66. data/vendor/bundle/gems/rake-10.5.0/.togglerc +7 -0
  67. data/vendor/bundle/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
  68. data/vendor/bundle/gems/rake-10.5.0/History.rdoc +659 -0
  69. data/vendor/bundle/gems/rake-10.5.0/MIT-LICENSE +21 -0
  70. data/vendor/bundle/gems/rake-10.5.0/Manifest.txt +166 -0
  71. data/vendor/bundle/gems/rake-10.5.0/README.rdoc +139 -0
  72. data/vendor/bundle/gems/rake-10.5.0/Rakefile +81 -0
  73. data/vendor/bundle/gems/rake-10.5.0/bin/rake +33 -0
  74. data/vendor/bundle/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
  75. data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
  76. data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
  77. data/vendor/bundle/gems/rake-10.5.0/doc/example/a.c +6 -0
  78. data/vendor/bundle/gems/rake-10.5.0/doc/example/b.c +6 -0
  79. data/vendor/bundle/gems/rake-10.5.0/doc/example/main.c +11 -0
  80. data/vendor/bundle/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
  81. data/vendor/bundle/gems/rake-10.5.0/doc/jamis.rb +591 -0
  82. data/vendor/bundle/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
  83. data/vendor/bundle/gems/rake-10.5.0/doc/rake.1 +141 -0
  84. data/vendor/bundle/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
  85. data/vendor/bundle/gems/rake-10.5.0/doc/rational.rdoc +151 -0
  86. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
  87. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
  88. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
  89. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
  90. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
  91. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
  92. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
  93. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
  94. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
  95. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
  96. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
  97. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
  98. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
  99. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
  100. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
  101. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
  102. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
  103. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
  104. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
  105. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  106. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
  107. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
  108. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
  109. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
  110. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
  111. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
  112. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
  113. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
  114. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
  115. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
  116. data/vendor/bundle/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
  117. data/vendor/bundle/gems/rake-10.5.0/lib/rake/application.rb +790 -0
  118. data/vendor/bundle/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
  119. data/vendor/bundle/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
  120. data/vendor/bundle/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
  121. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/.document +1 -0
  122. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
  123. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
  124. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
  125. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  126. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
  127. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
  128. data/vendor/bundle/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
  129. data/vendor/bundle/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
  130. data/vendor/bundle/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
  131. data/vendor/bundle/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
  132. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
  133. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
  134. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
  135. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
  136. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
  137. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
  138. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
  139. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
  140. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
  141. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
  142. data/vendor/bundle/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
  143. data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
  144. data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
  145. data/vendor/bundle/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
  146. data/vendor/bundle/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
  147. data/vendor/bundle/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
  148. data/vendor/bundle/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
  149. data/vendor/bundle/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
  150. data/vendor/bundle/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
  151. data/vendor/bundle/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
  152. data/vendor/bundle/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
  153. data/vendor/bundle/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
  154. data/vendor/bundle/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
  155. data/vendor/bundle/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
  156. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
  157. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
  158. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
  159. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
  160. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  161. data/vendor/bundle/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
  162. data/vendor/bundle/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
  163. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task.rb +383 -0
  164. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
  165. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
  166. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
  167. data/vendor/bundle/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
  168. data/vendor/bundle/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
  169. data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
  170. data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
  171. data/vendor/bundle/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
  172. data/vendor/bundle/gems/rake-10.5.0/lib/rake/version.rb +7 -0
  173. data/vendor/bundle/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
  174. data/vendor/bundle/gems/rake-10.5.0/lib/rake.rb +79 -0
  175. data/vendor/bundle/gems/rake-10.5.0/rakelib/publish.rake +20 -0
  176. data/vendor/bundle/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
  177. data/vendor/bundle/gems/rake-10.5.0/test/file_creation.rb +34 -0
  178. data/vendor/bundle/gems/rake-10.5.0/test/helper.rb +129 -0
  179. data/vendor/bundle/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
  180. data/vendor/bundle/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
  181. data/vendor/bundle/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
  182. data/vendor/bundle/gems/rake-10.5.0/test/test_rake.rb +40 -0
  183. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
  184. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
  185. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
  186. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
  187. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
  188. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
  189. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
  190. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
  191. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
  192. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
  193. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
  194. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
  195. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
  196. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
  197. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
  198. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
  199. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
  200. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
  201. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
  202. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
  203. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
  204. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
  205. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
  206. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
  207. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
  208. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
  209. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
  210. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
  211. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
  212. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
  213. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
  214. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
  215. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
  216. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
  217. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
  218. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
  219. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
  220. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
  221. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
  222. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  223. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
  224. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
  225. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
  226. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
  227. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
  228. data/vendor/bundle/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
  229. data/vendor/bundle/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
  230. data/vendor/bundle/gems/rspec-3.4.0/LICENSE.md +27 -0
  231. data/vendor/bundle/gems/rspec-3.4.0/README.md +39 -0
  232. data/vendor/bundle/gems/rspec-3.4.0/lib/rspec/version.rb +5 -0
  233. data/vendor/bundle/gems/rspec-3.4.0/lib/rspec.rb +3 -0
  234. data/vendor/bundle/gems/rspec-core-3.4.4/.document +5 -0
  235. data/vendor/bundle/gems/rspec-core-3.4.4/.yardopts +8 -0
  236. data/vendor/bundle/gems/rspec-core-3.4.4/Changelog.md +1972 -0
  237. data/vendor/bundle/gems/rspec-core-3.4.4/LICENSE.md +26 -0
  238. data/vendor/bundle/gems/rspec-core-3.4.4/README.md +384 -0
  239. data/vendor/bundle/gems/rspec-core-3.4.4/exe/rspec +4 -0
  240. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/autorun.rb +3 -0
  241. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/backtrace_formatter.rb +65 -0
  242. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/bisect/coordinator.rb +66 -0
  243. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/bisect/example_minimizer.rb +169 -0
  244. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/bisect/runner.rb +139 -0
  245. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/bisect/server.rb +61 -0
  246. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/configuration.rb +1869 -0
  247. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/configuration_options.rb +191 -0
  248. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/drb.rb +111 -0
  249. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/dsl.rb +96 -0
  250. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/example.rb +631 -0
  251. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/example_group.rb +816 -0
  252. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/example_status_persister.rb +235 -0
  253. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/filter_manager.rb +231 -0
  254. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/flat_map.rb +20 -0
  255. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/base_formatter.rb +70 -0
  256. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
  257. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
  258. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/bisect_progress_formatter.rb +144 -0
  259. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/console_codes.rb +65 -0
  260. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  261. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
  262. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/exception_presenter.rb +482 -0
  263. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  264. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/helpers.rb +109 -0
  265. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/html_formatter.rb +151 -0
  266. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/html_printer.rb +414 -0
  267. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/html_snippet_extractor.rb +116 -0
  268. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/json_formatter.rb +96 -0
  269. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  270. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  271. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/protocol.rb +181 -0
  272. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters/snippet_extractor.rb +136 -0
  273. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/formatters.rb +255 -0
  274. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/hooks.rb +638 -0
  275. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/memoized_helpers.rb +532 -0
  276. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/metadata.rb +498 -0
  277. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/metadata_filter.rb +231 -0
  278. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  279. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  280. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  281. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/mocking_adapters/null.rb +14 -0
  282. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  283. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  284. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/notifications.rb +499 -0
  285. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/option_parser.rb +319 -0
  286. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/ordering.rb +158 -0
  287. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/pending.rb +165 -0
  288. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/profiler.rb +32 -0
  289. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/project_initializer/.rspec +2 -0
  290. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
  291. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/project_initializer.rb +48 -0
  292. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/rake_task.rb +167 -0
  293. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/reporter.rb +236 -0
  294. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/ruby_project.rb +53 -0
  295. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/runner.rb +183 -0
  296. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/sandbox.rb +37 -0
  297. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/set.rb +49 -0
  298. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/shared_context.rb +55 -0
  299. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/shared_example_group.rb +212 -0
  300. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/shell_escape.rb +49 -0
  301. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/source/location.rb +13 -0
  302. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/source/node.rb +93 -0
  303. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/source/syntax_highlighter.rb +71 -0
  304. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/source/token.rb +86 -0
  305. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/source.rb +76 -0
  306. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  307. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/version.rb +9 -0
  308. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/warnings.rb +40 -0
  309. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core/world.rb +213 -0
  310. data/vendor/bundle/gems/rspec-core-3.4.4/lib/rspec/core.rb +181 -0
  311. data/vendor/bundle/gems/rspec-expectations-3.4.0/.document +5 -0
  312. data/vendor/bundle/gems/rspec-expectations-3.4.0/.yardopts +6 -0
  313. data/vendor/bundle/gems/rspec-expectations-3.4.0/Changelog.md +979 -0
  314. data/vendor/bundle/gems/rspec-expectations-3.4.0/LICENSE.md +25 -0
  315. data/vendor/bundle/gems/rspec-expectations-3.4.0/README.md +303 -0
  316. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/configuration.rb +164 -0
  317. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/expectation_target.rb +113 -0
  318. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/fail_with.rb +31 -0
  319. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  320. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/handler.rb +170 -0
  321. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/minitest_integration.rb +31 -0
  322. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/syntax.rb +132 -0
  323. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations/version.rb +8 -0
  324. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/expectations.rb +81 -0
  325. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  326. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/all.rb +85 -0
  327. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
  328. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be.rb +285 -0
  329. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  330. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  331. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  332. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  333. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/change.rb +354 -0
  334. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/compound.rb +272 -0
  335. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/contain_exactly.rb +286 -0
  336. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  337. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  338. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  339. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  340. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/exist.rb +86 -0
  341. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/has.rb +103 -0
  342. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  343. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/include.rb +130 -0
  344. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/match.rb +106 -0
  345. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  346. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/output.rb +200 -0
  347. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/raise_error.rb +228 -0
  348. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/respond_to.rb +90 -0
  349. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/satisfy.rb +37 -0
  350. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  351. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  352. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in/yield.rb +419 -0
  353. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/built_in.rb +52 -0
  354. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/composable.rb +185 -0
  355. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/dsl.rb +453 -0
  356. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/english_phrasing.rb +42 -0
  357. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
  358. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  359. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/generated_descriptions.rb +42 -0
  360. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  361. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  362. data/vendor/bundle/gems/rspec-expectations-3.4.0/lib/rspec/matchers.rb +1037 -0
  363. data/vendor/bundle/gems/rspec-mocks-3.4.1/.document +5 -0
  364. data/vendor/bundle/gems/rspec-mocks-3.4.1/.yardopts +6 -0
  365. data/vendor/bundle/gems/rspec-mocks-3.4.1/Changelog.md +991 -0
  366. data/vendor/bundle/gems/rspec-mocks-3.4.1/LICENSE.md +25 -0
  367. data/vendor/bundle/gems/rspec-mocks-3.4.1/README.md +445 -0
  368. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/chain.rb +110 -0
  369. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  370. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  371. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
  372. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  373. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  374. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/recorder.rb +268 -0
  375. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
  376. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  377. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/any_instance.rb +11 -0
  378. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  379. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/argument_matchers.rb +320 -0
  380. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/configuration.rb +205 -0
  381. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/error_generator.rb +367 -0
  382. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/example_methods.rb +422 -0
  383. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  384. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  385. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  386. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/have_received.rb +128 -0
  387. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive.rb +130 -0
  388. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
  389. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
  390. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_chain.rb +87 -0
  391. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/message_expectation.rb +717 -0
  392. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_double.rb +287 -0
  393. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/method_reference.rb +192 -0
  394. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/mutate_const.rb +335 -0
  395. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/object_reference.rb +149 -0
  396. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/order_group.rb +81 -0
  397. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/proxy.rb +484 -0
  398. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/space.rb +238 -0
  399. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/standalone.rb +3 -0
  400. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/syntax.rb +325 -0
  401. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/targets.rb +97 -0
  402. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/test_double.rb +170 -0
  403. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_double.rb +129 -0
  404. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  405. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/verifying_proxy.rb +213 -0
  406. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks/version.rb +9 -0
  407. data/vendor/bundle/gems/rspec-mocks-3.4.1/lib/rspec/mocks.rb +126 -0
  408. data/vendor/bundle/gems/rspec-support-3.4.1/Changelog.md +151 -0
  409. data/vendor/bundle/gems/rspec-support-3.4.1/LICENSE.md +23 -0
  410. data/vendor/bundle/gems/rspec-support-3.4.1/README.md +40 -0
  411. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/caller_filter.rb +83 -0
  412. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/comparable_version.rb +46 -0
  413. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/differ.rb +215 -0
  414. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/directory_maker.rb +63 -0
  415. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/encoded_string.rb +155 -0
  416. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/fuzzy_matcher.rb +48 -0
  417. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/hunk_generator.rb +47 -0
  418. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/matcher_definition.rb +42 -0
  419. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/method_signature_verifier.rb +290 -0
  420. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/mutex.rb +73 -0
  421. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/object_formatter.rb +108 -0
  422. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/recursive_const_methods.rb +76 -0
  423. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/reentrant_mutex.rb +53 -0
  424. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/ruby_features.rb +149 -0
  425. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  426. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/formatting_support.rb +9 -0
  427. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/in_sub_process.rb +52 -0
  428. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/library_wide_checks.rb +152 -0
  429. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/shell_out.rb +71 -0
  430. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/stderr_splitter.rb +63 -0
  431. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/string_matcher.rb +46 -0
  432. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
  433. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  434. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/spec.rb +81 -0
  435. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/version.rb +7 -0
  436. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/version_checker.rb +53 -0
  437. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support/warnings.rb +39 -0
  438. data/vendor/bundle/gems/rspec-support-3.4.1/lib/rspec/support.rb +139 -0
  439. data/vendor/bundle/specifications/diff-lcs-1.2.5.gemspec +68 -0
  440. data/vendor/bundle/specifications/rake-10.5.0.gemspec +43 -0
  441. data/vendor/bundle/specifications/rspec-3.4.0.gemspec +42 -0
  442. data/vendor/bundle/specifications/rspec-core-3.4.4.gemspec +65 -0
  443. data/vendor/bundle/specifications/rspec-expectations-3.4.0.gemspec +50 -0
  444. data/vendor/bundle/specifications/rspec-mocks-3.4.1.gemspec +50 -0
  445. data/vendor/bundle/specifications/rspec-support-3.4.1.gemspec +41 -0
  446. metadata +532 -0
@@ -0,0 +1,60 @@
1
+ = Rake 0.9.4 Released
2
+
3
+ Rake version 0.9.4 contains a number of bug fixes.
4
+
5
+ == Changes
6
+
7
+ === Bug Fixes (0.9.4)
8
+
9
+ * Exit status with failing tests is not correctly set to non-zero.
10
+
11
+ * Simplified syntax for phony task (for older versions of RDoc).
12
+
13
+ * Stand alone FileList usage gets glob function (without loading in
14
+ extra dependencies)
15
+
16
+ == What is Rake
17
+
18
+ Rake is a build tool similar to the make program in many ways. But
19
+ instead of cryptic make recipes, Rake uses standard Ruby code to
20
+ declare tasks and dependencies. You have the full power of a modern
21
+ scripting language built right into your build tool.
22
+
23
+ == Availability
24
+
25
+ The easiest way to get and install rake is via RubyGems ...
26
+
27
+ gem install rake (you may need root/admin privileges)
28
+
29
+ Otherwise, you can get it from the more traditional places:
30
+
31
+ Home Page:: http://github.com/jimweirich/rake
32
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
33
+ GitHub:: git://github.com/jimweirich/rake.git
34
+
35
+ == Thanks
36
+
37
+ As usual, it was input from users that drove a alot of these changes. The
38
+ following people either contributed patches, made suggestions or made
39
+ otherwise helpful comments. Thanks to ...
40
+
41
+ * Aaron Patterson
42
+ * Dylan Smith
43
+ * Jo Liss
44
+ * Jonas Pfenniger
45
+ * Kazuki Tsujimoto
46
+ * Michael Bishop
47
+ * Michael Elufimov
48
+ * NAKAMURA Usaku
49
+ * Ryan Davis
50
+ * Sam Grönblom
51
+ * Sam Phippen
52
+ * Sergio Wong
53
+ * Tay Ray Chuan
54
+ * grosser
55
+ * quix
56
+
57
+ Also, many thanks to Eric Hodel for assisting with getting this release
58
+ out the door.
59
+
60
+ -- Jim Weirich
@@ -0,0 +1,55 @@
1
+ = Rake 0.9.5 Released
2
+
3
+ Rake version 0.9.5 contains a number of bug fixes.
4
+
5
+ == Changes
6
+
7
+ === Bug Fixes (0.9.5)
8
+
9
+ * --trace and --backtrace no longer swallow following task names.
10
+
11
+ == What is Rake
12
+
13
+ Rake is a build tool similar to the make program in many ways. But
14
+ instead of cryptic make recipes, Rake uses standard Ruby code to
15
+ declare tasks and dependencies. You have the full power of a modern
16
+ scripting language built right into your build tool.
17
+
18
+ == Availability
19
+
20
+ The easiest way to get and install rake is via RubyGems ...
21
+
22
+ gem install rake (you may need root/admin privileges)
23
+
24
+ Otherwise, you can get it from the more traditional places:
25
+
26
+ Home Page:: http://github.com/jimweirich/rake
27
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
28
+ GitHub:: git://github.com/jimweirich/rake.git
29
+
30
+ == Thanks
31
+
32
+ As usual, it was input from users that drove a alot of these changes. The
33
+ following people either contributed patches, made suggestions or made
34
+ otherwise helpful comments. Thanks to ...
35
+
36
+ * Aaron Patterson
37
+ * Dylan Smith
38
+ * Jo Liss
39
+ * Jonas Pfenniger
40
+ * Kazuki Tsujimoto
41
+ * Michael Bishop
42
+ * Michael Elufimov
43
+ * NAKAMURA Usaku
44
+ * Ryan Davis
45
+ * Sam Grönblom
46
+ * Sam Phippen
47
+ * Sergio Wong
48
+ * Tay Ray Chuan
49
+ * grosser
50
+ * quix
51
+
52
+ Also, many thanks to Eric Hodel for assisting with getting this release
53
+ out the door.
54
+
55
+ -- Jim Weirich
@@ -0,0 +1,64 @@
1
+ = Rake 0.9.6 Released
2
+
3
+ Rake version 0.9.6 contains a number of fixes mainly for merging
4
+ Rake into the Ruby source tree and fixing tests.
5
+
6
+ == Changes
7
+
8
+ === Bug Fixes (0.9.6)
9
+
10
+ * Better trace output when using a multi-threaded Rakefile.
11
+ * Arg parsing is now consistent for tasks and multitasks.
12
+ * Skip exit code test in versions of Ruby that don't support it well.
13
+
14
+ Changes for better integration with the Ruby source tree:
15
+
16
+ * Fix version literal for Ruby source tree build.
17
+ * Better loading of libraries for testing in Ruby build.
18
+ * Use the ruby version provided by Ruby's tests.
19
+
20
+ == What is Rake
21
+
22
+ Rake is a build tool similar to the make program in many ways. But
23
+ instead of cryptic make recipes, Rake uses standard Ruby code to
24
+ declare tasks and dependencies. You have the full power of a modern
25
+ scripting language built right into your build tool.
26
+
27
+ == Availability
28
+
29
+ The easiest way to get and install rake is via RubyGems ...
30
+
31
+ gem install rake (you may need root/admin privileges)
32
+
33
+ Otherwise, you can get it from the more traditional places:
34
+
35
+ Home Page:: http://github.com/jimweirich/rake
36
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
37
+ GitHub:: git://github.com/jimweirich/rake.git
38
+
39
+ == Thanks
40
+
41
+ As usual, it was input from users that drove a alot of these changes. The
42
+ following people either contributed patches, made suggestions or made
43
+ otherwise helpful comments. Thanks to ...
44
+
45
+ * Aaron Patterson
46
+ * Dylan Smith
47
+ * Jo Liss
48
+ * Jonas Pfenniger
49
+ * Kazuki Tsujimoto
50
+ * Michael Bishop
51
+ * Michael Elufimov
52
+ * NAKAMURA Usaku
53
+ * Ryan Davis
54
+ * Sam Grönblom
55
+ * Sam Phippen
56
+ * Sergio Wong
57
+ * Tay Ray Chuan
58
+ * grosser
59
+ * quix
60
+
61
+ Also, many thanks to Eric Hodel for assisting with getting this release
62
+ out the door.
63
+
64
+ -- Jim Weirich
@@ -0,0 +1,178 @@
1
+ = Rake 10.0 Released
2
+
3
+ "Jim, when will Rake reach version 1.0?"
4
+
5
+ Over the past several years I've been asked that question at
6
+ conferences, panels and over twitter. Due to historical reasons (or
7
+ maybe just plain laziness) Rake has (incorrectly) been treating the
8
+ second digit of the version as the major release number. So in my head
9
+ Rake was already at version 9.
10
+
11
+ Well, it's time to fix things. This next version of Rake drops old,
12
+ crufty, backwards compatibility hacks such as top level constants, DSL
13
+ methods defined in Object and numerous other features that are just no
14
+ longer desired. It's also time to drop the leading zero from the
15
+ version number as well and call this new version of rake what it
16
+ really is: Version 10.
17
+
18
+ So, welcome to Rake 10.0!
19
+
20
+ Rake 10 is actually feature identical to the latest version of Rake 9
21
+ (that would be the version spelled 0.9.3), *except* that Rake 10 drops
22
+ all the sundry deprecated features that have accumulated over the years.
23
+
24
+ If your Rakefile is up to date and current with all the new features
25
+ of Rake 10, you are ready to go. If your Rakefile still uses a few
26
+ deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
27
+ feature set. Just be aware that future features will be in Rake 10
28
+ family line.
29
+
30
+ == Changes in 10.0
31
+
32
+ As mentioned above, there are no new features in Rake 10. However,
33
+ there are a number of features missing:
34
+
35
+ * Classic namespaces are now gone. Rake is no longer able to reflect
36
+ the options settings in the global variables ($rakefile, $show_tasks,
37
+ $show_prereqs, $trace, $dryrun and $silent). The
38
+ <tt>--classic-namespace</tt> option is no longer supported.
39
+
40
+ * Global constants are no longer supported. This includes
41
+ <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
42
+ <tt>RakeApp</tt>). The constant missing hook to warn about using
43
+ global rake constants has been removed.
44
+
45
+ * The Rake DSL methods (task, file, directory, etc) are in their own
46
+ module (Rake::DSL). The stub versions of these methods (that printed
47
+ warnings) in Object have been removed. However, the DSL methods are
48
+ added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
49
+ not in the inheritance tree, the presence of the DSL methods in main
50
+ should be low impact on other libraries.
51
+
52
+ If you want to use the Rake DSL commands from your own code, just
53
+ include <tt>Rake::DSL</tt> into your own classes and modules.
54
+
55
+ * The deprecated syntax for task arguments (the one using
56
+ <tt>:needs</tt>) has been removed.
57
+
58
+ * The <tt>--reduce-compat</tt> flag has been removed (it's not needed
59
+ anymore).
60
+
61
+ * The deprecated <tt>rake/sys.rb</tt> library has been removed.
62
+
63
+ * The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
64
+ RDoc supplies its own rake task now.
65
+
66
+ * The deprecated <tt>rake/gempackagetask.rb</tt> library has been
67
+ removed. Gem supplies its own package task now.
68
+
69
+ There is one small behavioral change:
70
+
71
+ * Non-file tasks now always report the current time as their time
72
+ stamp. This is different from the previous behavior where non-file
73
+ tasks reported current time only if there were no prerequisites, and
74
+ the max prerequisite timestamp otherwise. This lead to inconsistent
75
+ and surprising behavior when adding prerequisites to tasks that in
76
+ turn were prequisites to file tasks. The new behavior is more
77
+ consistent and predictable.
78
+
79
+ == Changes (from 0.9.3)
80
+
81
+ Since Rake 10 includes the changes from the last version of Rake 9,
82
+ we'll repeat the changes for version 0.9.3 here.
83
+
84
+ === New Features
85
+
86
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
87
+ available threads.
88
+
89
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
90
+
91
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
92
+ programatically add rake task libraries.
93
+
94
+ * You can specific backtrace suppression patterns (see
95
+ --supress-backtrace)
96
+
97
+ * Directory tasks can now take prerequisites and actions
98
+
99
+ * Use --backtrace to request a full backtrace without the task trace.
100
+
101
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
102
+ output to standard output rather than standard error.
103
+
104
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
105
+ special purpose builds.
106
+
107
+ * Task#clear now clears task comments as well as actions and
108
+ prerequisites. Task#clear_comment will specifically target comments.
109
+
110
+ * The --all option will force -T and -D to consider all the tasks,
111
+ with and without descriptions.
112
+
113
+ === Bug Fixes
114
+
115
+ * Semi-colons in windows rakefile paths now work.
116
+
117
+ * Improved Control-C support when invoking multiple test suites.
118
+
119
+ * egrep method now reads files in text mode (better support for
120
+ Windows)
121
+
122
+ * Better deprecation line number reporting.
123
+
124
+ * The -W option now works with all tasks, whether they have a
125
+ description or not.
126
+
127
+ * File globs in rake should not be sorted alphabetically, independent
128
+ of file system and platform.
129
+
130
+ * Numerous internal improvements.
131
+
132
+ * Documentation typos and fixes.
133
+
134
+ == What is Rake
135
+
136
+ Rake is a build tool similar to the make program in many ways. But
137
+ instead of cryptic make recipes, Rake uses standard Ruby code to
138
+ declare tasks and dependencies. You have the full power of a modern
139
+ scripting language built right into your build tool.
140
+
141
+ == Availability
142
+
143
+ The easiest way to get and install rake is via RubyGems ...
144
+
145
+ gem install rake (you may need root/admin privileges)
146
+
147
+ Otherwise, you can get it from the more traditional places:
148
+
149
+ Home Page:: http://github.com/jimweirich/rake
150
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
151
+ GitHub:: git://github.com/jimweirich/rake.git
152
+
153
+ == Thanks
154
+
155
+ As usual, it was input from users that drove a lot of these changes. The
156
+ following people contributed patches, made suggestions or made
157
+ otherwise helpful comments. Thanks to ...
158
+
159
+ * Aaron Patterson
160
+ * Dylan Smith
161
+ * Jo Liss
162
+ * Jonas Pfenniger
163
+ * Kazuki Tsujimoto
164
+ * Michael Bishop
165
+ * Michael Elufimov
166
+ * NAKAMURA Usaku
167
+ * Ryan Davis
168
+ * Sam Grönblom
169
+ * Sam Phippen
170
+ * Sergio Wong
171
+ * Tay Ray Chuan
172
+ * grosser
173
+ * quix
174
+
175
+ Also, many thanks to Eric Hodel for assisting with getting this release
176
+ out the door.
177
+
178
+ -- Jim Weirich
@@ -0,0 +1,58 @@
1
+ = Rake 10.0.1 Released
2
+
3
+ == Changes in 10.0.1
4
+
5
+ === Bug Fixes
6
+
7
+ * Exit status with failing tests is not correctly set to non-zero.
8
+
9
+ * Simplified syntax for phony task (for older versions of RDoc).
10
+
11
+ * Stand alone FileList usage gets glob function (without loading in
12
+ extra dependencies)
13
+
14
+ == What is Rake
15
+
16
+ Rake is a build tool similar to the make program in many ways. But
17
+ instead of cryptic make recipes, Rake uses standard Ruby code to
18
+ declare tasks and dependencies. You have the full power of a modern
19
+ scripting language built right into your build tool.
20
+
21
+ == Availability
22
+
23
+ The easiest way to get and install rake is via RubyGems ...
24
+
25
+ gem install rake (you may need root/admin privileges)
26
+
27
+ Otherwise, you can get it from the more traditional places:
28
+
29
+ Home Page:: http://github.com/jimweirich/rake
30
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
31
+ GitHub:: git://github.com/jimweirich/rake.git
32
+
33
+ == Thanks
34
+
35
+ As usual, it was input from users that drove a lot of these changes. The
36
+ following people contributed patches, made suggestions or made
37
+ otherwise helpful comments. Thanks to ...
38
+
39
+ * Aaron Patterson
40
+ * Dylan Smith
41
+ * Jo Liss
42
+ * Jonas Pfenniger
43
+ * Kazuki Tsujimoto
44
+ * Michael Bishop
45
+ * Michael Elufimov
46
+ * NAKAMURA Usaku
47
+ * Ryan Davis
48
+ * Sam Grönblom
49
+ * Sam Phippen
50
+ * Sergio Wong
51
+ * Tay Ray Chuan
52
+ * grosser
53
+ * quix
54
+
55
+ Also, many thanks to Eric Hodel for assisting with getting this release
56
+ out the door.
57
+
58
+ -- Jim Weirich
@@ -0,0 +1,53 @@
1
+ = Rake 10.0.2 Released
2
+
3
+ == Changes in Rake 10.0.2
4
+
5
+ === Bug Fixes
6
+
7
+ * --trace and --backtrace no longer swallow following task names.
8
+
9
+ == What is Rake
10
+
11
+ Rake is a build tool similar to the make program in many ways. But
12
+ instead of cryptic make recipes, Rake uses standard Ruby code to
13
+ declare tasks and dependencies. You have the full power of a modern
14
+ scripting language built right into your build tool.
15
+
16
+ == Availability
17
+
18
+ The easiest way to get and install rake is via RubyGems ...
19
+
20
+ gem install rake (you may need root/admin privileges)
21
+
22
+ Otherwise, you can get it from the more traditional places:
23
+
24
+ Home Page:: http://github.com/jimweirich/rake
25
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
26
+ GitHub:: git://github.com/jimweirich/rake.git
27
+
28
+ == Thanks
29
+
30
+ As usual, it was input from users that drove a lot of these changes. The
31
+ following people contributed patches, made suggestions or made
32
+ otherwise helpful comments. Thanks to ...
33
+
34
+ * Aaron Patterson
35
+ * Dylan Smith
36
+ * Jo Liss
37
+ * Jonas Pfenniger
38
+ * Kazuki Tsujimoto
39
+ * Michael Bishop
40
+ * Michael Elufimov
41
+ * NAKAMURA Usaku
42
+ * Ryan Davis
43
+ * Sam Grönblom
44
+ * Sam Phippen
45
+ * Sergio Wong
46
+ * Tay Ray Chuan
47
+ * grosser
48
+ * quix
49
+
50
+ Also, many thanks to Eric Hodel for assisting with getting this release
51
+ out the door.
52
+
53
+ -- Jim Weirich
@@ -0,0 +1,191 @@
1
+ = Rake 10.0.3 Released
2
+
3
+ "Jim, when will Rake reach version 1.0?"
4
+
5
+ Over the past several years I've been asked that question at
6
+ conferences, panels and over twitter. Due to historical reasons (or
7
+ maybe just plain laziness) Rake has (incorrectly) been treating the
8
+ second digit of the version as the major release number. So in my head
9
+ Rake was already at version 9.
10
+
11
+ Well, it's time to fix things. This next version of Rake drops old,
12
+ crufty, backwards compatibility hacks such as top level constants, DSL
13
+ methods defined in Object and numerous other features that are just no
14
+ longer desired. It's also time to drop the leading zero from the
15
+ version number as well and call this new version of rake what it
16
+ really is: Version 10.
17
+
18
+ So, welcome to Rake 10.0!
19
+
20
+ Rake 10 is actually feature identical to the latest version of Rake 9
21
+ (that would be the version spelled 0.9.3), *except* that Rake 10 drops
22
+ all the sundry deprecated features that have accumulated over the years.
23
+
24
+ If your Rakefile is up to date and current with all the new features
25
+ of Rake 10, you are ready to go. If your Rakefile still uses a few
26
+ deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
27
+ feature set. Just be aware that future features will be in Rake 10
28
+ family line.
29
+
30
+ == Changes in Version 10
31
+
32
+ As mentioned above, there are no new features in Rake 10. However,
33
+ there are a number of features missing:
34
+
35
+ * Classic namespaces are now gone. Rake is no longer able to reflect
36
+ the options settings in the global variables ($rakefile, $show_tasks,
37
+ $show_prereqs, $trace, $dryrun and $silent). The
38
+ <tt>--classic-namespace</tt> option is no longer supported.
39
+
40
+ * Global constants are no longer supported. This includes
41
+ <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
42
+ <tt>RakeApp</tt>). The constant missing hook to warn about using
43
+ global rake constants has been removed.
44
+
45
+ * The Rake DSL methods (task, file, directory, etc) are in their own
46
+ module (Rake::DSL). The stub versions of these methods (that printed
47
+ warnings) in Object have been removed. However, the DSL methods are
48
+ added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
49
+ not in the inheritance tree, the presence of the DSL methods in main
50
+ should be low impact on other libraries.
51
+
52
+ If you want to use the Rake DSL commands from your own code, just
53
+ include <tt>Rake::DSL</tt> into your own classes and modules.
54
+
55
+ * The deprecated syntax for task arguments (the one using
56
+ <tt>:needs</tt>) has been removed.
57
+
58
+ * The <tt>--reduce-compat</tt> flag has been removed (it's not needed
59
+ anymore).
60
+
61
+ * The deprecated <tt>rake/sys.rb</tt> library has been removed.
62
+
63
+ * The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
64
+ RDoc supplies its own rake task now.
65
+
66
+ * The deprecated <tt>rake/gempackagetask.rb</tt> library has been
67
+ removed. Gem supplies its own package task now.
68
+
69
+ There is one small behavioral change:
70
+
71
+ * Non-file tasks now always report the current time as their time
72
+ stamp. This is different from the previous behavior where non-file
73
+ tasks reported current time only if there were no prerequisites, and
74
+ the max prerequisite timestamp otherwise. This lead to inconsistent
75
+ and surprising behavior when adding prerequisites to tasks that in
76
+ turn were prequisites to file tasks. The new behavior is more
77
+ consistent and predictable.
78
+
79
+ == Changes (from 0.9.3, 0.9.4, 0.9.5)
80
+
81
+ Since Rake 10 includes the changes from the last version of Rake 9,
82
+ we'll repeat the changes for versions 0.9.3 through 0.9.5 here.
83
+
84
+ === New Features (in 0.9.3)
85
+
86
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
87
+ available threads.
88
+
89
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
90
+
91
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
92
+ programatically add rake task libraries.
93
+
94
+ * You can specific backtrace suppression patterns (see
95
+ --supress-backtrace)
96
+
97
+ * Directory tasks can now take prerequisites and actions
98
+
99
+ * Use --backtrace to request a full backtrace without the task trace.
100
+
101
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
102
+ output to standard output rather than standard error.
103
+
104
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
105
+ special purpose builds.
106
+
107
+ * Task#clear now clears task comments as well as actions and
108
+ prerequisites. Task#clear_comment will specifically target comments.
109
+
110
+ * The --all option will force -T and -D to consider all the tasks,
111
+ with and without descriptions.
112
+
113
+ === Bug Fixes (in 0.9.3)
114
+
115
+ * Semi-colons in windows rakefile paths now work.
116
+
117
+ * Improved Control-C support when invoking multiple test suites.
118
+
119
+ * egrep method now reads files in text mode (better support for
120
+ Windows)
121
+
122
+ * Better deprecation line number reporting.
123
+
124
+ * The -W option now works with all tasks, whether they have a
125
+ description or not.
126
+
127
+ * File globs in rake should not be sorted alphabetically, independent
128
+ of file system and platform.
129
+
130
+ * Numerous internal improvements.
131
+
132
+ * Documentation typos and fixes.
133
+
134
+ === Bug Fixes (in 0.9.4)
135
+
136
+ * Exit status with failing tests is not correctly set to non-zero.
137
+
138
+ * Simplified syntax for phony task (for older versions of RDoc).
139
+
140
+ * Stand alone FileList usage gets glob function (without loading in
141
+ extra dependencies)
142
+
143
+ === Bug Fixes (in 0.9.5)
144
+
145
+ * --trace and --backtrace no longer swallow following task names.
146
+
147
+ == What is Rake
148
+
149
+ Rake is a build tool similar to the make program in many ways. But
150
+ instead of cryptic make recipes, Rake uses standard Ruby code to
151
+ declare tasks and dependencies. You have the full power of a modern
152
+ scripting language built right into your build tool.
153
+
154
+ == Availability
155
+
156
+ The easiest way to get and install rake is via RubyGems ...
157
+
158
+ gem install rake (you may need root/admin privileges)
159
+
160
+ Otherwise, you can get it from the more traditional places:
161
+
162
+ Home Page:: http://github.com/jimweirich/rake
163
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
164
+ GitHub:: git://github.com/jimweirich/rake.git
165
+
166
+ == Thanks
167
+
168
+ As usual, it was input from users that drove a lot of these changes. The
169
+ following people contributed patches, made suggestions or made
170
+ otherwise helpful comments. Thanks to ...
171
+
172
+ * Aaron Patterson
173
+ * Dylan Smith
174
+ * Jo Liss
175
+ * Jonas Pfenniger
176
+ * Kazuki Tsujimoto
177
+ * Michael Bishop
178
+ * Michael Elufimov
179
+ * NAKAMURA Usaku
180
+ * Ryan Davis
181
+ * Sam Grönblom
182
+ * Sam Phippen
183
+ * Sergio Wong
184
+ * Tay Ray Chuan
185
+ * grosser
186
+ * quix
187
+
188
+ Also, many thanks to Eric Hodel for assisting with getting this release
189
+ out the door.
190
+
191
+ -- Jim Weirich