husc 0.1.0
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/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +64 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/husc.gemspec +29 -0
- data/lib/husc.rb +213 -0
- data/lib/husc/version.rb +3 -0
- data/vendor/bundle/bin/htmldiff +29 -0
- data/vendor/bundle/bin/ldiff +29 -0
- data/vendor/bundle/bin/nokogiri +27 -0
- data/vendor/bundle/bin/rake +27 -0
- data/vendor/bundle/bin/rspec +27 -0
- data/vendor/bundle/cache/connection_pool-2.2.2.gem +0 -0
- data/vendor/bundle/cache/diff-lcs-1.3.gem +0 -0
- data/vendor/bundle/cache/domain_name-0.5.20190701.gem +0 -0
- data/vendor/bundle/cache/http-cookie-1.0.3.gem +0 -0
- data/vendor/bundle/cache/mechanize-2.7.6.gem +0 -0
- data/vendor/bundle/cache/mime-types-3.3.1.gem +0 -0
- data/vendor/bundle/cache/mime-types-data-3.2019.1009.gem +0 -0
- data/vendor/bundle/cache/mini_portile2-2.4.0.gem +0 -0
- data/vendor/bundle/cache/net-http-digest_auth-1.4.1.gem +0 -0
- data/vendor/bundle/cache/net-http-persistent-3.1.0.gem +0 -0
- data/vendor/bundle/cache/nokogiri-1.10.7.gem +0 -0
- data/vendor/bundle/cache/ntlm-http-0.1.1.gem +0 -0
- data/vendor/bundle/cache/rake-12.3.3.gem +0 -0
- data/vendor/bundle/cache/rspec-3.9.0.gem +0 -0
- data/vendor/bundle/cache/rspec-core-3.9.1.gem +0 -0
- data/vendor/bundle/cache/rspec-expectations-3.9.0.gem +0 -0
- data/vendor/bundle/cache/rspec-mocks-3.9.1.gem +0 -0
- data/vendor/bundle/cache/rspec-support-3.9.2.gem +0 -0
- data/vendor/bundle/cache/unf-0.1.4.gem +0 -0
- data/vendor/bundle/cache/unf_ext-0.0.7.6.gem +0 -0
- data/vendor/bundle/cache/webrobots-0.1.2.gem +0 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem.build_complete +0 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem_make.out +153 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/mkmf.log +562 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/nokogiri/nokogiri.bundle +0 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem.build_complete +0 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem_make.out +38 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/mkmf.log +35 -0
- data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/unf_ext.bundle +0 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/.gitignore +4 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/.travis.yml +10 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/Changes.md +123 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/Gemfile +3 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/LICENSE +20 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/README.md +107 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/Rakefile +6 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/connection_pool.gemspec +21 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool.rb +161 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/monotonic_time.rb +66 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/timed_stack.rb +176 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/version.rb +3 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/test/helper.rb +8 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool.rb +516 -0
- data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool_timed_stack.rb +149 -0
- data/vendor/bundle/gems/diff-lcs-1.3/.rspec +1 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Contributing.md +83 -0
- data/vendor/bundle/gems/diff-lcs-1.3/History.md +220 -0
- data/vendor/bundle/gems/diff-lcs-1.3/License.md +39 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Manifest.txt +37 -0
- data/vendor/bundle/gems/diff-lcs-1.3/README.rdoc +84 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Rakefile +57 -0
- data/vendor/bundle/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
- data/vendor/bundle/gems/diff-lcs-1.3/bin/htmldiff +32 -0
- data/vendor/bundle/gems/diff-lcs-1.3/bin/ldiff +6 -0
- data/vendor/bundle/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
- data/vendor/bundle/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/.document +5 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/.gitignore +17 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/.travis.yml +21 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/CHANGELOG.md +219 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/Gemfile +4 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/LICENSE.txt +78 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/README.md +67 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/Rakefile +111 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/data/public_suffix_list.dat +12985 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/domain_name.gemspec +36 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name.rb +297 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb +8787 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb.erb +11 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/punycode.rb +283 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/version.rb +3 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/test/helper.rb +17 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name-punycode.rb +97 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name.rb +317 -0
- data/vendor/bundle/gems/domain_name-0.5.20190701/tool/gen_etld_data.rb +63 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/.gitignore +17 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/.travis.yml +21 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/CHANGELOG.md +22 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/Gemfile +4 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/LICENSE.txt +24 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/README.md +235 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/Rakefile +20 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/http-cookie.gemspec +34 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http-cookie.rb +1 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie.rb +685 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/ruby_compat.rb +63 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/scanner.rb +231 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/version.rb +5 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar.rb +344 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_saver.rb +65 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_store.rb +124 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/cookiestxt_saver.rb +106 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/hash_store.rb +163 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/mozilla_store.rb +458 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/yaml_saver.rb +76 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/test/helper.rb +55 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/test/mechanize.yml +101 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/test/simplecov_start.rb +2 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie.rb +1122 -0
- data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie_jar.rb +985 -0
- data/vendor/bundle/gems/mechanize-2.7.6/.autotest +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/.gitignore +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/.travis.yml +36 -0
- data/vendor/bundle/gems/mechanize-2.7.6/CHANGELOG.rdoc +999 -0
- data/vendor/bundle/gems/mechanize-2.7.6/EXAMPLES.rdoc +192 -0
- data/vendor/bundle/gems/mechanize-2.7.6/GUIDE.rdoc +168 -0
- data/vendor/bundle/gems/mechanize-2.7.6/Gemfile +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/LICENSE.rdoc +20 -0
- data/vendor/bundle/gems/mechanize-2.7.6/README.rdoc +77 -0
- data/vendor/bundle/gems/mechanize-2.7.6/Rakefile +41 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/flickr_upload.rb +22 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/mech-dump.rb +5 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/proxy_req.rb +7 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/rubygems.rb +23 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/spider.rb +22 -0
- data/vendor/bundle/gems/mechanize-2.7.6/examples/wikipedia_links_to_philosophy.rb +159 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize.rb +1369 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/chunked_termination_error.rb +7 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/content_type_error.rb +13 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie.rb +73 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie_jar.rb +190 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/directory_saver.rb +77 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/download.rb +84 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_matcher.rb +68 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_not_found_error.rb +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file.rb +93 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_connection.rb +17 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_request.rb +30 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_response.rb +80 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_saver.rb +39 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form.rb +724 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/button.rb +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/check_box.rb +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/field.rb +124 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/file_upload.rb +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/hidden.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/image_button.rb +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/keygen.rb +34 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/multi_select_list.rb +93 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/option.rb +51 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/radio_button.rb +69 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/reset.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/select_list.rb +44 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/submit.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/text.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/textarea.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/headers.rb +23 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/history.rb +82 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http.rb +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/agent.rb +1281 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_challenge.rb +65 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_realm.rb +31 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_store.rb +123 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/content_disposition_parser.rb +191 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/www_authenticate_parser.rb +178 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/image.rb +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page.rb +648 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/base.rb +7 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/frame.rb +29 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/image.rb +182 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/label.rb +20 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/link.rb +108 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/meta_refresh.rb +78 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/parser.rb +182 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/pluggable_parsers.rb +179 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/prependable.rb +89 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_limit_reached_error.rb +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_not_get_or_head_error.rb +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_code_error.rb +26 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_read_error.rb +38 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/robots_disallowed_error.rb +28 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case.rb +330 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/.document +1 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/bad_chunking_servlet.rb +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/basic_auth_servlet.rb +24 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/content_type_servlet.rb +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/digest_auth_servlet.rb +33 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/file_upload_servlet.rb +20 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/form_servlet.rb +55 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/gzip_servlet.rb +32 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/header_servlet.rb +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/http_refresh_servlet.rb +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_redirect_servlet.rb +10 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_refresh_servlet.rb +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_as_string_servlet.rb +37 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_servlet.rb +33 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/modified_since_servlet.rb +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/ntlm_servlet.rb +30 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_no_spaces_servlet.rb +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_servlet.rb +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/quoted_value_cookie_servlet.rb +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/redirect_servlet.rb +13 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/referer_servlet.rb +12 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_with_empty_url.rb +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_without_url.rb +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/response_code_servlet.rb +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/robots_txt_servlet.rb +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/send_cookies_servlet.rb +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/server.rb +36 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/servlets.rb +58 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/verb_servlet.rb +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unauthorized_error.rb +22 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unsupported_scheme_error.rb +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/util.rb +161 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/version.rb +3 -0
- data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/xml_file.rb +47 -0
- data/vendor/bundle/gems/mechanize-2.7.6/mechanize.gemspec +66 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/data/htpasswd +1 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.crt +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.csr +12 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.key +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.pem +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/alt_text.html +10 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/bad_form_test.html +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/button.jpg +0 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/canonical_uri.html +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/dir with spaces/foo.html +1 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/empty_form.html +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/file_upload.html +26 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/find_link.html +38 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multi_select.html +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multival.html +37 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_action.html +18 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_input_name.html +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_order_test.html +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_select.html +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_set_fields.html +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_test.html +188 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_referer_test.html +10 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_test.html +30 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/google.html +13 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/index.html +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/link with space.html +5 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/meta_cookie.html +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/no_title_test.html +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/noindex.html +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/rails_3_encoding_hack_form_test.html +27 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/relative/tc_relative_links.html +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/robots.html +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_charset.html +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_links.html +5 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_base_link.html +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_blank_form.html +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_charset.html +6 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_checkboxes.html +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_encoded_links.html +5 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_field_precedence.html +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta.html +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_1.html +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_2.html +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_form_action.html +48 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_links.html +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_meta_in_body.html +9 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_pretty_print.html +17 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_referer.html +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_relative_links.html +19 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_textarea.html +23 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/test_click.html +11 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/unusual______.html +5 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize.rb +1361 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie.rb +547 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie_jar.rb +582 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_directory_saver.rb +59 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_download.rb +89 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_element_not_found_error.rb +15 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file.rb +107 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_connection.rb +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_request.rb +25 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_response.rb +23 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_saver.rb +21 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form.rb +1012 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_check_box.rb +48 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_encoding.rb +109 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_field.rb +77 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_file_upload.rb +20 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_image_button.rb +12 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_keygen.rb +32 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_multi_select_list.rb +97 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_option.rb +59 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_radio_button.rb +95 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_select_list.rb +80 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_textarea.rb +52 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_headers.rb +35 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_history.rb +103 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_agent.rb +1754 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_challenge.rb +63 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_realm.rb +55 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_store.rb +232 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_content_disposition_parser.rb +139 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_www_authenticate_parser.rb +203 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_image.rb +8 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_link.rb +146 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page.rb +280 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_encoding.rb +187 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_frame.rb +16 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_image.rb +190 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_link.rb +373 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_meta_refresh.rb +150 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_parser.rb +315 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_pluggable_parser.rb +67 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_limit_reached_error.rb +24 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_not_get_or_head_error.rb +14 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_response_read_error.rb +28 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_subclass.rb +22 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_util.rb +143 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_xml_file.rb +29 -0
- data/vendor/bundle/gems/mechanize-2.7.6/test/test_multi_select.rb +119 -0
- data/vendor/bundle/gems/mime-types-3.3.1/Code-of-Conduct.md +73 -0
- data/vendor/bundle/gems/mime-types-3.3.1/Contributing.md +143 -0
- data/vendor/bundle/gems/mime-types-3.3.1/History.md +240 -0
- data/vendor/bundle/gems/mime-types-3.3.1/Licence.md +25 -0
- data/vendor/bundle/gems/mime-types-3.3.1/Manifest.txt +31 -0
- data/vendor/bundle/gems/mime-types-3.3.1/README.rdoc +193 -0
- data/vendor/bundle/gems/mime-types-3.3.1/Rakefile +284 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type.rb +587 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +57 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types.rb +231 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +136 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/cache.rb +58 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +32 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/full.rb +19 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/loader.rb +146 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/logger.rb +39 -0
- data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/registry.rb +90 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/bad-fixtures/malformed +9 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/json.json +1 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/old-data +9 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/yaml.yaml +55 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/minitest_helper.rb +13 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_type.rb +610 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types.rb +169 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +118 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_class.rb +159 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +49 -0
- data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +32 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/Code-of-Conduct.md +75 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/Contributing.md +162 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/History.md +406 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/Licence.md +25 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/Manifest.txt +31 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/README.md +63 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/Rakefile +94 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime-types.json +1 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.content_type.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.docs.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.encoding.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.flags.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.friendly.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.pext.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.use_instead.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.xrefs.column +2215 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime-types-data.rb +3 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime/types/data.rb +21 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/application.yaml +16361 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/audio.yaml +1644 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/chemical.yaml +71 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/conference.yaml +9 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/drawing.yaml +15 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/font.yaml +65 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/image.yaml +1069 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/message.yaml +200 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/model.yaml +302 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/multipart.yaml +179 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/text.yaml +1055 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/video.yaml +1070 -0
- data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/world.yaml +8 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/.concourse.yml +83 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/.gitignore +7 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/.travis.yml +15 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/CHANGELOG.md +209 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/Gemfile +4 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/LICENSE.txt +20 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/README.md +245 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/Rakefile +29 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/appveyor.yml +25 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/mini_portile.yml +141 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.ps1 +11 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.sh +13 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2.rb +3 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb +556 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/version.rb +3 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/mini_portile2.gemspec +42 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/git/config +4 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data +1 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.asc +9 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/patch 1.diff +7 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test mini portile-1.0.0/configure +11 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/hello.c +4 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-download-archive.tar.gz +1 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/helper.rb +60 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cmake.rb +64 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cook.rb +115 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_digest.rb +215 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_download.rb +71 -0
- data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_proxy.rb +121 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.autotest +8 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.travis.yml +16 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/History.txt +52 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Manifest.txt +10 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/README.txt +44 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Rakefile +25 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/lib/net/http/digest_auth.rb +173 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/auth_server.rb +47 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/net_http_example.rb +27 -0
- data/vendor/bundle/gems/net-http-digest_auth-1.4.1/test/test_net_http_digest_auth.rb +130 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/.autotest +9 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/.gemtest +0 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/.travis.yml +24 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/Gemfile +15 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/History.txt +391 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/Manifest.txt +14 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/README.rdoc +82 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/Rakefile +31 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb +1202 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/connection.rb +40 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/pool.rb +53 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/timed_stack_multi.rb +79 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent.rb +1621 -0
- data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent_timed_stack_multi.rb +151 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE-DEPENDENCIES.md +1614 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE.md +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/README.md +198 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/bin/nokogiri +118 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/dependencies.yml +74 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/.sitearchdir.-.nokogiri.time +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/Makefile +629 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/depend +358 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/extconf.rb +686 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.c +170 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.c +279 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.c +32 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.h +8 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.c +116 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.bundle +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.c +141 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.h +121 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.c +103 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.c +62 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.c +69 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.c +608 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.h +23 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.c +48 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.c +202 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.c +123 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.c +69 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.c +110 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.c +52 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.c +61 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.h +11 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.c +111 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.h +14 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.c +1753 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.h +13 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.c +486 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.h +12 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.c +668 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.c +161 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.c +310 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.h +39 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.c +262 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.c +159 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.c +205 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.c +64 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.h +13 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.c +52 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.h +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.c +298 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.h +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.h +14 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.o +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri.rb +144 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css.rb +27 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/node.rb +52 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.rb +750 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.y +272 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser_extras.rb +91 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/syntax_error.rb +7 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rb +153 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rex +55 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/xpath_visitor.rb +230 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/decorators/slop.rb +42 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html.rb +37 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/builder.rb +35 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document.rb +335 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document_fragment.rb +49 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description.rb +23 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser.rb +62 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/push_parser.rb +36 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/nokogiri.bundle +0 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/syntax_error.rb +4 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/version.rb +109 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml.rb +75 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attr.rb +14 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/builder.rb +446 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/cdata.rb +11 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/character_data.rb +7 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document.rb +285 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document_fragment.rb +160 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/dtd.rb +32 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_content.rb +36 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_decl.rb +13 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_reference.rb +18 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/namespace.rb +13 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node.rb +902 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node_set.rb +371 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/notation.rb +6 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/parse_options.rb +120 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp.rb +2 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/node.rb +56 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/reader.rb +112 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax.rb +4 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/document.rb +171 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser.rb +122 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/schema.rb +63 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/searchable.rb +230 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/syntax_error.rb +70 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/text.rb +9 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath.rb +10 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt.rb +56 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/lib/xsd/xmlparser/nokogiri.rb +102 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
- data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0004-libxml2.la-is-in-top_builddir.patch +25 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/README +25 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/Rakefile +66 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/examples/http.rb +86 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/examples/imap.rb +73 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/examples/smtp.rb +94 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm.rb +774 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm_http.rb +854 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/ntlm-http-0.1.1.gemspec +16 -0
- data/vendor/bundle/gems/ntlm-http-0.1.1/test/function_test.rb +111 -0
- data/vendor/bundle/gems/rake-12.3.3/CONTRIBUTING.rdoc +43 -0
- data/vendor/bundle/gems/rake-12.3.3/Gemfile +3 -0
- data/vendor/bundle/gems/rake-12.3.3/History.rdoc +2344 -0
- data/vendor/bundle/gems/rake-12.3.3/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/rake-12.3.3/README.rdoc +156 -0
- data/vendor/bundle/gems/rake-12.3.3/Rakefile +41 -0
- data/vendor/bundle/gems/rake-12.3.3/azure-pipelines.yml +11 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/bundle +105 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/console +7 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/rake +29 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/rdoc +29 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/rubocop +29 -0
- data/vendor/bundle/gems/rake-12.3.3/bin/setup +6 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/example/a.c +6 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/example/b.c +6 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/example/main.c +11 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/glossary.rdoc +42 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/jamis.rb +592 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/rake.1 +156 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/gems/rake-12.3.3/doc/rational.rdoc +151 -0
- data/vendor/bundle/gems/rake-12.3.3/exe/rake +27 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake.rb +71 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/application.rb +824 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/clean.rb +78 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils.rb +137 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils_ext.rb +145 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/packagetask.rb +207 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/phony.rb +16 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/promise.rb +100 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/scope.rb +43 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/task.rb +413 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_manager.rb +324 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/testtask.rb +224 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/version.rb +10 -0
- data/vendor/bundle/gems/rake-12.3.3/lib/rake/win32.rb +51 -0
- data/vendor/bundle/gems/rake-12.3.3/rake.gemspec +42 -0
- data/vendor/bundle/gems/rspec-3.9.0/LICENSE.md +27 -0
- data/vendor/bundle/gems/rspec-3.9.0/README.md +43 -0
- data/vendor/bundle/gems/rspec-3.9.0/lib/rspec.rb +3 -0
- data/vendor/bundle/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/.document +5 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/.yardopts +8 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/Changelog.md +2274 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/LICENSE.md +26 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/README.md +384 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/exe/rspec +4 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core.rb +186 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/fork_runner.rb +135 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/utilities.rb +58 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb +2336 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb +233 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/did_you_mean.rb +46 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/drb.rb +113 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example.rb +656 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb +889 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb +272 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb +68 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb +508 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_formatter.rb +153 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/json_formatter.rb +102 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/progress_formatter.rb +29 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb +632 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb +554 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb +498 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb +255 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb +521 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb +316 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb +29 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec +1 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/rake_task.rb +188 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb +265 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb +204 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/set.rb +54 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb +269 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/world.rb +275 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/.document +5 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/.yardopts +6 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/Changelog.md +1170 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/LICENSE.md +25 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/README.md +320 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb +82 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb +215 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb +39 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb +1038 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb +86 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb +288 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb +428 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb +276 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb +90 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb +149 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb +174 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb +60 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb +432 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb +534 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/.document +5 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/.yardopts +6 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/README.md +463 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
- data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/Changelog.md +292 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/LICENSE.md +23 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/README.md +40 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support.rb +149 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb +161 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb +53 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb +185 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source.rb +75 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/location.rb +21 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/node.rb +110 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/token.rb +87 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec.rb +81 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/in_sub_process.rb +69 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/shell_out.rb +89 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/stderr_splitter.rb +67 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/gems/unf-0.1.4/.gitignore +17 -0
- data/vendor/bundle/gems/unf-0.1.4/.travis.yml +17 -0
- data/vendor/bundle/gems/unf-0.1.4/CHANGELOG.md +46 -0
- data/vendor/bundle/gems/unf-0.1.4/Gemfile +4 -0
- data/vendor/bundle/gems/unf-0.1.4/LICENSE +24 -0
- data/vendor/bundle/gems/unf-0.1.4/README.md +39 -0
- data/vendor/bundle/gems/unf-0.1.4/Rakefile +21 -0
- data/vendor/bundle/gems/unf-0.1.4/lib/unf.rb +38 -0
- data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer.rb +35 -0
- data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_cruby.rb +1 -0
- data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_jruby.rb +30 -0
- data/vendor/bundle/gems/unf-0.1.4/lib/unf/version.rb +3 -0
- data/vendor/bundle/gems/unf-0.1.4/test/helper.rb +18 -0
- data/vendor/bundle/gems/unf-0.1.4/test/normalization-test.txt +108816 -0
- data/vendor/bundle/gems/unf-0.1.4/test/test_unf.rb +41 -0
- data/vendor/bundle/gems/unf-0.1.4/unf.gemspec +35 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/.document +5 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/.gitignore +19 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/.travis.yml +24 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/CHANGELOG.md +42 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/Gemfile +4 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/LICENSE.txt +22 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/README.md +57 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/Rakefile +31 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/.sitearchdir.time +0 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/extconf.rb +50 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.cc +75 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.o +0 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/normalizer.hh +139 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/table.hh +13617 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/char_stream.hh +150 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/node.hh +25 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/searcher.hh +194 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/util.hh +24 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf_ext.bundle +0 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.bundle +0 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.rb +5 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext/version.rb +5 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/test/helper.rb +18 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/test/normalization-test.txt +112332 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/test/test_unf_ext.rb +41 -0
- data/vendor/bundle/gems/unf_ext-0.0.7.6/unf_ext.gemspec +42 -0
- data/vendor/bundle/gems/webrobots-0.1.2/.document +4 -0
- data/vendor/bundle/gems/webrobots-0.1.2/.gitignore +11 -0
- data/vendor/bundle/gems/webrobots-0.1.2/.travis.yml +17 -0
- data/vendor/bundle/gems/webrobots-0.1.2/Gemfile +4 -0
- data/vendor/bundle/gems/webrobots-0.1.2/LICENSE.txt +24 -0
- data/vendor/bundle/gems/webrobots-0.1.2/README.rdoc +38 -0
- data/vendor/bundle/gems/webrobots-0.1.2/Rakefile +29 -0
- data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots.rb +213 -0
- data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/nokogiri.rb +32 -0
- data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.rb +752 -0
- data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.ry +487 -0
- data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/version.rb +3 -0
- data/vendor/bundle/gems/webrobots-0.1.2/test/helper.rb +25 -0
- data/vendor/bundle/gems/webrobots-0.1.2/test/simplecov_start.rb +9 -0
- data/vendor/bundle/gems/webrobots-0.1.2/test/test_webrobots.rb +806 -0
- data/vendor/bundle/gems/webrobots-0.1.2/test/vcr_cassettes/major_sites.yml +2006 -0
- data/vendor/bundle/gems/webrobots-0.1.2/webrobots.gemspec +46 -0
- data/vendor/bundle/specifications/connection_pool-2.2.2.gemspec +38 -0
- data/vendor/bundle/specifications/diff-lcs-1.3.gemspec +61 -0
- data/vendor/bundle/specifications/domain_name-0.5.20190701.gemspec +46 -0
- data/vendor/bundle/specifications/http-cookie-1.0.3.gemspec +52 -0
- data/vendor/bundle/specifications/mechanize-2.7.6.gemspec +69 -0
- data/vendor/bundle/specifications/mime-types-3.3.1.gemspec +85 -0
- data/vendor/bundle/specifications/mime-types-data-3.2019.1009.gemspec +60 -0
- data/vendor/bundle/specifications/mini_portile2-2.4.0.gemspec +48 -0
- data/vendor/bundle/specifications/net-http-digest_auth-1.4.1.gemspec +43 -0
- data/vendor/bundle/specifications/net-http-persistent-3.1.0.gemspec +52 -0
- data/vendor/bundle/specifications/nokogiri-1.10.7.gemspec +85 -0
- data/vendor/bundle/specifications/ntlm-http-0.1.1.gemspec +24 -0
- data/vendor/bundle/specifications/rake-12.3.3.gemspec +49 -0
- data/vendor/bundle/specifications/rspec-3.9.0.gemspec +43 -0
- data/vendor/bundle/specifications/rspec-core-3.9.1.gemspec +63 -0
- data/vendor/bundle/specifications/rspec-expectations-3.9.0.gemspec +51 -0
- data/vendor/bundle/specifications/rspec-mocks-3.9.1.gemspec +51 -0
- data/vendor/bundle/specifications/rspec-support-3.9.2.gemspec +39 -0
- data/vendor/bundle/specifications/unf-0.1.4.gemspec +46 -0
- data/vendor/bundle/specifications/unf_ext-0.0.7.6.gemspec +51 -0
- data/vendor/bundle/specifications/webrobots-0.1.2.gemspec +65 -0
- metadata +1100 -0
data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/nokogiri/nokogiri.bundle
ADDED
Binary file
|
data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem.build_complete
ADDED
File without changes
|
@@ -0,0 +1,38 @@
|
|
1
|
+
current directory: /Users/abetatsuya/ruby/husc/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext
|
2
|
+
/Users/abetatsuya/.rbenv/versions/2.6.5/bin/ruby -I /Users/abetatsuya/.rbenv/versions/2.6.5/lib/ruby/2.6.0 -r ./siteconf20200110-98634-s3jqwm.rb extconf.rb
|
3
|
+
checking for -lstdc++... yes
|
4
|
+
creating Makefile
|
5
|
+
|
6
|
+
current directory: /Users/abetatsuya/ruby/husc/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext
|
7
|
+
make "DESTDIR=" clean
|
8
|
+
|
9
|
+
current directory: /Users/abetatsuya/ruby/husc/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext
|
10
|
+
make "DESTDIR="
|
11
|
+
compiling unf.cc
|
12
|
+
In file included from unf.cc:1:
|
13
|
+
In file included from ./unf/normalizer.hh:8:
|
14
|
+
In file included from ./unf/trie/searcher.hh:4:
|
15
|
+
./unf/trie/char_stream.hh:52:56: warning: implicit conversion loses integer precision: 'long' to 'unsigned int' [-Wshorten-64-to-32]
|
16
|
+
unsigned offset() const { return cur1-beg1 + cur2-beg2; }
|
17
|
+
~~~~~~ ~~~~~~~~~~~~~~~~^~~~~
|
18
|
+
./unf/trie/char_stream.hh:89:25: warning: implicit conversion loses integer precision: 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::size_type' (aka 'unsigned long') to 'unsigned int' [-Wshorten-64-to-32]
|
19
|
+
skipped_tail = skipped.size();
|
20
|
+
~ ~~~~~~~~^~~~~~
|
21
|
+
In file included from unf.cc:1:
|
22
|
+
In file included from ./unf/normalizer.hh:8:
|
23
|
+
./unf/trie/searcher.hh:49:25: warning: implicit conversion loses integer precision: 'long' to 'unsigned int' [-Wshorten-64-to-32]
|
24
|
+
unsigned beg = in.cur()-str;
|
25
|
+
~~~ ~~~~~~~~^~~~
|
26
|
+
./unf/trie/searcher.hh:59:27: warning: implicit conversion loses integer precision: 'long' to 'unsigned int' [-Wshorten-64-to-32]
|
27
|
+
sort_end = in.cur()-str;
|
28
|
+
~ ~~~~~~~~^~~~
|
29
|
+
In file included from unf.cc:1:
|
30
|
+
./unf/normalizer.hh:60:27: warning: implicit conversion loses integer precision: 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::size_type' (aka 'unsigned long') to 'unsigned int' [-Wshorten-64-to-32]
|
31
|
+
unsigned last = buf.size();
|
32
|
+
~~~~ ~~~~^~~~~~
|
33
|
+
5 warnings generated.
|
34
|
+
linking shared-object unf_ext.bundle
|
35
|
+
|
36
|
+
current directory: /Users/abetatsuya/ruby/husc/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext
|
37
|
+
make "DESTDIR=" install
|
38
|
+
/usr/local/bin/ginstall -c -m 0755 unf_ext.bundle ./.gem.20200110-98634-1riv8f6
|
@@ -0,0 +1,35 @@
|
|
1
|
+
have_library: checking for -lstdc++... -------------------- yes
|
2
|
+
|
3
|
+
"clang -o conftest -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0/x86_64-darwin18 -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0/ruby/backward -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0 -I. -I/Users/abetatsuya/.rbenv/versions/2.6.5/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -pipe conftest.c -L. -L/Users/abetatsuya/.rbenv/versions/2.6.5/lib -L. -L/Users/abetatsuya/.rbenv/versions/2.6.5/lib -fstack-protector-strong -L/usr/local/lib -lruby.2.6-static -framework Security -framework Foundation -lpthread -lgmp -ldl -lobjc "
|
4
|
+
checked program was:
|
5
|
+
/* begin */
|
6
|
+
1: #include "ruby.h"
|
7
|
+
2:
|
8
|
+
3: int main(int argc, char **argv)
|
9
|
+
4: {
|
10
|
+
5: return 0;
|
11
|
+
6: }
|
12
|
+
/* end */
|
13
|
+
|
14
|
+
"clang -o conftest -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0/x86_64-darwin18 -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0/ruby/backward -I/Users/abetatsuya/.rbenv/versions/2.6.5/include/ruby-2.6.0 -I. -I/Users/abetatsuya/.rbenv/versions/2.6.5/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -pipe conftest.c -L. -L/Users/abetatsuya/.rbenv/versions/2.6.5/lib -L. -L/Users/abetatsuya/.rbenv/versions/2.6.5/lib -fstack-protector-strong -L/usr/local/lib -lruby.2.6-static -framework Security -framework Foundation -lpthread -lgmp -ldl -lobjc -lstdc++ "
|
15
|
+
checked program was:
|
16
|
+
/* begin */
|
17
|
+
1: #include "ruby.h"
|
18
|
+
2:
|
19
|
+
3: /*top*/
|
20
|
+
4: extern int t(void);
|
21
|
+
5: int main(int argc, char **argv)
|
22
|
+
6: {
|
23
|
+
7: if (argc > 1000000) {
|
24
|
+
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
25
|
+
9: printf("%d", (*tp)());
|
26
|
+
10: }
|
27
|
+
11:
|
28
|
+
12: return 0;
|
29
|
+
13: }
|
30
|
+
14:
|
31
|
+
15: int t(void) { ; return 0; }
|
32
|
+
/* end */
|
33
|
+
|
34
|
+
--------------------
|
35
|
+
|
Binary file
|
@@ -0,0 +1,123 @@
|
|
1
|
+
connection\_pool changelog
|
2
|
+
---------------------------
|
3
|
+
|
4
|
+
2.2.2
|
5
|
+
------
|
6
|
+
|
7
|
+
- Add pool `size` and `available` accessors for metrics and monitoring
|
8
|
+
purposes [#97, robholland]
|
9
|
+
|
10
|
+
2.2.1
|
11
|
+
------
|
12
|
+
|
13
|
+
- Allow CP::Wrapper to use an existing pool [#87, etiennebarrie]
|
14
|
+
- Use monotonic time for more accurate timeouts [#84, jdantonio]
|
15
|
+
|
16
|
+
2.2.0
|
17
|
+
------
|
18
|
+
|
19
|
+
- Rollback `Timeout` handling introduced in 2.1.1 and 2.1.2. It seems
|
20
|
+
impossible to safely work around the issue. Please never, ever use
|
21
|
+
`Timeout.timeout` in your code or you will see rare but mysterious bugs. [#75]
|
22
|
+
|
23
|
+
2.1.3
|
24
|
+
------
|
25
|
+
|
26
|
+
- Don't increment created count until connection is successfully
|
27
|
+
created. [mylesmegyesi, #73]
|
28
|
+
|
29
|
+
2.1.2
|
30
|
+
------
|
31
|
+
|
32
|
+
- The connection\_pool will now close any connections which respond to
|
33
|
+
`close` (Dalli) or `disconnect!` (Redis). This ensures discarded connections
|
34
|
+
from the fix in 2.1.1 are torn down ASAP and don't linger open.
|
35
|
+
|
36
|
+
|
37
|
+
2.1.1
|
38
|
+
------
|
39
|
+
|
40
|
+
- Work around a subtle race condition with code which uses `Timeout.timeout` and
|
41
|
+
checks out a connection within the timeout block. This might cause
|
42
|
+
connections to get into a bad state and raise very odd errors. [tamird, #67]
|
43
|
+
|
44
|
+
|
45
|
+
2.1.0
|
46
|
+
------
|
47
|
+
|
48
|
+
- Refactoring to better support connection pool subclasses [drbrain,
|
49
|
+
#55]
|
50
|
+
- `with` should return value of the last expression [#59]
|
51
|
+
|
52
|
+
|
53
|
+
2.0.0
|
54
|
+
-----
|
55
|
+
|
56
|
+
- The connection pool is now lazy. Connections are created as needed
|
57
|
+
and retained until the pool is shut down. [drbrain, #52]
|
58
|
+
|
59
|
+
1.2.0
|
60
|
+
-----
|
61
|
+
|
62
|
+
- Add `with(options)` and `checkout(options)`. [mattcamuto]
|
63
|
+
Allows the caller to override the pool timeout.
|
64
|
+
```ruby
|
65
|
+
@pool.with(:timeout => 2) do |conn|
|
66
|
+
end
|
67
|
+
```
|
68
|
+
|
69
|
+
1.1.0
|
70
|
+
-----
|
71
|
+
|
72
|
+
- New `#shutdown` method (simao)
|
73
|
+
|
74
|
+
This method accepts a block and calls the block for each
|
75
|
+
connection in the pool. After calling this method, trying to get a
|
76
|
+
connection from the pool raises `PoolShuttingDownError`.
|
77
|
+
|
78
|
+
1.0.0
|
79
|
+
-----
|
80
|
+
|
81
|
+
- `#with_connection` is now gone in favor of `#with`.
|
82
|
+
|
83
|
+
- We no longer pollute the top level namespace with our internal
|
84
|
+
`TimedStack` class.
|
85
|
+
|
86
|
+
0.9.3
|
87
|
+
--------
|
88
|
+
|
89
|
+
- `#with_connection` is now deprecated in favor of `#with`.
|
90
|
+
|
91
|
+
A warning will be issued in the 0.9 series and the method will be
|
92
|
+
removed in 1.0.
|
93
|
+
|
94
|
+
- We now reuse objects when possible.
|
95
|
+
|
96
|
+
This means that under no contention, the same object will be checked
|
97
|
+
out from the pool after subsequent calls to `ConnectionPool#with`.
|
98
|
+
|
99
|
+
This change should have no impact on end user performance. If
|
100
|
+
anything, it should be an improvement, depending on what objects you
|
101
|
+
are pooling.
|
102
|
+
|
103
|
+
0.9.2
|
104
|
+
--------
|
105
|
+
|
106
|
+
- Fix reentrant checkout leading to early checkin.
|
107
|
+
|
108
|
+
0.9.1
|
109
|
+
--------
|
110
|
+
|
111
|
+
- Fix invalid superclass in version.rb
|
112
|
+
|
113
|
+
0.9.0
|
114
|
+
--------
|
115
|
+
|
116
|
+
- Move method\_missing magic into ConnectionPool::Wrapper (djanowski)
|
117
|
+
- Remove BasicObject superclass (djanowski)
|
118
|
+
|
119
|
+
0.1.0
|
120
|
+
--------
|
121
|
+
|
122
|
+
- More precise timeouts and better error message
|
123
|
+
- ConnectionPool now subclasses BasicObject so `method_missing` is more effective.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Mike Perham
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,107 @@
|
|
1
|
+
connection\_pool
|
2
|
+
=================
|
3
|
+
[](https://travis-ci.org/mperham/connection_pool)
|
4
|
+
|
5
|
+
Generic connection pooling for Ruby.
|
6
|
+
|
7
|
+
MongoDB has its own connection pool. ActiveRecord has its own connection pool.
|
8
|
+
This is a generic connection pool that can be used with anything, e.g. Redis,
|
9
|
+
Dalli and other Ruby network clients.
|
10
|
+
|
11
|
+
|
12
|
+
Usage
|
13
|
+
-----
|
14
|
+
|
15
|
+
Create a pool of objects to share amongst the fibers or threads in your Ruby
|
16
|
+
application:
|
17
|
+
|
18
|
+
``` ruby
|
19
|
+
$memcached = ConnectionPool.new(size: 5, timeout: 5) { Dalli::Client.new }
|
20
|
+
```
|
21
|
+
|
22
|
+
Then use the pool in your application:
|
23
|
+
|
24
|
+
``` ruby
|
25
|
+
$memcached.with do |conn|
|
26
|
+
conn.get('some-count')
|
27
|
+
end
|
28
|
+
```
|
29
|
+
|
30
|
+
If all the objects in the connection pool are in use, `with` will block
|
31
|
+
until one becomes available. If no object is available within `:timeout` seconds,
|
32
|
+
`with` will raise a `Timeout::Error`.
|
33
|
+
|
34
|
+
Optionally, you can specify a timeout override using the with-block semantics:
|
35
|
+
|
36
|
+
``` ruby
|
37
|
+
$memcached.with(timeout: 2.0) do |conn|
|
38
|
+
conn.get('some-count')
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
This will only modify the resource-get timeout for this particular
|
43
|
+
invocation. This is useful if you want to fail-fast on certain non critical
|
44
|
+
sections when a resource is not available, or conversely if you are comfortable
|
45
|
+
blocking longer on a particular resource. This is not implemented in the below
|
46
|
+
`ConnectionPool::Wrapper` class.
|
47
|
+
|
48
|
+
## Migrating to a Connection Pool
|
49
|
+
|
50
|
+
You can use `ConnectionPool::Wrapper` to wrap a single global connection,
|
51
|
+
making it easier to migrate existing connection code over time:
|
52
|
+
|
53
|
+
``` ruby
|
54
|
+
$redis = ConnectionPool::Wrapper.new(size: 5, timeout: 3) { Redis.connect }
|
55
|
+
$redis.sadd('foo', 1)
|
56
|
+
$redis.smembers('foo')
|
57
|
+
```
|
58
|
+
|
59
|
+
The wrapper uses `method_missing` to checkout a connection, run the requested
|
60
|
+
method and then immediately check the connection back into the pool. It's
|
61
|
+
**not** high-performance so you'll want to port your performance sensitive code
|
62
|
+
to use `with` as soon as possible.
|
63
|
+
|
64
|
+
``` ruby
|
65
|
+
$redis.with do |conn|
|
66
|
+
conn.sadd('foo', 1)
|
67
|
+
conn.smembers('foo')
|
68
|
+
end
|
69
|
+
```
|
70
|
+
|
71
|
+
Once you've ported your entire system to use `with`, you can simply remove
|
72
|
+
`Wrapper` and use the simpler and faster `ConnectionPool`.
|
73
|
+
|
74
|
+
|
75
|
+
## Shutdown
|
76
|
+
|
77
|
+
You can shut down a ConnectionPool instance once it should no longer be used.
|
78
|
+
Further checkout attempts will immediately raise an error but existing checkouts
|
79
|
+
will work.
|
80
|
+
|
81
|
+
```ruby
|
82
|
+
cp = ConnectionPool.new { Redis.new }
|
83
|
+
cp.shutdown { |conn| conn.quit }
|
84
|
+
```
|
85
|
+
|
86
|
+
Shutting down a connection pool will block until all connections are checked in and closed.
|
87
|
+
**Note that shutting down is completely optional**; Ruby's garbage collector will reclaim
|
88
|
+
unreferenced pools under normal circumstances.
|
89
|
+
|
90
|
+
|
91
|
+
Notes
|
92
|
+
-----
|
93
|
+
|
94
|
+
- Connections are lazily created as needed.
|
95
|
+
- There is no provision for repairing or checking the health of a connection;
|
96
|
+
connections should be self-repairing. This is true of the Dalli and Redis
|
97
|
+
clients.
|
98
|
+
- **WARNING**: Don't ever use `Timeout.timeout` in your Ruby code or you will see
|
99
|
+
occasional silent corruption and mysterious errors. The Timeout API is unsafe
|
100
|
+
and cannot be used correctly, ever. Use proper socket timeout options as
|
101
|
+
exposed by Net::HTTP, Redis, Dalli, etc.
|
102
|
+
|
103
|
+
|
104
|
+
Author
|
105
|
+
------
|
106
|
+
|
107
|
+
Mike Perham, [@mperham](https://twitter.com/mperham), <http://mikeperham.com>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require "./lib/connection_pool/version"
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "connection_pool"
|
6
|
+
s.version = ConnectionPool::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Mike Perham", "Damian Janowski"]
|
9
|
+
s.email = ["mperham@gmail.com", "damian@educabilia.com"]
|
10
|
+
s.homepage = "https://github.com/mperham/connection_pool"
|
11
|
+
s.description = s.summary = %q{Generic connection pool for Ruby}
|
12
|
+
|
13
|
+
s.files = `git ls-files`.split("\n")
|
14
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
16
|
+
s.require_paths = ["lib"]
|
17
|
+
s.license = "MIT"
|
18
|
+
s.add_development_dependency 'bundler'
|
19
|
+
s.add_development_dependency 'minitest', '>= 5.0.0'
|
20
|
+
s.add_development_dependency 'rake'
|
21
|
+
end
|
@@ -0,0 +1,161 @@
|
|
1
|
+
require_relative 'connection_pool/version'
|
2
|
+
require_relative 'connection_pool/timed_stack'
|
3
|
+
|
4
|
+
|
5
|
+
# Generic connection pool class for e.g. sharing a limited number of network connections
|
6
|
+
# among many threads. Note: Connections are lazily created.
|
7
|
+
#
|
8
|
+
# Example usage with block (faster):
|
9
|
+
#
|
10
|
+
# @pool = ConnectionPool.new { Redis.new }
|
11
|
+
#
|
12
|
+
# @pool.with do |redis|
|
13
|
+
# redis.lpop('my-list') if redis.llen('my-list') > 0
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# Using optional timeout override (for that single invocation)
|
17
|
+
#
|
18
|
+
# @pool.with(timeout: 2.0) do |redis|
|
19
|
+
# redis.lpop('my-list') if redis.llen('my-list') > 0
|
20
|
+
# end
|
21
|
+
#
|
22
|
+
# Example usage replacing an existing connection (slower):
|
23
|
+
#
|
24
|
+
# $redis = ConnectionPool.wrap { Redis.new }
|
25
|
+
#
|
26
|
+
# def do_work
|
27
|
+
# $redis.lpop('my-list') if $redis.llen('my-list') > 0
|
28
|
+
# end
|
29
|
+
#
|
30
|
+
# Accepts the following options:
|
31
|
+
# - :size - number of connections to pool, defaults to 5
|
32
|
+
# - :timeout - amount of time to wait for a connection if none currently available, defaults to 5 seconds
|
33
|
+
#
|
34
|
+
class ConnectionPool
|
35
|
+
DEFAULTS = {size: 5, timeout: 5}
|
36
|
+
|
37
|
+
class Error < RuntimeError
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.wrap(options, &block)
|
41
|
+
Wrapper.new(options, &block)
|
42
|
+
end
|
43
|
+
|
44
|
+
def initialize(options = {}, &block)
|
45
|
+
raise ArgumentError, 'Connection pool requires a block' unless block
|
46
|
+
|
47
|
+
options = DEFAULTS.merge(options)
|
48
|
+
|
49
|
+
@size = options.fetch(:size)
|
50
|
+
@timeout = options.fetch(:timeout)
|
51
|
+
|
52
|
+
@available = TimedStack.new(@size, &block)
|
53
|
+
@key = :"current-#{@available.object_id}"
|
54
|
+
@key_count = :"current-#{@available.object_id}-count"
|
55
|
+
end
|
56
|
+
|
57
|
+
if Thread.respond_to?(:handle_interrupt)
|
58
|
+
|
59
|
+
# MRI
|
60
|
+
def with(options = {})
|
61
|
+
Thread.handle_interrupt(Exception => :never) do
|
62
|
+
conn = checkout(options)
|
63
|
+
begin
|
64
|
+
Thread.handle_interrupt(Exception => :immediate) do
|
65
|
+
yield conn
|
66
|
+
end
|
67
|
+
ensure
|
68
|
+
checkin
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
else
|
74
|
+
|
75
|
+
# jruby 1.7.x
|
76
|
+
def with(options = {})
|
77
|
+
conn = checkout(options)
|
78
|
+
begin
|
79
|
+
yield conn
|
80
|
+
ensure
|
81
|
+
checkin
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
def checkout(options = {})
|
88
|
+
if ::Thread.current[@key]
|
89
|
+
::Thread.current[@key_count]+= 1
|
90
|
+
::Thread.current[@key]
|
91
|
+
else
|
92
|
+
::Thread.current[@key_count]= 1
|
93
|
+
::Thread.current[@key]= @available.pop(options[:timeout] || @timeout)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
def checkin
|
98
|
+
if ::Thread.current[@key]
|
99
|
+
if ::Thread.current[@key_count] == 1
|
100
|
+
@available.push(::Thread.current[@key])
|
101
|
+
::Thread.current[@key]= nil
|
102
|
+
else
|
103
|
+
::Thread.current[@key_count]-= 1
|
104
|
+
end
|
105
|
+
else
|
106
|
+
raise ConnectionPool::Error, 'no connections are checked out'
|
107
|
+
end
|
108
|
+
|
109
|
+
nil
|
110
|
+
end
|
111
|
+
|
112
|
+
def shutdown(&block)
|
113
|
+
@available.shutdown(&block)
|
114
|
+
end
|
115
|
+
|
116
|
+
# Size of this connection pool
|
117
|
+
def size
|
118
|
+
@size
|
119
|
+
end
|
120
|
+
|
121
|
+
# Number of pool entries available for checkout at this instant.
|
122
|
+
def available
|
123
|
+
@available.length
|
124
|
+
end
|
125
|
+
|
126
|
+
private
|
127
|
+
|
128
|
+
class Wrapper < ::BasicObject
|
129
|
+
METHODS = [:with, :pool_shutdown]
|
130
|
+
|
131
|
+
def initialize(options = {}, &block)
|
132
|
+
@pool = options.fetch(:pool) { ::ConnectionPool.new(options, &block) }
|
133
|
+
end
|
134
|
+
|
135
|
+
def with(&block)
|
136
|
+
@pool.with(&block)
|
137
|
+
end
|
138
|
+
|
139
|
+
def pool_shutdown(&block)
|
140
|
+
@pool.shutdown(&block)
|
141
|
+
end
|
142
|
+
|
143
|
+
def pool_size
|
144
|
+
@pool.size
|
145
|
+
end
|
146
|
+
|
147
|
+
def pool_available
|
148
|
+
@pool.available
|
149
|
+
end
|
150
|
+
|
151
|
+
def respond_to?(id, *args)
|
152
|
+
METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
|
153
|
+
end
|
154
|
+
|
155
|
+
def method_missing(name, *args, &block)
|
156
|
+
with do |connection|
|
157
|
+
connection.send(name, *args, &block)
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|