suzuko 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.travis.yml +13 -0
- data/Gemfile +4 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/exe/suzuko +3 -0
- data/lib/suzuko/version.rb +3 -0
- data/lib/suzuko.rb +5 -0
- data/suzuko.gemspec +37 -0
- data/vendor/bundle/ruby/2.0.0/bin/cdiff +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/colortab +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/coveralls +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/decolor +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/htmldiff +25 -0
- data/vendor/bundle/ruby/2.0.0/bin/ldiff +25 -0
- data/vendor/bundle/ruby/2.0.0/bin/rake +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/restclient +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/rspec +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/suzuko +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/term_display +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/term_mandel +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/thor +23 -0
- data/vendor/bundle/ruby/2.0.0/cache/coveralls-0.8.3.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/diff-lcs-1.2.5.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/docile-1.1.5.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/domain_name-0.5.25.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/gemcutter-0.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/http-cookie-1.0.2.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/json-1.8.3.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/mime-types-2.6.2.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/netrc-0.10.3.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rake-10.4.2.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rest-client-1.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-3.2.0.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-core-3.2.3.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-expectations-3.2.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-mocks-3.2.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-support-3.2.2.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/simplecov-0.10.0.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/simplecov-html-0.10.0.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/term-ansicolor-1.3.2.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/thor-0.19.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/tins-1.6.0.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/unf-0.1.4.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/unf_ext-0.0.7.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/.gitignore +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/.rspec +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/.travis.yml +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/CHANGELOG.md +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/Gemfile +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/LICENSE +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/README.md +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/Rakefile +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/bin/coveralls +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/coveralls-ruby.gemspec +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/api.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/command.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/configuration.rb +211 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/output.rb +114 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/rake/task.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/simplecov.rb +105 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls/version.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/lib/coveralls.rb +101 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/configuration_spec.rb +318 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/coveralls_spec.rb +106 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/controllers/sample.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/models/airplane.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/models/dog.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/models/house.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/models/robot.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/models/user.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/app/vendor/vendored_gem.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/fixtures/sample.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/output_spec.rb +92 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/coveralls/simplecov_spec.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/coveralls-0.8.3/spec/spec_helper.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/.autotest +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/.gemtest +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/.hoerc +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/.rspec +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/.travis.yml +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Gemfile +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/History.rdoc +152 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/License.rdoc +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/README.rdoc +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Rakefile +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.gitignore +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.rspec +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.ruby-gemset +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.ruby-version +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.travis.yml +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/.yardopts +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/Gemfile +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/HISTORY.md +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/LICENSE +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/README.md +241 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/Rakefile +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/docile.gemspec +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/lib/docile/chaining_fallback_context_proxy.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/lib/docile/execution.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/lib/docile/fallback_context_proxy.rb +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/lib/docile/version.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/lib/docile.rb +84 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/on_what.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/spec/docile_spec.rb +339 -0
- data/vendor/bundle/ruby/2.0.0/gems/docile-1.1.5/spec/spec_helper.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/.gitignore +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/.travis.yml +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/Gemfile +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/LICENSE.txt +107 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/README.md +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/Rakefile +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/data/effective_tld_names.dat +11224 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/domain_name.gemspec +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/lib/domain_name/etld_data.rb +7794 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/lib/domain_name/etld_data.rb.erb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/lib/domain_name/punycode.rb +283 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/lib/domain_name/version.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/lib/domain_name.rb +297 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/test/helper.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/test/test_domain_name-punycode.rb +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/test/test_domain_name.rb +317 -0
- data/vendor/bundle/ruby/2.0.0/gems/domain_name-0.5.25/tool/gen_etld_data.rb +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/Gemfile +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/MIT-LICENSE +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/README.md +99 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/Rakefile +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/gemcutter/version.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/rubygems/commands/migrate_command.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/rubygems/commands/tumble_command.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/rubygems/commands/webhook_command.rb +117 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/rubygems/commands/yank_command.rb +86 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/lib/rubygems_plugin.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/test/helper.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/test/webhook_command_test.rb +240 -0
- data/vendor/bundle/ruby/2.0.0/gems/gemcutter-0.7.1/test/yank_command_test.rb +157 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/.gitignore +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/.travis.yml +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/CHANGELOG.md +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/Gemfile +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/LICENSE.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/README.md +235 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/Rakefile +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/http-cookie.gemspec +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie/ruby_compat.rb +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie/scanner.rb +230 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie/version.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie.rb +685 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/abstract_saver.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/abstract_store.rb +124 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/cookiestxt_saver.rb +106 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/hash_store.rb +163 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/mozilla_store.rb +458 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar/yaml_saver.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http/cookie_jar.rb +344 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/lib/http-cookie.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/test/helper.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/test/mechanize.yml +101 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/test/simplecov_start.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/test/test_http_cookie.rb +1111 -0
- data/vendor/bundle/ruby/2.0.0/gems/http-cookie-1.0.2/test/test_http_cookie_jar.rb +985 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/.gitignore +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/.travis.yml +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/CHANGES +295 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/COPYING +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/COPYING-json-jruby +57 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/GPL +340 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/Gemfile +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/README-json-jruby.markdown +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/README.rdoc +358 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/Rakefile +412 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/TODO +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/VERSION +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/example.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/index.html +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/data/prototype.js +4184 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/diagrams/.keep +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/fbuffer/fbuffer.h +190 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/.RUBYARCHDIR.time +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/depend +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/extconf.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.c +1458 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/generator/generator.h +166 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/.RUBYARCHDIR.time +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/depend +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/extconf.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.c +2216 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.h +92 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/ext/parser/parser.rl +939 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/ext/json/extconf.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/install.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/ByteListTranscoder.java +167 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Generator.java +444 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorMethods.java +232 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorService.java +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/GeneratorState.java +543 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/OptionsReader.java +114 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Parser.java +2645 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Parser.rl +969 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/ParserService.java +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/RuntimeInfo.java +121 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/StringDecoder.java +167 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/StringEncoder.java +106 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/java/src/json/ext/Utils.java +89 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json-java.gemspec +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json.gemspec +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/json_pure.gemspec +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/bigdecimal.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/complex.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/core.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/date.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/date_time.rb +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/exception.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/range.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/rational.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/regexp.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/struct.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/symbol.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/add/time.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/common.rb +484 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/ext/.keep +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/ext.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/generic_object.rb +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure/generator.rb +522 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure/parser.rb +359 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/pure.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json/version.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/lib/json.rb +62 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail1.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail10.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail11.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail12.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail13.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail14.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail18.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail19.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail2.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail20.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail21.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail22.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail23.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail24.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail25.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail27.json +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail28.json +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail3.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail4.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail5.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail6.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail7.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail8.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/fail9.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass1.json +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass15.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass16.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass17.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass2.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass26.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/fixtures/pass3.json +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/setup_variant.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json.rb +553 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_addition.rb +196 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_encoding.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_fixtures.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_generate.rb +337 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_generic_object.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_string_matching.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tests/test_json_unicode.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tools/fuzz.rb +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/json-1.8.3/tools/server.rb +62 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/.autotest +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/.gemtest +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/.gitignore +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/.hoerc +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/Contributing.rdoc +172 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/History-Types.rdoc +370 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/History.rdoc +553 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/Licence.rdoc +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/Manifest.txt +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/README.rdoc +216 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/Rakefile +187 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime-types.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.content_type.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.docs.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.encoding.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.friendly.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.obsolete.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.references.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.registered.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.signature.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.system.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.use_instead.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/data/mime.xrefs.column +1924 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/type/columnar.rb +112 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/type.rb +832 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/cache.rb +80 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/columnar.rb +160 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/deprecations.rb +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/loader.rb +280 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/loader_path.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types/logger.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime/types.rb +332 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/lib/mime-types.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/apache_mime_types.rb +108 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/benchmarks/load.rb +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/benchmarks/load_allocations.rb +83 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/benchmarks/object_counts.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/convert/columnar.rb +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/convert.rb +158 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/support/iana_registry.rb +170 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/bad-fixtures/malformed +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/fixture/json.json +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/fixture/old-data +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/fixture/yaml.yaml +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/minitest_helper.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_type.rb +668 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_types.rb +121 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_types_cache.rb +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_types_class.rb +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_types_lazy.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/mime-types-2.6.2/test/test_mime_types_loader.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/LICENSE.md +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/Readme.md +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/changelog.txt +87 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/default_only.netrc +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/login.netrc +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/newlineless.netrc +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/password.netrc +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/permissive.netrc +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/sample.netrc +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/sample_multi.netrc +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/sample_multi_with_default.netrc +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/data/sample_with_default.netrc +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/lib/netrc.rb +243 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/test/test_lex.rb +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/test/test_netrc.rb +266 -0
- data/vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/test/test_parse.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/.autotest +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/.gemtest +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/.rubocop.yml +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/.togglerc +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/CONTRIBUTING.rdoc +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/History.rdoc +651 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/Manifest.txt +166 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/README.rdoc +140 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/Rakefile +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/bin/rake +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/glossary.rdoc +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/jamis.rb +591 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/rake.1 +141 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/rakefile.rdoc +653 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.4.14.rdoc +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.4.15.rdoc +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.5.0.rdoc +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.5.3.rdoc +78 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.5.4.rdoc +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.6.0.rdoc +141 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.7.0.rdoc +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.7.1.rdoc +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.7.2.rdoc +121 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.7.3.rdoc +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.0.rdoc +114 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.2.rdoc +165 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.3.rdoc +112 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.4.rdoc +147 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.5.rdoc +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.6.rdoc +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.8.7.rdoc +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.0.rdoc +112 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.1.rdoc +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.2.rdoc +49 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.3.rdoc +102 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.4.rdoc +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.5.rdoc +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-0.9.6.rdoc +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-10.0.0.rdoc +178 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-10.0.1.rdoc +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-10.0.2.rdoc +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-10.0.3.rdoc +191 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/doc/release_notes/rake-10.1.0.rdoc +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/alt_system.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/application.rb +790 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/backtrace.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/clean.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/cloneable.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/.document +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/compositepublisher.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/ftptools.rb +137 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/publisher.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/sshpublisher.rb +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/contrib/sys.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/cpu_counter.rb +125 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/default_loader.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/dsl_definition.rb +201 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/early_time.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ext/core.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ext/module.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ext/pathname.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ext/string.rb +173 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ext/time.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/file_creation_task.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/file_list.rb +428 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/file_task.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/file_utils.rb +128 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/file_utils_ext.rb +144 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/gempackagetask.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/invocation_chain.rb +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/invocation_exception_mixin.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/late_time.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/linked_list.rb +103 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/loaders/makefile.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/multi_task.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/packagetask.rb +199 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/pathmap.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/phony.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/private_reader.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/promise.rb +99 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/pseudo_status.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/rake_module.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/rake_test_loader.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/rdoctask.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/ruby182_test_unit_fix.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/runtest.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/scope.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/task.rb +383 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/task_argument_error.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/task_arguments.rb +98 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/task_manager.rb +310 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/tasklib.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/testtask.rb +212 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/thread_history_display.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/thread_pool.rb +164 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/trace_output.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/version.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake/win32.rb +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/lib/rake.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/rakelib/publish.rake +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/rakelib/test_times.rake +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/file_creation.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/helper.rb +130 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/support/rakefile_definitions.rb +478 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/support/ruby_runner.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_private_reader.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_application.rb +643 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_application_options.rb +466 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_backtrace.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_clean.rb +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_cpu_counter.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_definitions.rb +84 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_directory_task.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_dsl.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_early_time.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_extension.rb +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_file_creation_task.rb +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_file_list.rb +655 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_file_list_path_map.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_file_task.rb +197 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_file_utils.rb +309 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_ftp_file.rb +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_functional.rb +482 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_invocation_chain.rb +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_late_time.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_linked_list.rb +84 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_makefile_loader.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_multi_task.rb +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_name_space.rb +57 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_package_task.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_path_map.rb +168 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_path_map_explode.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_path_map_partial.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_pathname_extensions.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_pseudo_status.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_rake_test_loader.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_reduce_compat.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_require.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_rules.rb +388 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_scope.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task.rb +393 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_argument_parsing.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_arguments.rb +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_lib.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_manager.rb +178 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_task_with_arguments.rb +172 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_test_task.rb +146 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_thread_pool.rb +145 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_top_level_functions.rb +71 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_rake_win32.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_thread_history_display.rb +101 -0
- data/vendor/bundle/ruby/2.0.0/gems/rake-10.4.2/test/test_trace_output.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/.gitignore +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/.rspec +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/.travis.yml +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/AUTHORS +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/Gemfile +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/LICENSE +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/README.rdoc +324 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/Rakefile +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/bin/restclient +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/history.md +196 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/rest-client.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/rest_client.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/abstract_response.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/exceptions.rb +203 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/payload.rb +238 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/platform.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/raw_response.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/request.rb +621 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/resource.rb +168 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/response.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/version.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/windows/root_certs.rb +105 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient/windows.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/lib/restclient.rb +165 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/rest-client.gemspec +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/rest-client.windows.gemspec +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_digicert/244b5494.0 +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_digicert/81b9768f.0 +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_digicert/README +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_digicert/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_verisign/415660c1.0 +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_verisign/7651b327.0 +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_verisign/README +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/capath_verisign/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/certs/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/certs/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/integration_spec.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/integration/request_spec.rb +104 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/spec_helper.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/abstract_response_spec.rb +88 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/exceptions_spec.rb +95 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/master_shake.jpg +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/payload_spec.rb +245 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/raw_response_spec.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/request2_spec.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/request_spec.rb +917 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/resource_spec.rb +130 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/response_spec.rb +175 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/restclient_spec.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rest-client-1.8.0/spec/unit/windows/root_certs_spec.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-3.2.0/License.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-3.2.0/README.md +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-3.2.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-3.2.0/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/.yardopts +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/Changelog.md +1762 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/License.txt +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/README.md +252 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/exe/rspec +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/autorun.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/backport_random.rb +339 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/backtrace_formatter.rb +66 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/configuration.rb +1678 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/configuration_options.rb +180 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/drb.rb +111 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/dsl.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/example.rb +538 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb +768 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/filter_manager.rb +216 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/flat_map.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/base_text_formatter.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/deprecation_formatter.rb +224 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/documentation_formatter.rb +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/helpers.rb +89 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/html_formatter.rb +154 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/html_printer.rb +419 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/json_formatter.rb +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/protocol.rb +172 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters/snippet_extractor.rb +111 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/formatters.rb +244 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/hooks.rb +632 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/memoized_helpers.rb +472 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/metadata.rb +476 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/metadata_filter.rb +222 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/notifications.rb +603 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/option_parser.rb +228 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/ordering.rb +155 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/project_initializer/.rspec +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/project_initializer/spec/spec_helper.rb +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/rake_task.rb +172 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/reporter.rb +172 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb +155 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/shared_example_group.rb +208 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core/world.rb +167 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-3.2.3/lib/rspec/core.rb +189 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/.yardopts +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/Changelog.md +890 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/License.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/README.md +289 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/configuration.rb +147 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/expectation_target.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/fail_with.rb +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/minitest_integration.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/expectations.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/all.rb +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/base_matcher.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/be.rb +273 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/change.rb +337 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/compound.rb +293 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/contain_exactly.rb +249 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/eq.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/has.rb +101 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/have_attributes.rb +113 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/include.rb +105 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/match.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/operators.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/output.rb +193 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/raise_error.rb +174 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/respond_to.rb +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/satisfy.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/start_or_end_with.rb +92 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in/yield.rb +416 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/composable.rb +183 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/dsl.rb +440 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/generated_descriptions.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/matcher_delegator.rb +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers/pretty.rb +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-3.2.1/lib/rspec/matchers.rb +955 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/.yardopts +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/Changelog.md +893 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/License.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/README.md +430 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/message_chains.rb +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/recorder.rb +267 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/any_instance.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/configuration.rb +187 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/error_generator.rb +310 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/example_methods.rb +424 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/instance_method_stasher.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/matchers/have_received.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/matchers/receive.rb +130 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/message_chain.rb +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/message_expectation.rb +714 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/method_double.rb +283 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/method_reference.rb +155 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/mutate_const.rb +335 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/proxy.rb +431 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/space.rb +221 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/targets.rb +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/test_double.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/verifying_double.rb +134 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/verifying_message_expecation.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/verifying_proxy.rb +173 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-3.2.1/lib/rspec/mocks.rb +126 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/Changelog.md +105 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/README.md +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/directory_maker.rb +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/encoded_string.rb +148 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/method_signature_verifier.rb +273 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/ruby_features.rb +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/deprecation_helpers.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/in_sub_process.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/prevent_load_time_warnings.rb +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/shell_out.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/spec.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/version_checker.rb +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-support-3.2.2/lib/rspec/support.rb +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/.gitignore +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/.rspec +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/.rubocop.yml +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/.travis.yml +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/.yardopts +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/CHANGELOG.md +354 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/CONTRIBUTING.md +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/Gemfile +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/README.md +637 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/Rakefile +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/cucumber.yml +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/doc/alternate-formatters.md +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/doc/commercial-services.md +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/doc/editor-integration.md +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_autoload.feature +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_command_name.feature +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_coverage_dir.feature +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_deactivate_merging.feature +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_formatters.feature +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_merge_timeout.feature +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_nocov_token.feature +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_profiles.feature +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_project_name.feature +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/config_styles.feature +121 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/cucumber_basic.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/maximum_coverage_drop.feature +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/merging_test_unit_and_rspec.feature +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/minimum_coverage.feature +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/refuse_coverage_drop.feature +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_basic.feature +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_fails_on_initialization.feature +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_groups_and_filters_basic.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_groups_and_filters_complex.feature +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_groups_using_filter_class.feature +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/rspec_without_simplecov.feature +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/skipping_code_blocks_manually.feature +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/step_definitions/html_steps.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/step_definitions/simplecov_steps.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/step_definitions/transformers.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/step_definitions/web_steps.rb +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/support/env.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/test_unit_basic.feature +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/test_unit_groups_and_filters_basic.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/test_unit_groups_and_filters_complex.feature +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/test_unit_groups_using_filter_class.feature +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/test_unit_without_simplecov.feature +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/features/unicode_compatiblity.feature +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/command_guesser.rb +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/configuration.rb +272 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/defaults.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/exit_codes.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/file_list.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/filter.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/formatter/multi_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/formatter/simple_formatter.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/formatter.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/last_run.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/merge_helpers.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/no_defaults.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/profiles.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/railtie.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/railties/tasks.rake +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/result.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/result_merger.rb +88 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/source_file.rb +187 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/version.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov.rb +154 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/simplecov.gemspec +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/Gemfile +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/Rakefile +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/cucumber.yml +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/features/step_definitions/my_steps.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/features/support/env.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/features/test_stuff.feature +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/lib/faked_project/framework_specific.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/lib/faked_project/meta_magic.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/lib/faked_project/some_class.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/lib/faked_project.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/spec/faked_spec.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/spec/forking_spec.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/spec/meta_magic_spec.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/spec/some_class_spec.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/spec/spec_helper.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/test/faked_test.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/test/meta_magic_test.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/test/some_class_test.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/faked_project/test/test_helper.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/app/controllers/sample_controller.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/app/models/user.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/deleted_source_sample.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/frameworks/rspec_bad.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/frameworks/rspec_good.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/frameworks/testunit_bad.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/frameworks/testunit_good.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/iso-8859.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/resultset1.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/resultset2.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/sample.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/fixtures/utf-8.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/helper.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/shoulda_macros.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_1_8_fallbacks.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_command_guesser.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_deleted_source.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_file_list.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_filters.rb +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_merge_helpers.rb +112 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_result.rb +175 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_return_codes.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_source_file.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/test/test_source_file_line.rb +106 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/.gitignore +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/.rubocop.yml +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/.travis.yml +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/Gemfile +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/Guardfile +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/LICENSE +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/README.md +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/Rakefile +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/application.js +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/libraries/jquery-1.6.2.min.js +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/plugins/highlight.pack.js +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/plugins/jquery.colorbox.js +1090 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/plugins/jquery.dataTables.min.js +152 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/plugins/jquery.timeago.js +141 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/javascripts/plugins/jquery.url.js +174 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/application.css +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/plugins/highlight.css +129 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/plugins/jquery-ui-1.8.4.custom.css +295 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/plugins/jquery.colorbox.css +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/reset.css +103 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/assets/stylesheets/screen.css.sass +220 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/lib/simplecov-html/version.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/lib/simplecov-html.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/application.css +799 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/application.js +1707 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/colorbox/border.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/colorbox/controls.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/colorbox/loading.gif +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/colorbox/loading_background.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/favicon_green.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/favicon_red.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/favicon_yellow.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/loading.gif +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/magnify.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/public/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/simplecov-html.gemspec +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/test/helper.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/test/test_simple_cov-html.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/views/file_list.erb +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/views/layout.erb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/simplecov-html-0.10.0/views/source_file.erb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/.gitignore +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/.travis.yml +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/CHANGES +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/COPYING +340 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/Gemfile +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/README.rdoc +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/Rakefile +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/VERSION +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/bin/cdiff +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/bin/colortab +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/bin/decolor +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/bin/term_display +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/bin/term_mandel +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/ColorTest.gif +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/Mona_Lisa.jpg +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/Stilleben.jpg +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/example.rb +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/lambda-red-plain.ppm +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/lambda-red.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/lambda-red.ppm +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/pacman.jpg +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/smiley.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/examples/wool.jpg +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/.keep +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/attribute.rb +143 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/ppm_reader.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/rgb_color_metrics.rb +161 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/rgb_triple.rb +121 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor/version.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/lib/term/ansicolor.rb +247 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/term-ansicolor.gemspec +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/ansicolor_test.rb +133 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/attribute_test.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/ppm_reader_test.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/rgb_color_metrics_test.rb +100 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/rgb_triple_test.rb +71 -0
- data/vendor/bundle/ruby/2.0.0/gems/term-ansicolor-1.3.2/tests/test_helper.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/CHANGELOG.md +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/LICENSE.md +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/README.md +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/Thorfile +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/bin/thor +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/create_file.rb +103 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/create_link.rb +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/directory.rb +118 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/empty_directory.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/file_manipulation.rb +316 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions/inject_into_file.rb +107 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/actions.rb +319 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/base.rb +656 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/command.rb +133 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb +98 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/error.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/group.rb +281 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/invocation.rb +178 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/line_editor/basic.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/line_editor/readline.rb +88 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/line_editor.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/parser/argument.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/parser/arguments.rb +175 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/parser/option.rb +125 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/parser/options.rb +218 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/parser.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/rake_compat.rb +71 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/runner.rb +322 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/shell/basic.rb +421 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/shell/color.rb +149 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/shell/html.rb +126 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/shell.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/util.rb +267 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor/version.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/lib/thor.rb +484 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/create_file_spec.rb +168 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/create_link_spec.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/directory_spec.rb +169 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/empty_directory_spec.rb +129 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/file_manipulation_spec.rb +392 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions/inject_into_file_spec.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/actions_spec.rb +331 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/base_spec.rb +298 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/command_spec.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/core_ext/ordered_hash_spec.rb +115 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/exit_condition_spec.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/application.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/app{1}/README +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/bundle/execute.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/bundle/main.thor +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/command.thor +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/%file_name%.rb.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/COMMENTER +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/README +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/block_helper.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/config.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/config.yaml.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/enum.thor +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/group.thor +128 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/invoke.thor +131 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/path with spaces +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/preserve/script.sh +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/script.thor +220 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/fixtures/subcommand.thor +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/group_spec.rb +222 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/helper.rb +80 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/invocation_spec.rb +120 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/line_editor/basic_spec.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/line_editor/readline_spec.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/line_editor_spec.rb +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/parser/argument_spec.rb +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/parser/arguments_spec.rb +66 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/parser/option_spec.rb +210 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/parser/options_spec.rb +414 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/quality_spec.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/rake_compat_spec.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/register_spec.rb +227 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/runner_spec.rb +246 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/application.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/app{1}/README +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/bundle/execute.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/bundle/main.thor +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/command.thor +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/%file_name%.rb.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/COMMENTER +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/README +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/block_helper.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/config.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/config.yaml.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/doc/excluding/%file_name%.rb.tt +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/enum.thor +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/group.thor +128 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/invoke.thor +131 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/path with spaces +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/preserve/script.sh +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/script.thor +220 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/sandbox/subcommand.thor +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/shell/basic_spec.rb +337 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/shell/color_spec.rb +119 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/shell/html_spec.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/shell_spec.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/subcommand_spec.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/thor_spec.rb +505 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/spec/util_spec.rb +196 -0
- data/vendor/bundle/ruby/2.0.0/gems/thor-0.19.1/thor.gemspec +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/.gitignore +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/.travis.yml +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/COPYING +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/Gemfile +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/README.md +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/Rakefile +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/TODO +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/VERSION +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/add_one.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/add_one.stm +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/bb3.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/bb3.stm +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/concatenate_compare.mtm +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/concatenate_compare.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/length_difference.mtm +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/length_difference.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/let.rb +62 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/mail.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/minsky.rb +145 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/multiply.reg +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/null_pattern.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/ones_difference-mtm.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/ones_difference-stm.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/ones_difference.mtm +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/ones_difference.stm +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/prefix-equals-suffix-reversed-with-infix.png +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/prefix-equals-suffix-reversed-with-infix.stm +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/recipe.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/recipe2.rb +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/recipe_common.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/subtract.reg +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/turing-graph.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/examples/turing.rb +310 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/dslkit/polite.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/dslkit/rude.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/dslkit.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/spruz.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/alias.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/annotate.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/ask_and_send.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/attempt.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/bijection.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/case_predicate.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/complete.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/concern.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/count_by.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/date_dummy.rb +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/date_time_dummy.rb +49 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/deep_const_get.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/deep_dup.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/dslkit.rb +617 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/extract_last_argument_options.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/file_binary.rb +83 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/find.rb +138 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/generator.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/go.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/hash_symbolize_keys_recursive.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/hash_union.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/if_predicate.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/implement.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/limited.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/lines_file.rb +123 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/memoize.rb +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/method_description.rb +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/minimize.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/module_group.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/named_set.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/null.rb +99 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/once.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/p.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/partial_application.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/proc_compose.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/proc_prelude.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/range_plus.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/require_maybe.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/responding.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/rotate.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/secure_write.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/shuffle.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/string_byte_order_mark.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/string_camelize.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/string_underscore.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/string_version.rb +99 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/subhash.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/terminal.rb +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/thread_local.rb +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/time_dummy.rb +57 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/to.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/to_proc.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/token.rb +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/uniq_by.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/version.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/write.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/annotate.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/ask_and_send.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/attempt.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/blank.rb +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/case_predicate.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/complete.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/concern.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/count_by.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/date_dummy.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/date_time_dummy.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/deep_const_get.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/deep_dup.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/dslkit.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/extract_last_argument_options.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/file_binary.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/full.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/hash_symbolize_keys_recursive.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/hash_union.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/if_predicate.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/implement.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/irb.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/method_description.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/named.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/null.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/p.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/partial_application.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/proc_compose.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/proc_prelude.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/range_plus.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/require_maybe.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/responding.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/rotate.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/secure_write.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/sexy_singleton.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/shuffle.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/string.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/string_byte_order_mark.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/string_camelize.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/string_underscore.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/string_version.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/subhash.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/symbol_to_proc.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/time_dummy.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/time_freezer.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/to.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/uniq_by.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt/write.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/xt.rb +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins.rb +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/annotate_test.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/ask_and_send_test.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/attempt_test.rb +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/bijection_test.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/blank_full_test.rb +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/case_predicate_test.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/concern_test.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/count_by_test.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/date_dummy_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/date_time_dummy_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/deep_const_get_test.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/deep_dup_test.rb +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/delegate_test.rb +49 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/dslkit_test.rb +284 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/dynamic_scope_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/extract_last_argument_options_test.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/file_binary_test.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/find_test.rb +115 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/from_module_test.rb +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/generator_test.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/go_test.rb +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/hash_symbolize_keys_recursive_test.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/hash_union_test.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/if_predicate_test.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/implement_test.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/limited_test.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/lines_file_test.rb +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/memoize_test.rb +115 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/method_description_test.rb +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/minimize_test.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/module_group_test.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/named_set_test.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/named_test.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/null_test.rb +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/p_test.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/partial_application_test.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/proc_compose_test.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/proc_prelude_test.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/range_plus_test.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/require_maybe_test.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/responding_test.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/rotate_test.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/scope_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/secure_write_test.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/sexy_singleton_test.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/shuffle_test.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/string_byte_order_mark_test.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/string_camelize_test.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/string_underscore_test.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/string_version_test.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/subhash_test.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/test_helper.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/time_dummy_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/time_freezer_test.rb +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/to_test.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/token_test.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tests/uniq_by_test.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/tins.gemspec +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/.gitignore +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/.travis.yml +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/CHANGELOG.md +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/Gemfile +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/LICENSE +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/README.md +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/Rakefile +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/lib/unf/normalizer.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/lib/unf/normalizer_cruby.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/lib/unf/normalizer_jruby.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/lib/unf/version.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/lib/unf.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/test/helper.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/test/normalization-test.txt +108816 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/test/test_unf.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf-0.1.4/unf.gemspec +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/.document +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/.gitignore +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/.travis.yml +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/CHANGELOG.md +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/Gemfile +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/README.md +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/Rakefile +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/.RUBYARCHDIR.time +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/extconf.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/mkmf.log +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/normalizer.hh +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/table.hh +13542 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/trie/char_stream.hh +150 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/trie/node.hh +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/trie/searcher.hh +194 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf/util.hh +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf.cc +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf.o +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/ext/unf_ext/unf_ext.bundle +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/lib/unf_ext/version.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/lib/unf_ext.bundle +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/lib/unf_ext.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/test/helper.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/test/normalization-test.txt +108816 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/test/test_unf_ext.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/unf_ext-0.0.7.1/unf_ext.gemspec +38 -0
- data/vendor/bundle/ruby/2.0.0/specifications/coveralls-0.8.3.gemspec +47 -0
- data/vendor/bundle/ruby/2.0.0/specifications/diff-lcs-1.2.5.gemspec +65 -0
- data/vendor/bundle/ruby/2.0.0/specifications/docile-1.1.5.gemspec +45 -0
- data/vendor/bundle/ruby/2.0.0/specifications/domain_name-0.5.25.gemspec +46 -0
- data/vendor/bundle/ruby/2.0.0/specifications/gemcutter-0.7.1.gemspec +44 -0
- data/vendor/bundle/ruby/2.0.0/specifications/http-cookie-1.0.2.gemspec +49 -0
- data/vendor/bundle/ruby/2.0.0/specifications/json-1.8.3.gemspec +36 -0
- data/vendor/bundle/ruby/2.0.0/specifications/mime-types-2.6.2.gemspec +69 -0
- data/vendor/bundle/ruby/2.0.0/specifications/netrc-0.10.3.gemspec +29 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rake-10.4.2.gemspec +40 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rest-client-1.8.0.gemspec +54 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-3.2.0.gemspec +40 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-core-3.2.3.gemspec +63 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-expectations-3.2.1.gemspec +48 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-mocks-3.2.1.gemspec +48 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-support-3.2.2.gemspec +36 -0
- data/vendor/bundle/ruby/2.0.0/specifications/simplecov-0.10.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.0.0/specifications/simplecov-html-0.10.0.gemspec +30 -0
- data/vendor/bundle/ruby/2.0.0/specifications/term-ansicolor-1.3.2.gemspec +42 -0
- data/vendor/bundle/ruby/2.0.0/specifications/thor-0.19.1.gemspec +31 -0
- data/vendor/bundle/ruby/2.0.0/specifications/tins-1.6.0.gemspec +35 -0
- data/vendor/bundle/ruby/2.0.0/specifications/unf-0.1.4.gemspec +43 -0
- data/vendor/bundle/ruby/2.0.0/specifications/unf_ext-0.0.7.1.gemspec +44 -0
- metadata +1485 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe Coveralls::Output do
|
|
4
|
+
it "defaults the IO to $stdout" do
|
|
5
|
+
old_stdout = $stdout
|
|
6
|
+
out = StringIO.new
|
|
7
|
+
$stdout = out
|
|
8
|
+
Coveralls::Output.puts "this is a test"
|
|
9
|
+
expect(out.string).to eq "this is a test\n"
|
|
10
|
+
$stdout = old_stdout
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
it "accepts an IO injection" do
|
|
14
|
+
out = StringIO.new
|
|
15
|
+
Coveralls::Output.output = out
|
|
16
|
+
Coveralls::Output.puts "this is a test"
|
|
17
|
+
expect(out.string).to eq "this is a test\n"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
describe ".puts" do
|
|
21
|
+
it "accepts an IO injection" do
|
|
22
|
+
out = StringIO.new
|
|
23
|
+
Coveralls::Output.puts "this is a test", :output => out
|
|
24
|
+
expect(out.string).to eq "this is a test\n"
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
describe ".print" do
|
|
29
|
+
it "accepts an IO injection" do
|
|
30
|
+
out = StringIO.new
|
|
31
|
+
Coveralls::Output.print "this is a test", :output => out
|
|
32
|
+
expect(out.string).to eq "this is a test"
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'when silenced' do
|
|
37
|
+
before do
|
|
38
|
+
@original_stdout = $stdout
|
|
39
|
+
@output = StringIO.new
|
|
40
|
+
Coveralls::Output.silent = true
|
|
41
|
+
$stdout = @output
|
|
42
|
+
end
|
|
43
|
+
it "should not puts" do
|
|
44
|
+
Coveralls::Output.puts "foo"
|
|
45
|
+
@output.rewind
|
|
46
|
+
@output.read.should == ""
|
|
47
|
+
end
|
|
48
|
+
it "should not print" do
|
|
49
|
+
Coveralls::Output.print "foo"
|
|
50
|
+
@output.rewind
|
|
51
|
+
@output.read.should == ""
|
|
52
|
+
end
|
|
53
|
+
after do
|
|
54
|
+
$stdout = @original_stdout
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe '.format' do
|
|
59
|
+
it "accepts a color argument" do
|
|
60
|
+
require 'term/ansicolor'
|
|
61
|
+
string = 'Hello'
|
|
62
|
+
ansi_color_string = Term::ANSIColor.red(string)
|
|
63
|
+
Coveralls::Output.format(string, :color => 'red').should eq(ansi_color_string)
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
it "also accepts no color arguments" do
|
|
67
|
+
unformatted_string = "Hi Doggie!"
|
|
68
|
+
Coveralls::Output.format(unformatted_string).should eq(unformatted_string)
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
it "rejects formats unrecognized by Term::ANSIColor" do
|
|
72
|
+
string = 'Hi dog!'
|
|
73
|
+
Coveralls::Output.format(string, :color => "not_a_real_color").should eq(string)
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
it "accepts more than 1 color argument" do
|
|
77
|
+
string = 'Hi dog!'
|
|
78
|
+
multi_formatted_string = Term::ANSIColor.red{ Term::ANSIColor.underline(string) }
|
|
79
|
+
Coveralls::Output.format(string, :color => 'red underline').should eq(multi_formatted_string)
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
context "no color" do
|
|
83
|
+
before { Coveralls::Output.no_color = true }
|
|
84
|
+
|
|
85
|
+
it "does not add color to string" do
|
|
86
|
+
unformatted_string = "Hi Doggie!"
|
|
87
|
+
Coveralls::Output.format(unformatted_string, :color => 'red').
|
|
88
|
+
should eq(unformatted_string)
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
end
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe Coveralls::SimpleCov::Formatter do
|
|
4
|
+
|
|
5
|
+
before do
|
|
6
|
+
stub_api_post
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def source_fixture(filename)
|
|
10
|
+
File.expand_path( File.join( File.dirname( __FILE__ ), 'fixtures', filename ) )
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
let(:result) {
|
|
14
|
+
|
|
15
|
+
SimpleCov::Result.new({
|
|
16
|
+
source_fixture( 'sample.rb' ) => [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil],
|
|
17
|
+
source_fixture( 'app/models/user.rb' ) => [nil, 1, 1, 1, 1, 0, 1, 0, nil, nil],
|
|
18
|
+
source_fixture( 'app/models/robot.rb' ) => [1, 1, 1, 1, nil, nil, 1, 0, nil, nil],
|
|
19
|
+
source_fixture( 'app/models/house.rb' ) => [nil, nil, nil, nil, nil, nil, nil, nil, nil, nil],
|
|
20
|
+
source_fixture( 'app/models/airplane.rb' ) => [0, 0, 0, 0, 0],
|
|
21
|
+
source_fixture( 'app/models/dog.rb' ) => [1, 1, 1, 1, 1],
|
|
22
|
+
source_fixture( 'app/controllers/sample.rb' ) => [nil, 1, 1, 1, nil, nil, 0, 0, nil, nil]
|
|
23
|
+
})
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
describe "#format" do
|
|
27
|
+
context "should run" do
|
|
28
|
+
before do
|
|
29
|
+
Coveralls.testing = true
|
|
30
|
+
Coveralls.noisy = false
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "posts json", :if => RUBY_VERSION >= "1.9" do
|
|
34
|
+
result.files.should_not be_empty
|
|
35
|
+
silence do
|
|
36
|
+
Coveralls::SimpleCov::Formatter.new.format(result).should be_truthy
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
context "should not run, noisy" do
|
|
42
|
+
it "only displays result" do
|
|
43
|
+
silence do
|
|
44
|
+
Coveralls::SimpleCov::Formatter.new.display_result(result).should be_truthy
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
context "no files" do
|
|
50
|
+
let(:result) { SimpleCov::Result.new({}) }
|
|
51
|
+
it "shows note that no files have been covered" do
|
|
52
|
+
Coveralls.noisy = true
|
|
53
|
+
Coveralls.testing = false
|
|
54
|
+
|
|
55
|
+
silence do
|
|
56
|
+
expect do
|
|
57
|
+
Coveralls::SimpleCov::Formatter.new.format(result)
|
|
58
|
+
end.not_to raise_error
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
context "with api error" do
|
|
64
|
+
it "rescues" do
|
|
65
|
+
e = RestClient::ResourceNotFound.new double('HTTP Response', :code => '502')
|
|
66
|
+
silence do
|
|
67
|
+
Coveralls::SimpleCov::Formatter.new.display_error(e).should be_falsy
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
end
|
|
73
|
+
end
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
require 'simplecov'
|
|
2
|
+
require 'webmock'
|
|
3
|
+
require 'vcr'
|
|
4
|
+
|
|
5
|
+
class InceptionFormatter
|
|
6
|
+
def format(result)
|
|
7
|
+
Coveralls::SimpleCov::Formatter.new.format(result)
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def setup_formatter
|
|
12
|
+
SimpleCov.formatter = if ENV['TRAVIS'] || ENV['COVERALLS_REPO_TOKEN']
|
|
13
|
+
InceptionFormatter
|
|
14
|
+
else
|
|
15
|
+
SimpleCov::Formatter::HTMLFormatter
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# SimpleCov.start 'test_frameworks'
|
|
19
|
+
SimpleCov.start do
|
|
20
|
+
add_filter do |source_file|
|
|
21
|
+
source_file.filename =~ /spec/ && !(source_file.filename =~ /fixture/)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
setup_formatter
|
|
27
|
+
|
|
28
|
+
require 'coveralls'
|
|
29
|
+
|
|
30
|
+
VCR.configure do |c|
|
|
31
|
+
c.cassette_library_dir = 'fixtures/vcr_cassettes'
|
|
32
|
+
c.hook_into :webmock
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
RSpec.configure do |config|
|
|
36
|
+
config.run_all_when_everything_filtered = true
|
|
37
|
+
config.filter_run :focus
|
|
38
|
+
config.include WebMock::API
|
|
39
|
+
config.expect_with :rspec do |c|
|
|
40
|
+
c.syntax = [:should, :expect]
|
|
41
|
+
end
|
|
42
|
+
config.mock_with :rspec do |c|
|
|
43
|
+
c.syntax = [:should, :expect]
|
|
44
|
+
end
|
|
45
|
+
config.after(:suite) do
|
|
46
|
+
WebMock.disable!
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def stub_api_post
|
|
51
|
+
body = "{\"message\":\"\",\"url\":\"\"}"
|
|
52
|
+
stub_request(:post, Coveralls::API::API_BASE+"/jobs").with(
|
|
53
|
+
:body => /.+/,
|
|
54
|
+
:headers => {
|
|
55
|
+
'Accept'=>'*/*; q=0.5, application/xml',
|
|
56
|
+
'Accept-Encoding'=>'gzip, deflate',
|
|
57
|
+
'Content-Length'=>/.+/,
|
|
58
|
+
'Content-Type'=>/.+/,
|
|
59
|
+
'User-Agent'=>'Ruby'
|
|
60
|
+
}
|
|
61
|
+
).to_return(:status => 200, :body => body, :headers => {})
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def silence
|
|
65
|
+
return yield if ENV['silence'] == 'false'
|
|
66
|
+
|
|
67
|
+
silence_stream(STDOUT) do
|
|
68
|
+
yield
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
module Kernel
|
|
73
|
+
def silence_stream(stream)
|
|
74
|
+
old_stream = stream.dup
|
|
75
|
+
stream.reopen(RUBY_PLATFORM =~ /mswin/ ? 'NUL:' : '/dev/null')
|
|
76
|
+
stream.sync = true
|
|
77
|
+
yield
|
|
78
|
+
ensure
|
|
79
|
+
stream.reopen(old_stream)
|
|
80
|
+
end
|
|
81
|
+
end
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
after_script:
|
|
3
|
+
- rake travis:after -t
|
|
4
|
+
before_script:
|
|
5
|
+
- gem install hoe-travis --no-rdoc --no-ri
|
|
6
|
+
- rake travis:before -t
|
|
7
|
+
language: ruby
|
|
8
|
+
notifications:
|
|
9
|
+
email: true
|
|
10
|
+
rvm:
|
|
11
|
+
- 2.0.0
|
|
12
|
+
- 1.9.3
|
|
13
|
+
- 1.9.2
|
|
14
|
+
- ruby-head
|
|
15
|
+
- 1.8.7
|
|
16
|
+
- jruby-19mode
|
|
17
|
+
- jruby-head
|
|
18
|
+
- jruby-18mode
|
|
19
|
+
- rbx-19mode
|
|
20
|
+
- rbx-18mode
|
|
21
|
+
- ree
|
|
22
|
+
script: rake travis
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
== Contributing
|
|
2
|
+
|
|
3
|
+
I value any contribution to Diff::LCS you can provide: a bug report, a feature
|
|
4
|
+
request, or code contributions.
|
|
5
|
+
|
|
6
|
+
Code contributions to Diff::LCS are especially <del>welcome</del>encouraged.
|
|
7
|
+
Because Diff::LCS is a complex codebase, there are a few guidelines:
|
|
8
|
+
|
|
9
|
+
* Changes <strong>will not</strong> be accepted without tests.
|
|
10
|
+
* The test suite is written with RSpec.‡
|
|
11
|
+
* Match my coding style.
|
|
12
|
+
* Use a thoughtfully-named topic branch that contains your change. Rebase your
|
|
13
|
+
commits into logical chunks as necessary.
|
|
14
|
+
* Use {quality commit messages}[http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html].
|
|
15
|
+
* Do not change the version number; when your patch is accepted and a release
|
|
16
|
+
is made, the version will be updated at that point.
|
|
17
|
+
* Submit a GitHub pull request with your changes.
|
|
18
|
+
* New features require new documentation.
|
|
19
|
+
|
|
20
|
+
=== Test Dependencies
|
|
21
|
+
|
|
22
|
+
To run the test suite, you will need to install the development dependencies
|
|
23
|
+
for Diff::LCS. If you have Bundler, you can accomplish this easily:
|
|
24
|
+
|
|
25
|
+
$ bundle install
|
|
26
|
+
|
|
27
|
+
Diff::LCS uses Ryan Davis’s excellent {Hoe}[https://github.com/seattlerb/hoe]
|
|
28
|
+
to manage the release process, and it adds a number of rake tasks. You will
|
|
29
|
+
mostly be interested in:
|
|
30
|
+
|
|
31
|
+
$ rake
|
|
32
|
+
|
|
33
|
+
which runs the tests the same way that:
|
|
34
|
+
|
|
35
|
+
$ rake spec
|
|
36
|
+
$ rake test
|
|
37
|
+
$ rake travis
|
|
38
|
+
|
|
39
|
+
will do.
|
|
40
|
+
|
|
41
|
+
=== Workflow
|
|
42
|
+
|
|
43
|
+
Here's the most direct way to get your work merged into the project:
|
|
44
|
+
|
|
45
|
+
* Fork the project.
|
|
46
|
+
* Clone down your fork (+git clone git://github.com/<username>/diff-lcs.git+).
|
|
47
|
+
* Create a topic branch to contain your change (+git checkout -b my\_awesome\_feature+).
|
|
48
|
+
* Hack away, add tests. Not necessarily in that order.
|
|
49
|
+
* Make sure everything still passes by running `rake`.
|
|
50
|
+
* If necessary, rebase your commits into logical chunks, without errors.
|
|
51
|
+
* Push the branch up (+git push origin my\_awesome\_feature+).
|
|
52
|
+
* Create a pull request against halostatue/diff-lcs and describe what your
|
|
53
|
+
change does and the why you think it should be merged.
|
|
54
|
+
|
|
55
|
+
=== Contributors
|
|
56
|
+
|
|
57
|
+
* Austin Ziegler created Diff::LCS.
|
|
58
|
+
|
|
59
|
+
Thanks to everyone else who has contributed to Diff::LCS:
|
|
60
|
+
|
|
61
|
+
* Kenichi Kamiya
|
|
62
|
+
* Michael Granger
|
|
63
|
+
* Vít Ondruch
|
|
64
|
+
* Jon Rowe
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# -*- ruby -*-
|
|
2
|
+
|
|
3
|
+
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
|
|
4
|
+
|
|
5
|
+
source "https://rubygems.org/"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
gem "rubyforge", ">=2.0.4", :group => [:development, :test]
|
|
9
|
+
gem "rdoc", "~>4.0", :group => [:development, :test]
|
|
10
|
+
gem "hoe-bundler", "~>1.2", :group => [:development, :test]
|
|
11
|
+
gem "hoe-doofus", "~>1.0", :group => [:development, :test]
|
|
12
|
+
gem "hoe-gemspec2", "~>1.1", :group => [:development, :test]
|
|
13
|
+
gem "hoe-git", "~>1.5", :group => [:development, :test]
|
|
14
|
+
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
|
15
|
+
gem "hoe-travis", "~>1.2", :group => [:development, :test]
|
|
16
|
+
gem "rake", "~>10.0", :group => [:development, :test]
|
|
17
|
+
gem "rspec", "~>2.0", :group => [:development, :test]
|
|
18
|
+
gem "hoe", "~>3.7", :group => [:development, :test]
|
|
19
|
+
|
|
20
|
+
# vim: syntax=ruby
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
== 1.2.5 / 2013-11-08
|
|
2
|
+
|
|
3
|
+
* Bugs fixed:
|
|
4
|
+
* Comparing arrays flattened them too far, especially with Diff::LCS.sdiff.
|
|
5
|
+
https://github.com/halostatue/diff-lcs/pull/23
|
|
6
|
+
|
|
7
|
+
== 1.2.4 / 2013-04-20
|
|
8
|
+
|
|
9
|
+
* Bugs fixed:
|
|
10
|
+
* A bug was introduced after 1.1.3 when pruning common sequences at the start
|
|
11
|
+
of comparison. Paul Kunysch (@pck) fixed this in pull request 18. Thanks!
|
|
12
|
+
https://github.com/halostatue/diff-lcs/pull/18
|
|
13
|
+
* The Rubinius (1.9 mode) bug in rubinius/rubinius#2268 has been fixed by the
|
|
14
|
+
Rubinius team two days after it was filed. Thanks for fixing this so quickly!
|
|
15
|
+
https://github.com/rubinius/rubinius/issues/2268
|
|
16
|
+
* Switching to Raggi's hoe-gemspec2 for gemspec generation.
|
|
17
|
+
|
|
18
|
+
== 1.2.3 / 2013-04-11
|
|
19
|
+
|
|
20
|
+
* Bugs Fixed:
|
|
21
|
+
* The new encoding detection for diff output generation (added in 1.2.2)
|
|
22
|
+
introduced a bug if the left side of the comparison was the empty set.
|
|
23
|
+
Originally found in rspec/rspec-expectations#238 and
|
|
24
|
+
rspec/rspec-expectations#239. Jon Rowe developed a reasonable heuristic
|
|
25
|
+
(left side, right side, empty string literal) to avoid this bug.
|
|
26
|
+
https://github.com/rspec/rspec-expectations/pull/238
|
|
27
|
+
https://github.com/rspec/rspec-expectations/pull/239
|
|
28
|
+
* There is a known issue with Rubinius in 1.9 mode reported in
|
|
29
|
+
rubinius/rubinius#2268 and demonstrated in the Travis CI builds. For all
|
|
30
|
+
other tested platforms, diff-lcs is considered stable. As soon as a suitably
|
|
31
|
+
small test-case can be created for the Rubinius team to examine, this will be
|
|
32
|
+
added to the Rubinius issue around this.
|
|
33
|
+
https://github.com/rubinius/rubinius/issues/2268
|
|
34
|
+
https://travis-ci.org/halostatue/diff-lcs/jobs/6241195
|
|
35
|
+
|
|
36
|
+
== 1.2.2 / 2013-03-30
|
|
37
|
+
|
|
38
|
+
* Bugs Fixed:
|
|
39
|
+
* Diff::LCS::Hunk could not properly generate a difference for comparison
|
|
40
|
+
sets that are not US-ASCII-compatible because of the use of literal regular
|
|
41
|
+
expressions and strings. Jon Rowe (JonRowe) found this in
|
|
42
|
+
rspec/rspec-expectations#219 and provided a first pass implementation in
|
|
43
|
+
diff-lcs#15. I've reworked it because of test failures in Rubinius when
|
|
44
|
+
running in Ruby 1.9 mode. This coerces the added values to the encoding of
|
|
45
|
+
the old dataset (as determined by the first piece of the old dataset).
|
|
46
|
+
https://github.com/rspec/rspec-expectations/issues/219
|
|
47
|
+
https://github.com/halostatue/diff-lcs/pull/15
|
|
48
|
+
* Adding Travis CI testing for Ruby 2.0.
|
|
49
|
+
|
|
50
|
+
== 1.2.1 / 2013-02-09
|
|
51
|
+
|
|
52
|
+
* Bugs Fixed:
|
|
53
|
+
* As seen in https://github.com/rspec/rspec-expectations/pull/200, the
|
|
54
|
+
release of Diff::LCS 1.2 introduced an unnecessary public API change to
|
|
55
|
+
Diff::LCS::Hunk (see the change at
|
|
56
|
+
https://github.com/rspec/rspec-expectations/commit/3d6fc82c for details).
|
|
57
|
+
The new method name (and behaviour) is more correct, but I should not have
|
|
58
|
+
renamed the function or should have at least provided an alias. This
|
|
59
|
+
release restores Diff::LCS::Hunk#unshift as an alias to
|
|
60
|
+
#merge. Note that the old #unshift behaviour was incorrect and will not be
|
|
61
|
+
restored.
|
|
62
|
+
|
|
63
|
+
== 1.2.0 / 2013-01-21
|
|
64
|
+
* Minor Enhancements:
|
|
65
|
+
* Added special case handling for Diff::LCS.patch so that it handles patches
|
|
66
|
+
that are empty or contain no changes.
|
|
67
|
+
* Added two new methods (#patch\_me and #unpatch\_me) to the includable
|
|
68
|
+
module.
|
|
69
|
+
* Bugs Fixed:
|
|
70
|
+
* Fixed issue #1 patch direction detection.
|
|
71
|
+
https://github.com/halostatue/diff-lcs/issues/1
|
|
72
|
+
* Resolved issue #2 by handling string[string.size, 1] properly (it returns
|
|
73
|
+
"" not nil). https://github.com/halostatue/diff-lcs/issues/2
|
|
74
|
+
* Michael Granger (ged) fixed an implementation error in Diff::LCS::Change
|
|
75
|
+
and added specs in pull request #8. Thanks!
|
|
76
|
+
https://github.com/halostatue/diff-lcs/issues/8
|
|
77
|
+
* Made the code auto-testable.
|
|
78
|
+
* Vít Ondruch (voxik) provided the latest version of the GPL2 license file in
|
|
79
|
+
pull request #10. Thanks! https://github.com/halostatue/diff-lcs/issues/10
|
|
80
|
+
* Fixed a documentation issue with the includable versions of #patch! and
|
|
81
|
+
#unpatch! where they implied that they would replace the original value.
|
|
82
|
+
Given that Diff::LCS.patch always returns a copy, the documentation was
|
|
83
|
+
incorrect and has been corrected. To provide the behaviour that was
|
|
84
|
+
originally documented, two new methods were added to provide this
|
|
85
|
+
behaviour. Found by scooter-dangle in issue #12. Thanks!
|
|
86
|
+
https://github.com/halostatue/diff-lcs/issues/12
|
|
87
|
+
* Code Style Changes:
|
|
88
|
+
* Removed trailing spaces.
|
|
89
|
+
* Calling class methods using '.' instead of '::'.
|
|
90
|
+
* Vít Ondruch (voxik) removed unnecessary shebangs in pull request #9.
|
|
91
|
+
Thanks! https://github.com/halostatue/diff-lcs/issues/9
|
|
92
|
+
* Kenichi Kamiya (kachick) removed some warnings of an unused variable in
|
|
93
|
+
lucky pull request #13. https://github.com/halostatue/diff-lcs/issues/13
|
|
94
|
+
Thanks!
|
|
95
|
+
* Embarked on a major refactoring to make the files a little more manageable
|
|
96
|
+
and understand the code on a deeper level.
|
|
97
|
+
* Adding to http://travis-ci.org.
|
|
98
|
+
|
|
99
|
+
== 1.1.3 / 2011-08-27
|
|
100
|
+
* Converted to 'hoe' for release.
|
|
101
|
+
* Converted tests to RSpec 2.
|
|
102
|
+
* Extracted the body of htmldiff into a class available from
|
|
103
|
+
diff/lcs/htmldiff.
|
|
104
|
+
* Migrated development and issue tracking to GitHub.
|
|
105
|
+
* Bugs fixed:
|
|
106
|
+
- Eliminated the explicit use of RubyGems in both bin/htmldiff and bin/ldiff.
|
|
107
|
+
Resolves issue 4 (https://github.com/halostatue/diff-lcs/issues/4).
|
|
108
|
+
- Eliminated Ruby warnings. Resolves issue 3
|
|
109
|
+
(https://github.com/halostatue/diff-lcs/issues/3).
|
|
110
|
+
|
|
111
|
+
== 1.1.2 / 2004-10-20
|
|
112
|
+
* Fixed a problem reported by Mauricio Fernandez in htmldiff.
|
|
113
|
+
|
|
114
|
+
== 1.1.1 / 2004-09-25
|
|
115
|
+
* Fixed bug #891:
|
|
116
|
+
http://rubyforge.org/tracker/?func=detail&atid=407&aid=891&group_id=84
|
|
117
|
+
* Fixed a problem with callback initialisation code (it assumed that all
|
|
118
|
+
callbacks passed as classes can be initialised; now, it rescues
|
|
119
|
+
NoMethodError in the event of private :new being called).
|
|
120
|
+
* Modified the non-initialisable callbacks to have a private #new method.
|
|
121
|
+
* Moved ldiff core code to Diff::LCS::Ldiff (diff/lcs/ldiff.rb).
|
|
122
|
+
|
|
123
|
+
== 1.1.0 / -
|
|
124
|
+
* Eliminated the need for Diff::LCS::Event and removed it.
|
|
125
|
+
* Added a contextual diff callback, Diff::LCS::ContextDiffCallback.
|
|
126
|
+
* Implemented patching/unpatching for standard Diff callback output formats
|
|
127
|
+
with both #diff and #sdiff.
|
|
128
|
+
* Extensive documentation changes.
|
|
129
|
+
|
|
130
|
+
== 1.0.4 / -
|
|
131
|
+
* Fixed a problem with bin/ldiff output, especially for unified format.
|
|
132
|
+
Newlines that should have been present weren't.
|
|
133
|
+
* Changed the .tar.gz installer to generate Windows batch files if ones do not
|
|
134
|
+
exist already. Removed the existing batch files as they didn't work.
|
|
135
|
+
|
|
136
|
+
== 1.0.3 / -
|
|
137
|
+
* Fixed a problem with #traverse\_sequences where the first difference from the
|
|
138
|
+
left sequence might not be appropriately captured.
|
|
139
|
+
|
|
140
|
+
== 1.0.2 / -
|
|
141
|
+
* Fixed an issue with ldiff not working because actions were changed from
|
|
142
|
+
symbols to strings.
|
|
143
|
+
|
|
144
|
+
== 1.0.1 / -
|
|
145
|
+
* Minor modifications to the gemspec, the README.
|
|
146
|
+
* Renamed the diff program to ldiff (as well as the companion batch file) so as
|
|
147
|
+
to not collide with the standard diff program.
|
|
148
|
+
* Fixed issues with RubyGems. Requires RubyGems > 0.6.1 or >= 0.6.1 with the
|
|
149
|
+
latest CVS version.
|
|
150
|
+
|
|
151
|
+
== 1.0 / -
|
|
152
|
+
* Initial release based mostly on Perl's Algorithm::Diff.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
== License
|
|
2
|
+
|
|
3
|
+
This software is available under three licenses: the GNU GPL version 2 (or at
|
|
4
|
+
your option, a later version), the Perl Artistic license, or the MIT license.
|
|
5
|
+
Note that my preference for licensing is the MIT license, but Algorithm::Diff
|
|
6
|
+
was dually originally licensed with the Perl Artistic and the GNU GPL ("the
|
|
7
|
+
same terms as Perl itself") and given that the Ruby implementation originally
|
|
8
|
+
hewed pretty closely to the Perl version, I must maintain the additional
|
|
9
|
+
licensing terms.
|
|
10
|
+
|
|
11
|
+
* Copyright 2004–2013 Austin Ziegler.
|
|
12
|
+
* Adapted from Algorithm::Diff (Perl) by Ned Konz and a Smalltalk version by
|
|
13
|
+
Mario I. Wolczko.
|
|
14
|
+
|
|
15
|
+
=== MIT License
|
|
16
|
+
|
|
17
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
18
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
19
|
+
the Software without restriction, including without limitation the rights to
|
|
20
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
21
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
22
|
+
so, subject to the following conditions:
|
|
23
|
+
|
|
24
|
+
The above copyright notice and this permission notice shall be included in all
|
|
25
|
+
copies or substantial portions of the Software.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
30
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
31
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
32
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
33
|
+
SOFTWARE.
|
|
34
|
+
|
|
35
|
+
=== Perl Artistic License (version 2)
|
|
36
|
+
See the file docs/artistic.txt in the main distribution.
|
|
37
|
+
|
|
38
|
+
=== GNU GPL version 2
|
|
39
|
+
See the file docs/COPYING.txt in the main distribution.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.autotest
|
|
2
|
+
.gemtest
|
|
3
|
+
.hoerc
|
|
4
|
+
.rspec
|
|
5
|
+
.travis.yml
|
|
6
|
+
Contributing.rdoc
|
|
7
|
+
Gemfile
|
|
8
|
+
History.rdoc
|
|
9
|
+
License.rdoc
|
|
10
|
+
Manifest.txt
|
|
11
|
+
README.rdoc
|
|
12
|
+
Rakefile
|
|
13
|
+
autotest/discover.rb
|
|
14
|
+
bin/htmldiff
|
|
15
|
+
bin/ldiff
|
|
16
|
+
docs/COPYING.txt
|
|
17
|
+
docs/artistic.txt
|
|
18
|
+
lib/diff-lcs.rb
|
|
19
|
+
lib/diff/lcs.rb
|
|
20
|
+
lib/diff/lcs/array.rb
|
|
21
|
+
lib/diff/lcs/block.rb
|
|
22
|
+
lib/diff/lcs/callbacks.rb
|
|
23
|
+
lib/diff/lcs/change.rb
|
|
24
|
+
lib/diff/lcs/htmldiff.rb
|
|
25
|
+
lib/diff/lcs/hunk.rb
|
|
26
|
+
lib/diff/lcs/internals.rb
|
|
27
|
+
lib/diff/lcs/ldiff.rb
|
|
28
|
+
lib/diff/lcs/string.rb
|
|
29
|
+
spec/change_spec.rb
|
|
30
|
+
spec/diff_spec.rb
|
|
31
|
+
spec/hunk_spec.rb
|
|
32
|
+
spec/issues_spec.rb
|
|
33
|
+
spec/lcs_spec.rb
|
|
34
|
+
spec/patch_spec.rb
|
|
35
|
+
spec/sdiff_spec.rb
|
|
36
|
+
spec/spec_helper.rb
|
|
37
|
+
spec/traverse_balanced_spec.rb
|
|
38
|
+
spec/traverse_sequences_spec.rb
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
= Diff::LCS
|
|
2
|
+
|
|
3
|
+
home :: http://diff-lcs.rubyforge.org/
|
|
4
|
+
code :: https://github.com/halostatue/diff-lcs
|
|
5
|
+
bugs :: https://github.com/halostatue/diff-lcs/issues
|
|
6
|
+
rdoc :: http://rubydoc.info/github/halostatue/diff-lcs
|
|
7
|
+
|
|
8
|
+
== Description
|
|
9
|
+
|
|
10
|
+
Diff::LCS computes the difference between two Enumerable sequences using the
|
|
11
|
+
McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
|
|
12
|
+
to create a simple HTML diff output format and a standard diff-like tool.
|
|
13
|
+
|
|
14
|
+
This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
|
|
15
|
+
not properly prune common sequences at the beginning of a comparison set.
|
|
16
|
+
Thanks to Paul Kunysch for fixing this issue.
|
|
17
|
+
|
|
18
|
+
Coincident with the release of diff-lcs 1.2.3, we reported an issue with
|
|
19
|
+
Rubinius in 1.9 mode
|
|
20
|
+
({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
|
|
21
|
+
We are happy to report that this issue has been resolved.
|
|
22
|
+
|
|
23
|
+
== Synopsis
|
|
24
|
+
|
|
25
|
+
Using this module is quite simple. By default, Diff::LCS does not extend
|
|
26
|
+
objects with the Diff::LCS interface, but will be called as if it were a
|
|
27
|
+
function:
|
|
28
|
+
|
|
29
|
+
require 'diff/lcs'
|
|
30
|
+
|
|
31
|
+
seq1 = %w(a b c e h j l m n p)
|
|
32
|
+
seq2 = %w(b c d e f j k l m r s t)
|
|
33
|
+
|
|
34
|
+
lcs = Diff::LCS.LCS(seq1, seq2)
|
|
35
|
+
diffs = Diff::LCS.diff(seq1, seq2)
|
|
36
|
+
sdiff = Diff::LCS.sdiff(seq1, seq2)
|
|
37
|
+
seq = Diff::LCS.traverse_sequences(seq1, seq2, callback_obj)
|
|
38
|
+
bal = Diff::LCS.traverse_balanced(seq1, seq2, callback_obj)
|
|
39
|
+
seq2 == Diff::LCS.patch!(seq1, diffs)
|
|
40
|
+
seq1 == Diff::LCS.unpatch!(seq2, diffs)
|
|
41
|
+
seq2 == Diff::LCS.patch!(seq1, sdiff)
|
|
42
|
+
seq1 == Diff::LCS.unpatch!(seq2, sdiff)
|
|
43
|
+
|
|
44
|
+
Objects can be extended with Diff::LCS:
|
|
45
|
+
|
|
46
|
+
seq1.extend(Diff::LCS)
|
|
47
|
+
lcs = seq1.lcs(seq2)
|
|
48
|
+
diffs = seq1.diff(seq2)
|
|
49
|
+
sdiff = seq1.sdiff(seq2)
|
|
50
|
+
seq = seq1.traverse_sequences(seq2, callback_obj)
|
|
51
|
+
bal = seq1.traverse_balanced(seq2, callback_obj)
|
|
52
|
+
seq2 == seq1.patch!(diffs)
|
|
53
|
+
seq1 == seq2.unpatch!(diffs)
|
|
54
|
+
seq2 == seq1.patch!(sdiff)
|
|
55
|
+
seq1 == seq2.unpatch!(sdiff)
|
|
56
|
+
|
|
57
|
+
By requiring 'diff/lcs/array' or 'diff/lcs/string', Array or String will be
|
|
58
|
+
extended for use this way.
|
|
59
|
+
|
|
60
|
+
Note that Diff::LCS requires a sequenced enumerable container, which means that
|
|
61
|
+
the order of enumeration is both predictable and consistent for the same set of
|
|
62
|
+
data. While it is theoretically possible to generate a diff for an unordered
|
|
63
|
+
hash, it will only be meaningful if the enumeration of the hashes is
|
|
64
|
+
consistent. In general, this will mean that containers that behave like String
|
|
65
|
+
or Array will perform best.
|
|
66
|
+
|
|
67
|
+
== History
|
|
68
|
+
|
|
69
|
+
Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt
|
|
70
|
+
longest common subsequence (LCS) algorithm to compute intelligent differences
|
|
71
|
+
between two sequenced enumerable containers. The implementation is based on
|
|
72
|
+
Mario I. Wolczko's {Smalltalk version 1.2}[ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st]
|
|
73
|
+
(1993) and Ned Konz's Perl version
|
|
74
|
+
{Algorithm::Diff 1.15}[http://search.cpan.org/~nedkonz/Algorithm-Diff-1.15/].
|
|
75
|
+
|
|
76
|
+
This library is called Diff::LCS because of an early version of Algorithm::Diff
|
|
77
|
+
which was restrictively licensed.
|
|
78
|
+
|
|
79
|
+
== Continuous Integration Status
|
|
80
|
+
|
|
81
|
+
{<img src="https://travis-ci.org/halostatue/diff-lcs.png" />}[https://travis-ci.org/halostatue/diff-lcs]
|
|
82
|
+
|
|
83
|
+
:include: Contributing.rdoc
|
|
84
|
+
|
|
85
|
+
:include: License.rdoc
|