dirwatch 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dirwatch/templates/mac/latex.yml +1 -1
- data/lib/dirwatch/version.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/cache/ast-2.4.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/parser-2.5.1.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/powerpack-0.1.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rake-12.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-3.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-core-3.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-expectations-3.8.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-mocks-3.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rspec-support-3.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/ruby-progressbar-1.10.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/unicode-display_width-1.4.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/CHANGELOG.md +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/Gemfile +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/LICENSE.MIT +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/README.YARD.md +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/README.md +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/Rakefile +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/ast.gemspec +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/lib/ast.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/lib/ast/node.rb +258 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/lib/ast/processor.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/lib/ast/processor/mixin.rb +288 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/lib/ast/sexp.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/test/helper.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/ast-2.4.0/test/test_ast.rb +271 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/CHANGELOG.md +927 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/CONTRIBUTING.md +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/Gemfile +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/LICENSE.txt +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/README.md +301 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/Rakefile +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/bin/ruby-parse +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/bin/ruby-rewrite +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/doc/AST_FORMAT.md +1735 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/doc/CUSTOMIZATION.md +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/doc/INTERNALS.md +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/doc/css/common.css +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/gauntlet_parser.rb +123 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/all.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ast/node.rb +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ast/processor.rb +241 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/base.rb +267 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/builders/default.rb +1677 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/clobbering_error.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/color.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/context.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/current.rb +83 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/deprecation.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/diagnostic.rb +163 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/diagnostic/engine.rb +105 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer.rb +23093 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer.rl +2382 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer/dedenter.rb +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer/explanation.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer/literal.rb +265 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/lexer/stack_state.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/macruby.rb +6122 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/macruby.y +2198 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/messages.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/meta.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/rewriter.rb +105 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby18.rb +5654 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby18.y +1934 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby19.rb +6077 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby19.y +2175 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby20.rb +6512 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby20.y +2353 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby21.rb +6572 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby21.y +2357 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby22.rb +6600 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby22.y +2364 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby23.rb +6628 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby23.y +2370 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby24.rb +6695 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby24.y +2408 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby25.rb +6661 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby25.y +2405 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby26.rb +6674 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/ruby26.y +2413 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/rubymotion.rb +6083 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/rubymotion.y +2182 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/runner.rb +248 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/runner/ruby_parse.rb +157 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/runner/ruby_rewrite.rb +101 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/buffer.rb +330 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/comment.rb +121 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/comment/associator.rb +210 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map.rb +186 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/collection.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/condition.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/constant.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/definition.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/for.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/heredoc.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/index.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/keyword.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/objc_kwarg.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/operator.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/rescue_body.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/send.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/ternary.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/map/variable.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/range.rb +310 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/rewriter.rb +513 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/rewriter/action.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/tree_rewriter.rb +301 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/source/tree_rewriter/action.rb +133 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/static_environment.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/syntax_error.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/tree_rewriter.rb +133 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/lib/parser/version.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/parser.gemspec +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/bug_163/fixtures/input.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/bug_163/fixtures/output.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/bug_163/rewriter.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/helper.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/parse_helper.rb +315 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/racc_coverage_helper.rb +133 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_base.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_current.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_diagnostic.rb +96 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_diagnostic_engine.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_encoding.rb +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_lexer.rb +3537 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_lexer_stack_state.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_parse_helper.rb +80 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_parser.rb +7038 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_runner_rewrite.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_buffer.rb +162 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_comment.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_comment_associator.rb +367 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_map.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_range.rb +172 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_rewriter.rb +541 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_rewriter_action.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_source_tree_rewriter.rb +173 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/test_static_environment.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/using_tree_rewriter/fixtures/input.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/using_tree_rewriter/fixtures/output.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/parser-2.5.1.2/test/using_tree_rewriter/using_tree_rewriter.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/CHANGELOG.md +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/CONTRIBUTING.md +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/Gemfile +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/README.md +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/Rakefile +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/array.rb +2 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/array/butfirst.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/array/butlast.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/average.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/drop_last.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/drop_last_while.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/exactly.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/frequencies.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/several.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/sum.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/take_last.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/enumerable/take_last_while.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/hash.rb +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/hash/symbolize_keys.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/numeric.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/numeric/neg.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/numeric/pos.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/numeric/scale.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/ascii_only.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/blank.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/format.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/remove.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/remove_prefix.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/remove_suffix.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/squish.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/strip_indent.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/string/strip_margin.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/lib/powerpack/version.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/powerpack.gemspec +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/array/butfirst_spec.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/array/butlast_spec.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/average_spec.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/drop_last_spec.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/drop_last_while_spec.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/exactly_spec.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/frequencies_spec.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/several_spec.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/sum_spec.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/take_last_spec.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/enumerable/take_last_while_spec.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/hash/symbolize_keys_spec.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/numeric/neg_spec.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/numeric/pos_spec.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/numeric/scale_spec.rb +139 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/ascii_only_spec.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/blank_spec.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/format_spec.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/remove_prefix_spec.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/remove_spec.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/remove_suffix_spec.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/squish_spec.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/strip_indent_spec.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/powerpack/string/strip_margin_spec.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/powerpack-0.1.2/spec/spec_helper.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/CONTRIBUTING.rdoc +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/Gemfile +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/History.rdoc +2317 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/README.rdoc +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/Rakefile +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/bin/console +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/bin/setup +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/exe/rake +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/application.rb +824 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/file_utils.rb +137 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/file_utils_ext.rb +145 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/packagetask.rb +211 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/task.rb +411 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/task_manager.rb +323 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/testtask.rb +224 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.1/rake.gemspec +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-3.8.0/LICENSE.md +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-3.8.0/README.md +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-3.8.0/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-3.8.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/Changelog.md +2221 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/LICENSE.md +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/README.md +384 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/exe/rspec +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core.rb +185 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/fork_runner.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/bisect/utilities.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/configuration.rb +2289 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/configuration_options.rb +233 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/drb.rb +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/example.rb +653 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/example_group.rb +885 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters.rb +269 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/console_codes.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/exception_presenter.rb +497 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/html_formatter.rb +153 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/json_formatter.rb +102 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/progress_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/hooks.rb +624 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/memoized_helpers.rb +535 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/metadata.rb +499 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/metadata_filter.rb +255 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/notifications.rb +521 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/option_parser.rb +309 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/output_wrapper.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/rake_task.rb +168 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/reporter.rb +257 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/runner.rb +199 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/set.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/shared_example_group.rb +269 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/world.rb +275 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/Changelog.md +1110 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/README.md +305 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations.rb +82 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/configuration.rb +215 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/fail_with.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers.rb +1034 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/all.rb +85 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/be.rb +288 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/change.rb +426 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/compound.rb +271 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/exist.rb +90 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/include.rb +149 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/raise_error.rb +230 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/respond_to.rb +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/satisfy.rb +60 -0
- 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
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/built_in/yield.rb +432 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/dsl.rb +527 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.8.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/Changelog.md +1100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/README.md +460 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks.rb +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/recorder.rb +289 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/configuration.rb +212 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/example_methods.rb +434 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/instance_method_stasher.rb +146 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/message_expectation.rb +741 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/proxy.rb +485 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/test_double.rb +171 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/verifying_proxy.rb +220 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-mocks-3.8.0/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/Changelog.md +242 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/LICENSE.md +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/README.md +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support.rb +149 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/encoded_string.rb +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/method_signature_verifier.rb +426 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/reentrant_mutex.rb +53 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/ruby_features.rb +176 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/source.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/source/location.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/source/node.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/source/token.rb +87 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/in_sub_process.rb +69 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/shell_out.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rspec-support-3.8.0/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/LICENSE.txt +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/README.md +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/Rakefile +2 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/base.rb +183 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/calculators/length.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/calculators/running_average.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/bar.rb +102 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/percentage.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/time.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/title.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/formatter.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/molecule.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/string.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/output.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/non_tty.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/null.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/tty.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/progress.rb +118 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/refinements.rb +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/refinements/enumerator.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/throttle.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/time.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/timer.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/version.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/CHANGELOG.md +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/MIT-LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/README.md +124 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/Rakefile +64 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/data/display_width.marshal.gz +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/lib/unicode/display_width.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/lib/unicode/display_width/constants.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/lib/unicode/display_width/index.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/lib/unicode/display_width/no_string_ext.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/lib/unicode/display_width/string_ext.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/spec/display_width_spec.rb +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/unicode-display_width-1.4.0/unicode-display_width.gemspec +18 -0
- data/vendor/bundle/ruby/2.5.0/specifications/ast-2.4.0.gemspec +59 -0
- data/vendor/bundle/ruby/2.5.0/specifications/parser-2.5.1.2.gemspec +62 -0
- data/vendor/bundle/ruby/2.5.0/specifications/powerpack-0.1.2.gemspec +41 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rake-12.3.1.gemspec +49 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rspec-3.8.0.gemspec +42 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rspec-core-3.8.0.gemspec +62 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rspec-expectations-3.8.1.gemspec +50 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rspec-mocks-3.8.0.gemspec +50 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rspec-support-3.8.0.gemspec +41 -0
- data/vendor/bundle/ruby/2.5.0/specifications/ruby-progressbar-1.10.0.gemspec +46 -0
- data/vendor/bundle/ruby/2.5.0/specifications/unicode-display_width-1.4.0.gemspec +38 -0
- metadata +532 -2
data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/snippet_extractor.rb
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Core
|
3
|
+
module Formatters
|
4
|
+
# @private
|
5
|
+
class SnippetExtractor
|
6
|
+
NoSuchFileError = Class.new(StandardError)
|
7
|
+
NoSuchLineError = Class.new(StandardError)
|
8
|
+
|
9
|
+
def self.extract_line_at(file_path, line_number)
|
10
|
+
source = source_from_file(file_path)
|
11
|
+
line = source.lines[line_number - 1]
|
12
|
+
raise NoSuchLineError unless line
|
13
|
+
line
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.source_from_file(path)
|
17
|
+
raise NoSuchFileError unless File.exist?(path)
|
18
|
+
RSpec.world.source_from_file(path)
|
19
|
+
end
|
20
|
+
|
21
|
+
if RSpec::Support::RubyFeatures.ripper_supported?
|
22
|
+
NoExpressionAtLineError = Class.new(StandardError)
|
23
|
+
|
24
|
+
attr_reader :source, :beginning_line_number, :max_line_count
|
25
|
+
|
26
|
+
def self.extract_expression_lines_at(file_path, beginning_line_number, max_line_count=nil)
|
27
|
+
if max_line_count == 1
|
28
|
+
[extract_line_at(file_path, beginning_line_number)]
|
29
|
+
else
|
30
|
+
source = source_from_file(file_path)
|
31
|
+
new(source, beginning_line_number, max_line_count).expression_lines
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def initialize(source, beginning_line_number, max_line_count=nil)
|
36
|
+
@source = source
|
37
|
+
@beginning_line_number = beginning_line_number
|
38
|
+
@max_line_count = max_line_count
|
39
|
+
end
|
40
|
+
|
41
|
+
def expression_lines
|
42
|
+
line_range = line_range_of_expression
|
43
|
+
|
44
|
+
if max_line_count && line_range.count > max_line_count
|
45
|
+
line_range = (line_range.begin)..(line_range.begin + max_line_count - 1)
|
46
|
+
end
|
47
|
+
|
48
|
+
source.lines[(line_range.begin - 1)..(line_range.end - 1)]
|
49
|
+
rescue SyntaxError, NoExpressionAtLineError
|
50
|
+
[self.class.extract_line_at(source.path, beginning_line_number)]
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def line_range_of_expression
|
56
|
+
@line_range_of_expression ||= begin
|
57
|
+
line_range = line_range_of_location_nodes_in_expression
|
58
|
+
initial_unclosed_tokens = unclosed_tokens_in_line_range(line_range)
|
59
|
+
unclosed_tokens = initial_unclosed_tokens
|
60
|
+
|
61
|
+
until (initial_unclosed_tokens & unclosed_tokens).empty?
|
62
|
+
line_range = (line_range.begin)..(line_range.end + 1)
|
63
|
+
unclosed_tokens = unclosed_tokens_in_line_range(line_range)
|
64
|
+
end
|
65
|
+
|
66
|
+
line_range
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def unclosed_tokens_in_line_range(line_range)
|
71
|
+
tokens = FlatMap.flat_map(line_range) do |line_number|
|
72
|
+
source.tokens_by_line_number[line_number]
|
73
|
+
end
|
74
|
+
|
75
|
+
tokens.each_with_object([]) do |token, unclosed_tokens|
|
76
|
+
if token.opening?
|
77
|
+
unclosed_tokens << token
|
78
|
+
else
|
79
|
+
index = unclosed_tokens.rindex do |unclosed_token|
|
80
|
+
unclosed_token.closed_by?(token)
|
81
|
+
end
|
82
|
+
unclosed_tokens.delete_at(index) if index
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def line_range_of_location_nodes_in_expression
|
88
|
+
line_numbers = expression_node.each_with_object(Set.new) do |node, set|
|
89
|
+
set << node.location.line if node.location
|
90
|
+
end
|
91
|
+
|
92
|
+
line_numbers.min..line_numbers.max
|
93
|
+
end
|
94
|
+
|
95
|
+
def expression_node
|
96
|
+
raise NoExpressionAtLineError if location_nodes_at_beginning_line.empty?
|
97
|
+
|
98
|
+
@expression_node ||= begin
|
99
|
+
common_ancestor_nodes = location_nodes_at_beginning_line.map do |node|
|
100
|
+
node.each_ancestor.to_a
|
101
|
+
end.reduce(:&)
|
102
|
+
|
103
|
+
common_ancestor_nodes.find { |node| expression_outmost_node?(node) }
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def expression_outmost_node?(node)
|
108
|
+
return true unless node.parent
|
109
|
+
return false if node.type.to_s.start_with?('@')
|
110
|
+
![node, node.parent].all? do |n|
|
111
|
+
# See `Ripper::PARSER_EVENTS` for the complete list of sexp types.
|
112
|
+
type = n.type.to_s
|
113
|
+
type.end_with?('call') || type.start_with?('method_add_')
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
def location_nodes_at_beginning_line
|
118
|
+
source.nodes_by_line_number[beginning_line_number]
|
119
|
+
end
|
120
|
+
else
|
121
|
+
# :nocov:
|
122
|
+
def self.extract_expression_lines_at(file_path, beginning_line_number, *)
|
123
|
+
[extract_line_at(file_path, beginning_line_number)]
|
124
|
+
end
|
125
|
+
# :nocov:
|
126
|
+
end
|
127
|
+
|
128
|
+
def self.least_indentation_from(lines)
|
129
|
+
lines.map { |line| line[/^[ \t]*/] }.min
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
data/vendor/bundle/ruby/2.5.0/gems/rspec-core-3.8.0/lib/rspec/core/formatters/syntax_highlighter.rb
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Core
|
3
|
+
module Formatters
|
4
|
+
# @private
|
5
|
+
# Provides terminal syntax highlighting of code snippets
|
6
|
+
# when coderay is available.
|
7
|
+
class SyntaxHighlighter
|
8
|
+
def initialize(configuration)
|
9
|
+
@configuration = configuration
|
10
|
+
end
|
11
|
+
|
12
|
+
def highlight(lines)
|
13
|
+
implementation.highlight_syntax(lines)
|
14
|
+
end
|
15
|
+
|
16
|
+
# rubocop:disable Lint/RescueException
|
17
|
+
# rubocop:disable Lint/HandleExceptions
|
18
|
+
def self.attempt_to_add_rspec_terms_to_coderay_keywords
|
19
|
+
CodeRay::Scanners::Ruby::Patterns::IDENT_KIND.add(%w[
|
20
|
+
describe context
|
21
|
+
it specify
|
22
|
+
before after around
|
23
|
+
let subject
|
24
|
+
expect allow
|
25
|
+
], :keyword)
|
26
|
+
rescue Exception
|
27
|
+
# Mutating CodeRay's contants like this is not a public API
|
28
|
+
# and might not always work. If we cannot add our keywords
|
29
|
+
# to CodeRay it is not a big deal and not worth raising an
|
30
|
+
# error over, so we ignore it.
|
31
|
+
end
|
32
|
+
# rubocop:enable Lint/HandleExceptions
|
33
|
+
# rubocop:enable Lint/RescueException
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
if RSpec::Support::OS.windows?
|
38
|
+
# :nocov:
|
39
|
+
def implementation
|
40
|
+
WindowsImplementation
|
41
|
+
end
|
42
|
+
# :nocov:
|
43
|
+
else
|
44
|
+
def implementation
|
45
|
+
return color_enabled_implementation if @configuration.color_enabled?
|
46
|
+
NoSyntaxHighlightingImplementation
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def color_enabled_implementation
|
51
|
+
@color_enabled_implementation ||= begin
|
52
|
+
require 'coderay'
|
53
|
+
self.class.attempt_to_add_rspec_terms_to_coderay_keywords
|
54
|
+
CodeRayImplementation
|
55
|
+
rescue LoadError
|
56
|
+
NoSyntaxHighlightingImplementation
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# @private
|
61
|
+
module CodeRayImplementation
|
62
|
+
RESET_CODE = "\e[0m"
|
63
|
+
|
64
|
+
def self.highlight_syntax(lines)
|
65
|
+
highlighted = begin
|
66
|
+
CodeRay.encode(lines.join("\n"), :ruby, :terminal)
|
67
|
+
rescue Support::AllExceptionsExceptOnesWeMustNotRescue
|
68
|
+
return lines
|
69
|
+
end
|
70
|
+
|
71
|
+
highlighted.split("\n").map do |line|
|
72
|
+
line.sub(/\S/) { |char| char.insert(0, RESET_CODE) }
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# @private
|
78
|
+
module NoSyntaxHighlightingImplementation
|
79
|
+
def self.highlight_syntax(lines)
|
80
|
+
lines
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
# @private
|
85
|
+
# Not sure why, but our code above (and/or coderay itself) does not work
|
86
|
+
# on Windows, so we disable the feature on Windows.
|
87
|
+
WindowsImplementation = NoSyntaxHighlightingImplementation
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,624 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Core
|
3
|
+
# Provides `before`, `after` and `around` hooks as a means of
|
4
|
+
# supporting common setup and teardown. This module is extended
|
5
|
+
# onto {ExampleGroup}, making the methods available from any `describe`
|
6
|
+
# or `context` block and included in {Configuration}, making them
|
7
|
+
# available off of the configuration object to define global setup
|
8
|
+
# or teardown logic.
|
9
|
+
module Hooks
|
10
|
+
# @api public
|
11
|
+
#
|
12
|
+
# @overload before(&block)
|
13
|
+
# @overload before(scope, &block)
|
14
|
+
# @param scope [Symbol] `:example`, `:context`, or `:suite`
|
15
|
+
# (defaults to `:example`)
|
16
|
+
# @overload before(scope, conditions, &block)
|
17
|
+
# @param scope [Symbol] `:example`, `:context`, or `:suite`
|
18
|
+
# (defaults to `:example`)
|
19
|
+
# @param conditions [Hash]
|
20
|
+
# constrains this hook to examples matching these conditions e.g.
|
21
|
+
# `before(:example, :ui => true) { ... }` will only run with examples
|
22
|
+
# or groups declared with `:ui => true`.
|
23
|
+
# @overload before(conditions, &block)
|
24
|
+
# @param conditions [Hash]
|
25
|
+
# constrains this hook to examples matching these conditions e.g.
|
26
|
+
# `before(:example, :ui => true) { ... }` will only run with examples
|
27
|
+
# or groups declared with `:ui => true`.
|
28
|
+
#
|
29
|
+
# @see #after
|
30
|
+
# @see #around
|
31
|
+
# @see ExampleGroup
|
32
|
+
# @see SharedContext
|
33
|
+
# @see SharedExampleGroup
|
34
|
+
# @see Configuration
|
35
|
+
#
|
36
|
+
# Declare a block of code to be run before each example (using `:example`)
|
37
|
+
# or once before any example (using `:context`). These are usually
|
38
|
+
# declared directly in the {ExampleGroup} to which they apply, but they
|
39
|
+
# can also be shared across multiple groups.
|
40
|
+
#
|
41
|
+
# You can also use `before(:suite)` to run a block of code before any
|
42
|
+
# example groups are run. This should be declared in {RSpec.configure}.
|
43
|
+
#
|
44
|
+
# Instance variables declared in `before(:example)` or `before(:context)`
|
45
|
+
# are accessible within each example.
|
46
|
+
#
|
47
|
+
# ### Order
|
48
|
+
#
|
49
|
+
# `before` hooks are stored in three scopes, which are run in order:
|
50
|
+
# `:suite`, `:context`, and `:example`. They can also be declared in
|
51
|
+
# several different places: `RSpec.configure`, a parent group, the current
|
52
|
+
# group. They are run in the following order:
|
53
|
+
#
|
54
|
+
# before(:suite) # Declared in RSpec.configure.
|
55
|
+
# before(:context) # Declared in RSpec.configure.
|
56
|
+
# before(:context) # Declared in a parent group.
|
57
|
+
# before(:context) # Declared in the current group.
|
58
|
+
# before(:example) # Declared in RSpec.configure.
|
59
|
+
# before(:example) # Declared in a parent group.
|
60
|
+
# before(:example) # Declared in the current group.
|
61
|
+
#
|
62
|
+
# If more than one `before` is declared within any one scope, they are run
|
63
|
+
# in the order in which they are declared.
|
64
|
+
#
|
65
|
+
# ### Conditions
|
66
|
+
#
|
67
|
+
# When you add a conditions hash to `before(:example)` or
|
68
|
+
# `before(:context)`, RSpec will only apply that hook to groups or
|
69
|
+
# examples that match the conditions. e.g.
|
70
|
+
#
|
71
|
+
# RSpec.configure do |config|
|
72
|
+
# config.before(:example, :authorized => true) do
|
73
|
+
# log_in_as :authorized_user
|
74
|
+
# end
|
75
|
+
# end
|
76
|
+
#
|
77
|
+
# describe Something, :authorized => true do
|
78
|
+
# # The before hook will run in before each example in this group.
|
79
|
+
# end
|
80
|
+
#
|
81
|
+
# describe SomethingElse do
|
82
|
+
# it "does something", :authorized => true do
|
83
|
+
# # The before hook will run before this example.
|
84
|
+
# end
|
85
|
+
#
|
86
|
+
# it "does something else" do
|
87
|
+
# # The hook will not run before this example.
|
88
|
+
# end
|
89
|
+
# end
|
90
|
+
#
|
91
|
+
# Note that filtered config `:context` hooks can still be applied
|
92
|
+
# to individual examples that have matching metadata. Just like
|
93
|
+
# Ruby's object model is that every object has a singleton class
|
94
|
+
# which has only a single instance, RSpec's model is that every
|
95
|
+
# example has a singleton example group containing just the one
|
96
|
+
# example.
|
97
|
+
#
|
98
|
+
# ### Warning: `before(:suite, :with => :conditions)`
|
99
|
+
#
|
100
|
+
# The conditions hash is used to match against specific examples. Since
|
101
|
+
# `before(:suite)` is not run in relation to any specific example or
|
102
|
+
# group, conditions passed along with `:suite` are effectively ignored.
|
103
|
+
#
|
104
|
+
# ### Exceptions
|
105
|
+
#
|
106
|
+
# When an exception is raised in a `before` block, RSpec skips any
|
107
|
+
# subsequent `before` blocks and the example, but runs all of the
|
108
|
+
# `after(:example)` and `after(:context)` hooks.
|
109
|
+
#
|
110
|
+
# ### Warning: implicit before blocks
|
111
|
+
#
|
112
|
+
# `before` hooks can also be declared in shared contexts which get
|
113
|
+
# included implicitly either by you or by extension libraries. Since
|
114
|
+
# RSpec runs these in the order in which they are declared within each
|
115
|
+
# scope, load order matters, and can lead to confusing results when one
|
116
|
+
# before block depends on state that is prepared in another before block
|
117
|
+
# that gets run later.
|
118
|
+
#
|
119
|
+
# ### Warning: `before(:context)`
|
120
|
+
#
|
121
|
+
# It is very tempting to use `before(:context)` to speed things up, but we
|
122
|
+
# recommend that you avoid this as there are a number of gotchas, as well
|
123
|
+
# as things that simply don't work.
|
124
|
+
#
|
125
|
+
# #### Context
|
126
|
+
#
|
127
|
+
# `before(:context)` is run in an example that is generated to provide
|
128
|
+
# group context for the block.
|
129
|
+
#
|
130
|
+
# #### Instance variables
|
131
|
+
#
|
132
|
+
# Instance variables declared in `before(:context)` are shared across all
|
133
|
+
# the examples in the group. This means that each example can change the
|
134
|
+
# state of a shared object, resulting in an ordering dependency that can
|
135
|
+
# make it difficult to reason about failures.
|
136
|
+
#
|
137
|
+
# #### Unsupported RSpec constructs
|
138
|
+
#
|
139
|
+
# RSpec has several constructs that reset state between each example
|
140
|
+
# automatically. These are not intended for use from within
|
141
|
+
# `before(:context)`:
|
142
|
+
#
|
143
|
+
# * `let` declarations
|
144
|
+
# * `subject` declarations
|
145
|
+
# * Any mocking, stubbing or test double declaration
|
146
|
+
#
|
147
|
+
# ### other frameworks
|
148
|
+
#
|
149
|
+
# Mock object frameworks and database transaction managers (like
|
150
|
+
# ActiveRecord) are typically designed around the idea of setting up
|
151
|
+
# before an example, running that one example, and then tearing down. This
|
152
|
+
# means that mocks and stubs can (sometimes) be declared in
|
153
|
+
# `before(:context)`, but get torn down before the first real example is
|
154
|
+
# ever run.
|
155
|
+
#
|
156
|
+
# You _can_ create database-backed model objects in a `before(:context)`
|
157
|
+
# in rspec-rails, but it will not be wrapped in a transaction for you, so
|
158
|
+
# you are on your own to clean up in an `after(:context)` block.
|
159
|
+
#
|
160
|
+
# @example before(:example) declared in an {ExampleGroup}
|
161
|
+
#
|
162
|
+
# describe Thing do
|
163
|
+
# before(:example) do
|
164
|
+
# @thing = Thing.new
|
165
|
+
# end
|
166
|
+
#
|
167
|
+
# it "does something" do
|
168
|
+
# # Here you can access @thing.
|
169
|
+
# end
|
170
|
+
# end
|
171
|
+
#
|
172
|
+
# @example before(:context) declared in an {ExampleGroup}
|
173
|
+
#
|
174
|
+
# describe Parser do
|
175
|
+
# before(:context) do
|
176
|
+
# File.open(file_to_parse, 'w') do |f|
|
177
|
+
# f.write <<-CONTENT
|
178
|
+
# stuff in the file
|
179
|
+
# CONTENT
|
180
|
+
# end
|
181
|
+
# end
|
182
|
+
#
|
183
|
+
# it "parses the file" do
|
184
|
+
# Parser.parse(file_to_parse)
|
185
|
+
# end
|
186
|
+
#
|
187
|
+
# after(:context) do
|
188
|
+
# File.delete(file_to_parse)
|
189
|
+
# end
|
190
|
+
# end
|
191
|
+
#
|
192
|
+
# @note The `:example` and `:context` scopes are also available as
|
193
|
+
# `:each` and `:all`, respectively. Use whichever you prefer.
|
194
|
+
# @note The `:suite` scope is only supported for hooks registered on
|
195
|
+
# `RSpec.configuration` since they exist independently of any
|
196
|
+
# example or example group.
|
197
|
+
def before(*args, &block)
|
198
|
+
hooks.register :append, :before, *args, &block
|
199
|
+
end
|
200
|
+
|
201
|
+
alias_method :append_before, :before
|
202
|
+
|
203
|
+
# Adds `block` to the front of the list of `before` blocks in the same
|
204
|
+
# scope (`:example`, `:context`, or `:suite`).
|
205
|
+
#
|
206
|
+
# See {#before} for scoping semantics.
|
207
|
+
def prepend_before(*args, &block)
|
208
|
+
hooks.register :prepend, :before, *args, &block
|
209
|
+
end
|
210
|
+
|
211
|
+
# @api public
|
212
|
+
# @overload after(&block)
|
213
|
+
# @overload after(scope, &block)
|
214
|
+
# @param scope [Symbol] `:example`, `:context`, or `:suite` (defaults to
|
215
|
+
# `:example`)
|
216
|
+
# @overload after(scope, conditions, &block)
|
217
|
+
# @param scope [Symbol] `:example`, `:context`, or `:suite` (defaults to
|
218
|
+
# `:example`)
|
219
|
+
# @param conditions [Hash]
|
220
|
+
# constrains this hook to examples matching these conditions e.g.
|
221
|
+
# `after(:example, :ui => true) { ... }` will only run with examples
|
222
|
+
# or groups declared with `:ui => true`.
|
223
|
+
# @overload after(conditions, &block)
|
224
|
+
# @param conditions [Hash]
|
225
|
+
# constrains this hook to examples matching these conditions e.g.
|
226
|
+
# `after(:example, :ui => true) { ... }` will only run with examples
|
227
|
+
# or groups declared with `:ui => true`.
|
228
|
+
#
|
229
|
+
# @see #before
|
230
|
+
# @see #around
|
231
|
+
# @see ExampleGroup
|
232
|
+
# @see SharedContext
|
233
|
+
# @see SharedExampleGroup
|
234
|
+
# @see Configuration
|
235
|
+
#
|
236
|
+
# Declare a block of code to be run after each example (using `:example`)
|
237
|
+
# or once after all examples n the context (using `:context`). See
|
238
|
+
# {#before} for more information about ordering.
|
239
|
+
#
|
240
|
+
# ### Exceptions
|
241
|
+
#
|
242
|
+
# `after` hooks are guaranteed to run even when there are exceptions in
|
243
|
+
# `before` hooks or examples. When an exception is raised in an after
|
244
|
+
# block, the exception is captured for later reporting, and subsequent
|
245
|
+
# `after` blocks are run.
|
246
|
+
#
|
247
|
+
# ### Order
|
248
|
+
#
|
249
|
+
# `after` hooks are stored in three scopes, which are run in order:
|
250
|
+
# `:example`, `:context`, and `:suite`. They can also be declared in
|
251
|
+
# several different places: `RSpec.configure`, a parent group, the current
|
252
|
+
# group. They are run in the following order:
|
253
|
+
#
|
254
|
+
# after(:example) # Declared in the current group.
|
255
|
+
# after(:example) # Declared in a parent group.
|
256
|
+
# after(:example) # Declared in RSpec.configure.
|
257
|
+
# after(:context) # Declared in the current group.
|
258
|
+
# after(:context) # Declared in a parent group.
|
259
|
+
# after(:context) # Declared in RSpec.configure.
|
260
|
+
# after(:suite) # Declared in RSpec.configure.
|
261
|
+
#
|
262
|
+
# This is the reverse of the order in which `before` hooks are run.
|
263
|
+
# Similarly, if more than one `after` is declared within any one scope,
|
264
|
+
# they are run in reverse order of that in which they are declared.
|
265
|
+
#
|
266
|
+
# @note The `:example` and `:context` scopes are also available as
|
267
|
+
# `:each` and `:all`, respectively. Use whichever you prefer.
|
268
|
+
# @note The `:suite` scope is only supported for hooks registered on
|
269
|
+
# `RSpec.configuration` since they exist independently of any
|
270
|
+
# example or example group.
|
271
|
+
def after(*args, &block)
|
272
|
+
hooks.register :prepend, :after, *args, &block
|
273
|
+
end
|
274
|
+
|
275
|
+
alias_method :prepend_after, :after
|
276
|
+
|
277
|
+
# Adds `block` to the back of the list of `after` blocks in the same
|
278
|
+
# scope (`:example`, `:context`, or `:suite`).
|
279
|
+
#
|
280
|
+
# See {#after} for scoping semantics.
|
281
|
+
def append_after(*args, &block)
|
282
|
+
hooks.register :append, :after, *args, &block
|
283
|
+
end
|
284
|
+
|
285
|
+
# @api public
|
286
|
+
# @overload around(&block)
|
287
|
+
# @overload around(scope, &block)
|
288
|
+
# @param scope [Symbol] `:example` (defaults to `:example`)
|
289
|
+
# present for syntax parity with `before` and `after`, but
|
290
|
+
# `:example`/`:each` is the only supported value.
|
291
|
+
# @overload around(scope, conditions, &block)
|
292
|
+
# @param scope [Symbol] `:example` (defaults to `:example`)
|
293
|
+
# present for syntax parity with `before` and `after`, but
|
294
|
+
# `:example`/`:each` is the only supported value.
|
295
|
+
# @param conditions [Hash] constrains this hook to examples matching
|
296
|
+
# these conditions e.g. `around(:example, :ui => true) { ... }` will
|
297
|
+
# only run with examples or groups declared with `:ui => true`.
|
298
|
+
# @overload around(conditions, &block)
|
299
|
+
# @param conditions [Hash] constrains this hook to examples matching
|
300
|
+
# these conditions e.g. `around(:example, :ui => true) { ... }` will
|
301
|
+
# only run with examples or groups declared with `:ui => true`.
|
302
|
+
#
|
303
|
+
# @yield [Example] the example to run
|
304
|
+
#
|
305
|
+
# @note the syntax of `around` is similar to that of `before` and `after`
|
306
|
+
# but the semantics are quite different. `before` and `after` hooks are
|
307
|
+
# run in the context of of the examples with which they are associated,
|
308
|
+
# whereas `around` hooks are actually responsible for running the
|
309
|
+
# examples. Consequently, `around` hooks do not have direct access to
|
310
|
+
# resources that are made available within the examples and their
|
311
|
+
# associated `before` and `after` hooks.
|
312
|
+
#
|
313
|
+
# @note `:example`/`:each` is the only supported scope.
|
314
|
+
#
|
315
|
+
# Declare a block of code, parts of which will be run before and parts
|
316
|
+
# after the example. It is your responsibility to run the example:
|
317
|
+
#
|
318
|
+
# around(:example) do |ex|
|
319
|
+
# # Do some stuff before.
|
320
|
+
# ex.run
|
321
|
+
# # Do some stuff after.
|
322
|
+
# end
|
323
|
+
#
|
324
|
+
# The yielded example aliases `run` with `call`, which lets you treat it
|
325
|
+
# like a `Proc`. This is especially handy when working with libraries
|
326
|
+
# that manage their own setup and teardown using a block or proc syntax,
|
327
|
+
# e.g.
|
328
|
+
#
|
329
|
+
# around(:example) {|ex| Database.transaction(&ex)}
|
330
|
+
# around(:example) {|ex| FakeFS(&ex)}
|
331
|
+
#
|
332
|
+
def around(*args, &block)
|
333
|
+
hooks.register :prepend, :around, *args, &block
|
334
|
+
end
|
335
|
+
|
336
|
+
# @private
|
337
|
+
# Holds the various registered hooks.
|
338
|
+
def hooks
|
339
|
+
@hooks ||= HookCollections.new(self, FilterableItemRepository::UpdateOptimized)
|
340
|
+
end
|
341
|
+
|
342
|
+
# @private
|
343
|
+
Hook = Struct.new(:block, :options)
|
344
|
+
|
345
|
+
# @private
|
346
|
+
class BeforeHook < Hook
|
347
|
+
def run(example)
|
348
|
+
example.instance_exec(example, &block)
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
# @private
|
353
|
+
class AfterHook < Hook
|
354
|
+
def run(example)
|
355
|
+
example.instance_exec(example, &block)
|
356
|
+
rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
|
357
|
+
example.set_exception(ex)
|
358
|
+
end
|
359
|
+
end
|
360
|
+
|
361
|
+
# @private
|
362
|
+
class AfterContextHook < Hook
|
363
|
+
def run(example)
|
364
|
+
example.instance_exec(example, &block)
|
365
|
+
rescue Support::AllExceptionsExceptOnesWeMustNotRescue => e
|
366
|
+
RSpec.configuration.reporter.notify_non_example_exception(e, "An error occurred in an `after(:context)` hook.")
|
367
|
+
end
|
368
|
+
end
|
369
|
+
|
370
|
+
# @private
|
371
|
+
class AroundHook < Hook
|
372
|
+
def execute_with(example, procsy)
|
373
|
+
example.instance_exec(procsy, &block)
|
374
|
+
return if procsy.executed?
|
375
|
+
Pending.mark_skipped!(example,
|
376
|
+
"#{hook_description} did not execute the example")
|
377
|
+
end
|
378
|
+
|
379
|
+
if Proc.method_defined?(:source_location)
|
380
|
+
def hook_description
|
381
|
+
"around hook at #{Metadata.relative_path(block.source_location.join(':'))}"
|
382
|
+
end
|
383
|
+
else # for 1.8.7
|
384
|
+
# :nocov:
|
385
|
+
def hook_description
|
386
|
+
"around hook"
|
387
|
+
end
|
388
|
+
# :nocov:
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
392
|
+
# @private
|
393
|
+
#
|
394
|
+
# This provides the primary API used by other parts of rspec-core. By hiding all
|
395
|
+
# implementation details behind this facade, it's allowed us to heavily optimize
|
396
|
+
# this, so that, for example, hook collection objects are only instantiated when
|
397
|
+
# a hook is added. This allows us to avoid many object allocations for the common
|
398
|
+
# case of a group having no hooks.
|
399
|
+
#
|
400
|
+
# This is only possible because this interface provides a "tell, don't ask"-style
|
401
|
+
# API, so that callers _tell_ this class what to do with the hooks, rather than
|
402
|
+
# asking this class for a list of hooks, and then doing something with them.
|
403
|
+
class HookCollections
|
404
|
+
def initialize(owner, filterable_item_repo_class)
|
405
|
+
@owner = owner
|
406
|
+
@filterable_item_repo_class = filterable_item_repo_class
|
407
|
+
@before_example_hooks = nil
|
408
|
+
@after_example_hooks = nil
|
409
|
+
@before_context_hooks = nil
|
410
|
+
@after_context_hooks = nil
|
411
|
+
@around_example_hooks = nil
|
412
|
+
end
|
413
|
+
|
414
|
+
def register_globals(host, globals)
|
415
|
+
parent_groups = host.parent_groups
|
416
|
+
|
417
|
+
process(host, parent_groups, globals, :before, :example, &:options)
|
418
|
+
process(host, parent_groups, globals, :after, :example, &:options)
|
419
|
+
process(host, parent_groups, globals, :around, :example, &:options)
|
420
|
+
|
421
|
+
process(host, parent_groups, globals, :before, :context, &:options)
|
422
|
+
process(host, parent_groups, globals, :after, :context, &:options)
|
423
|
+
end
|
424
|
+
|
425
|
+
def register_global_singleton_context_hooks(example, globals)
|
426
|
+
parent_groups = example.example_group.parent_groups
|
427
|
+
|
428
|
+
process(example, parent_groups, globals, :before, :context) { {} }
|
429
|
+
process(example, parent_groups, globals, :after, :context) { {} }
|
430
|
+
end
|
431
|
+
|
432
|
+
def register(prepend_or_append, position, *args, &block)
|
433
|
+
scope, options = scope_and_options_from(*args)
|
434
|
+
|
435
|
+
if scope == :suite
|
436
|
+
# TODO: consider making this an error in RSpec 4. For SemVer reasons,
|
437
|
+
# we are only warning in RSpec 3.
|
438
|
+
RSpec.warn_with "WARNING: `#{position}(:suite)` hooks are only supported on " \
|
439
|
+
"the RSpec configuration object. This " \
|
440
|
+
"`#{position}(:suite)` hook, registered on an example " \
|
441
|
+
"group, will be ignored."
|
442
|
+
return
|
443
|
+
end
|
444
|
+
|
445
|
+
hook = HOOK_TYPES[position][scope].new(block, options)
|
446
|
+
ensure_hooks_initialized_for(position, scope).__send__(prepend_or_append, hook, options)
|
447
|
+
end
|
448
|
+
|
449
|
+
# @private
|
450
|
+
#
|
451
|
+
# Runs all of the blocks stored with the hook in the context of the
|
452
|
+
# example. If no example is provided, just calls the hook directly.
|
453
|
+
def run(position, scope, example_or_group)
|
454
|
+
return if RSpec.configuration.dry_run?
|
455
|
+
|
456
|
+
if scope == :context
|
457
|
+
unless example_or_group.class.metadata[:skip]
|
458
|
+
run_owned_hooks_for(position, :context, example_or_group)
|
459
|
+
end
|
460
|
+
else
|
461
|
+
case position
|
462
|
+
when :before then run_example_hooks_for(example_or_group, :before, :reverse_each)
|
463
|
+
when :after then run_example_hooks_for(example_or_group, :after, :each)
|
464
|
+
when :around then run_around_example_hooks_for(example_or_group) { yield }
|
465
|
+
end
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
469
|
+
SCOPES = [:example, :context]
|
470
|
+
|
471
|
+
SCOPE_ALIASES = { :each => :example, :all => :context }
|
472
|
+
|
473
|
+
HOOK_TYPES = {
|
474
|
+
:before => Hash.new { BeforeHook },
|
475
|
+
:after => Hash.new { AfterHook },
|
476
|
+
:around => Hash.new { AroundHook }
|
477
|
+
}
|
478
|
+
|
479
|
+
HOOK_TYPES[:after][:context] = AfterContextHook
|
480
|
+
|
481
|
+
protected
|
482
|
+
|
483
|
+
EMPTY_HOOK_ARRAY = [].freeze
|
484
|
+
|
485
|
+
def matching_hooks_for(position, scope, example_or_group)
|
486
|
+
repository = hooks_for(position, scope) { return EMPTY_HOOK_ARRAY }
|
487
|
+
|
488
|
+
# It would be nice to not have to switch on type here, but
|
489
|
+
# we don't want to define `ExampleGroup#metadata` because then
|
490
|
+
# `metadata` from within an individual example would return the
|
491
|
+
# group's metadata but the user would probably expect it to be
|
492
|
+
# the example's metadata.
|
493
|
+
metadata = case example_or_group
|
494
|
+
when ExampleGroup then example_or_group.class.metadata
|
495
|
+
else example_or_group.metadata
|
496
|
+
end
|
497
|
+
|
498
|
+
repository.items_for(metadata)
|
499
|
+
end
|
500
|
+
|
501
|
+
def all_hooks_for(position, scope)
|
502
|
+
hooks_for(position, scope) { return EMPTY_HOOK_ARRAY }.items_and_filters.map(&:first)
|
503
|
+
end
|
504
|
+
|
505
|
+
def run_owned_hooks_for(position, scope, example_or_group)
|
506
|
+
matching_hooks_for(position, scope, example_or_group).each do |hook|
|
507
|
+
hook.run(example_or_group)
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
511
|
+
def processable_hooks_for(position, scope, host)
|
512
|
+
if scope == :example
|
513
|
+
all_hooks_for(position, scope)
|
514
|
+
else
|
515
|
+
matching_hooks_for(position, scope, host)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
519
|
+
private
|
520
|
+
|
521
|
+
def hooks_for(position, scope)
|
522
|
+
if position == :before
|
523
|
+
scope == :example ? @before_example_hooks : @before_context_hooks
|
524
|
+
elsif position == :after
|
525
|
+
scope == :example ? @after_example_hooks : @after_context_hooks
|
526
|
+
else # around
|
527
|
+
@around_example_hooks
|
528
|
+
end || yield
|
529
|
+
end
|
530
|
+
|
531
|
+
def ensure_hooks_initialized_for(position, scope)
|
532
|
+
if position == :before
|
533
|
+
if scope == :example
|
534
|
+
@before_example_hooks ||= @filterable_item_repo_class.new(:all?)
|
535
|
+
else
|
536
|
+
@before_context_hooks ||= @filterable_item_repo_class.new(:all?)
|
537
|
+
end
|
538
|
+
elsif position == :after
|
539
|
+
if scope == :example
|
540
|
+
@after_example_hooks ||= @filterable_item_repo_class.new(:all?)
|
541
|
+
else
|
542
|
+
@after_context_hooks ||= @filterable_item_repo_class.new(:all?)
|
543
|
+
end
|
544
|
+
else # around
|
545
|
+
@around_example_hooks ||= @filterable_item_repo_class.new(:all?)
|
546
|
+
end
|
547
|
+
end
|
548
|
+
|
549
|
+
def process(host, parent_groups, globals, position, scope)
|
550
|
+
hooks_to_process = globals.processable_hooks_for(position, scope, host)
|
551
|
+
return if hooks_to_process.empty?
|
552
|
+
|
553
|
+
hooks_to_process -= FlatMap.flat_map(parent_groups) do |group|
|
554
|
+
group.hooks.all_hooks_for(position, scope)
|
555
|
+
end
|
556
|
+
return if hooks_to_process.empty?
|
557
|
+
|
558
|
+
repository = ensure_hooks_initialized_for(position, scope)
|
559
|
+
hooks_to_process.each { |hook| repository.append hook, (yield hook) }
|
560
|
+
end
|
561
|
+
|
562
|
+
def scope_and_options_from(*args)
|
563
|
+
return :suite if args.first == :suite
|
564
|
+
scope = extract_scope_from(args)
|
565
|
+
meta = Metadata.build_hash_from(args, :warn_about_example_group_filtering)
|
566
|
+
return scope, meta
|
567
|
+
end
|
568
|
+
|
569
|
+
def extract_scope_from(args)
|
570
|
+
if known_scope?(args.first)
|
571
|
+
normalized_scope_for(args.shift)
|
572
|
+
elsif args.any? { |a| a.is_a?(Symbol) }
|
573
|
+
error_message = "You must explicitly give a scope " \
|
574
|
+
"(#{SCOPES.join(", ")}) or scope alias " \
|
575
|
+
"(#{SCOPE_ALIASES.keys.join(", ")}) when using symbols as " \
|
576
|
+
"metadata for a hook."
|
577
|
+
raise ArgumentError.new error_message
|
578
|
+
else
|
579
|
+
:example
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
583
|
+
def known_scope?(scope)
|
584
|
+
SCOPES.include?(scope) || SCOPE_ALIASES.keys.include?(scope)
|
585
|
+
end
|
586
|
+
|
587
|
+
def normalized_scope_for(scope)
|
588
|
+
SCOPE_ALIASES[scope] || scope
|
589
|
+
end
|
590
|
+
|
591
|
+
def run_example_hooks_for(example, position, each_method)
|
592
|
+
owner_parent_groups.__send__(each_method) do |group|
|
593
|
+
group.hooks.run_owned_hooks_for(position, :example, example)
|
594
|
+
end
|
595
|
+
end
|
596
|
+
|
597
|
+
def run_around_example_hooks_for(example)
|
598
|
+
hooks = FlatMap.flat_map(owner_parent_groups) do |group|
|
599
|
+
group.hooks.matching_hooks_for(:around, :example, example)
|
600
|
+
end
|
601
|
+
|
602
|
+
return yield if hooks.empty? # exit early to avoid the extra allocation cost of `Example::Procsy`
|
603
|
+
|
604
|
+
initial_procsy = Example::Procsy.new(example) { yield }
|
605
|
+
hooks.inject(initial_procsy) do |procsy, around_hook|
|
606
|
+
procsy.wrap { around_hook.execute_with(example, procsy) }
|
607
|
+
end.call
|
608
|
+
end
|
609
|
+
|
610
|
+
if respond_to?(:singleton_class) && singleton_class.ancestors.include?(singleton_class)
|
611
|
+
def owner_parent_groups
|
612
|
+
@owner.parent_groups
|
613
|
+
end
|
614
|
+
else # Ruby < 2.1 (see https://bugs.ruby-lang.org/issues/8035)
|
615
|
+
# :nocov:
|
616
|
+
def owner_parent_groups
|
617
|
+
@owner_parent_groups ||= [@owner] + @owner.parent_groups
|
618
|
+
end
|
619
|
+
# :nocov:
|
620
|
+
end
|
621
|
+
end
|
622
|
+
end
|
623
|
+
end
|
624
|
+
end
|