dirwatch 0.0.8 → 0.0.9

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