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
@@ -0,0 +1,2006 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.google.com/robots.txt
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- TestBot
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Vary:
|
22
|
+
- Accept-Encoding
|
23
|
+
Content-Type:
|
24
|
+
- text/plain
|
25
|
+
Date:
|
26
|
+
- Mon, 04 Jan 2016 13:39:15 GMT
|
27
|
+
Expires:
|
28
|
+
- Mon, 04 Jan 2016 13:39:15 GMT
|
29
|
+
Cache-Control:
|
30
|
+
- private, max-age=0
|
31
|
+
Last-Modified:
|
32
|
+
- Thu, 17 Dec 2015 01:06:42 GMT
|
33
|
+
X-Content-Type-Options:
|
34
|
+
- nosniff
|
35
|
+
Server:
|
36
|
+
- sffe
|
37
|
+
X-Xss-Protection:
|
38
|
+
- 1; mode=block
|
39
|
+
Alternate-Protocol:
|
40
|
+
- 443:quic,p=1
|
41
|
+
Alt-Svc:
|
42
|
+
- quic="www.google.com:443"; ma=600; v="30,29,28,27,26,25",quic=":443"; ma=600;
|
43
|
+
v="30,29,28,27,26,25"
|
44
|
+
Transfer-Encoding:
|
45
|
+
- chunked
|
46
|
+
body:
|
47
|
+
encoding: ASCII-8BIT
|
48
|
+
string: |+
|
49
|
+
User-agent: *
|
50
|
+
Disallow: /search
|
51
|
+
Allow: /search/about
|
52
|
+
Disallow: /sdch
|
53
|
+
Disallow: /groups
|
54
|
+
Disallow: /catalogs
|
55
|
+
Allow: /catalogs/about
|
56
|
+
Allow: /catalogs/p?
|
57
|
+
Disallow: /catalogues
|
58
|
+
Allow: /newsalerts
|
59
|
+
Disallow: /news
|
60
|
+
Allow: /news/directory
|
61
|
+
Disallow: /nwshp
|
62
|
+
Disallow: /setnewsprefs?
|
63
|
+
Disallow: /index.html?
|
64
|
+
Disallow: /?
|
65
|
+
Allow: /?hl=
|
66
|
+
Disallow: /?hl=*&
|
67
|
+
Allow: /?hl=*&gws_rd=ssl$
|
68
|
+
Disallow: /?hl=*&*&gws_rd=ssl
|
69
|
+
Allow: /?gws_rd=ssl$
|
70
|
+
Allow: /?pt1=true$
|
71
|
+
Disallow: /addurl/image?
|
72
|
+
Allow: /mail/help/
|
73
|
+
Disallow: /mail/
|
74
|
+
Disallow: /pagead/
|
75
|
+
Disallow: /relpage/
|
76
|
+
Disallow: /relcontent
|
77
|
+
Disallow: /imgres
|
78
|
+
Disallow: /imglanding
|
79
|
+
Disallow: /sbd
|
80
|
+
Disallow: /keyword/
|
81
|
+
Disallow: /u/
|
82
|
+
Disallow: /univ/
|
83
|
+
Disallow: /cobrand
|
84
|
+
Disallow: /custom
|
85
|
+
Disallow: /advanced_group_search
|
86
|
+
Disallow: /googlesite
|
87
|
+
Disallow: /preferences
|
88
|
+
Disallow: /setprefs
|
89
|
+
Disallow: /swr
|
90
|
+
Disallow: /url
|
91
|
+
Disallow: /default
|
92
|
+
Disallow: /m?
|
93
|
+
Disallow: /m/
|
94
|
+
Allow: /m/finance
|
95
|
+
Disallow: /wml?
|
96
|
+
Disallow: /wml/?
|
97
|
+
Disallow: /wml/search?
|
98
|
+
Disallow: /xhtml?
|
99
|
+
Disallow: /xhtml/?
|
100
|
+
Disallow: /xhtml/search?
|
101
|
+
Disallow: /xml?
|
102
|
+
Disallow: /imode?
|
103
|
+
Disallow: /imode/?
|
104
|
+
Disallow: /imode/search?
|
105
|
+
Disallow: /jsky?
|
106
|
+
Disallow: /jsky/?
|
107
|
+
Disallow: /jsky/search?
|
108
|
+
Disallow: /pda?
|
109
|
+
Disallow: /pda/?
|
110
|
+
Disallow: /pda/search?
|
111
|
+
Disallow: /sprint_xhtml
|
112
|
+
Disallow: /sprint_wml
|
113
|
+
Disallow: /pqa
|
114
|
+
Disallow: /palm
|
115
|
+
Disallow: /gwt/
|
116
|
+
Disallow: /purchases
|
117
|
+
Disallow: /bsd?
|
118
|
+
Disallow: /linux?
|
119
|
+
Disallow: /mac?
|
120
|
+
Disallow: /microsoft?
|
121
|
+
Disallow: /unclesam?
|
122
|
+
Disallow: /answers/search?q=
|
123
|
+
Disallow: /local?
|
124
|
+
Disallow: /local_url
|
125
|
+
Disallow: /shihui?
|
126
|
+
Disallow: /shihui/
|
127
|
+
Disallow: /froogle?
|
128
|
+
Disallow: /products?
|
129
|
+
Disallow: /froogle_
|
130
|
+
Disallow: /product_
|
131
|
+
Disallow: /products_
|
132
|
+
Disallow: /products;
|
133
|
+
Disallow: /print
|
134
|
+
Disallow: /books/
|
135
|
+
Disallow: /bkshp?*q=*
|
136
|
+
Disallow: /books?*q=*
|
137
|
+
Disallow: /books?*output=*
|
138
|
+
Disallow: /books?*pg=*
|
139
|
+
Disallow: /books?*jtp=*
|
140
|
+
Disallow: /books?*jscmd=*
|
141
|
+
Disallow: /books?*buy=*
|
142
|
+
Disallow: /books?*zoom=*
|
143
|
+
Allow: /books?*q=related:*
|
144
|
+
Allow: /books?*q=editions:*
|
145
|
+
Allow: /books?*q=subject:*
|
146
|
+
Allow: /books/about
|
147
|
+
Allow: /booksrightsholders
|
148
|
+
Allow: /books?*zoom=1*
|
149
|
+
Allow: /books?*zoom=5*
|
150
|
+
Disallow: /ebooks/
|
151
|
+
Disallow: /ebooks?*q=*
|
152
|
+
Disallow: /ebooks?*output=*
|
153
|
+
Disallow: /ebooks?*pg=*
|
154
|
+
Disallow: /ebooks?*jscmd=*
|
155
|
+
Disallow: /ebooks?*buy=*
|
156
|
+
Disallow: /ebooks?*zoom=*
|
157
|
+
Allow: /ebooks?*q=related:*
|
158
|
+
Allow: /ebooks?*q=editions:*
|
159
|
+
Allow: /ebooks?*q=subject:*
|
160
|
+
Allow: /ebooks?*zoom=1*
|
161
|
+
Allow: /ebooks?*zoom=5*
|
162
|
+
Disallow: /patents?
|
163
|
+
Disallow: /patents/download/
|
164
|
+
Disallow: /patents/pdf/
|
165
|
+
Disallow: /patents/related/
|
166
|
+
Disallow: /scholar
|
167
|
+
Disallow: /citations?
|
168
|
+
Allow: /citations?user=
|
169
|
+
Disallow: /citations?*cstart=
|
170
|
+
Allow: /citations?view_op=new_profile
|
171
|
+
Allow: /citations?view_op=top_venues
|
172
|
+
Disallow: /complete
|
173
|
+
Disallow: /s?
|
174
|
+
Disallow: /sponsoredlinks
|
175
|
+
Disallow: /videosearch?
|
176
|
+
Disallow: /videopreview?
|
177
|
+
Disallow: /videoprograminfo?
|
178
|
+
Allow: /maps?*output=classic*
|
179
|
+
Allow: /maps?*file=
|
180
|
+
Allow: /maps/api/js?
|
181
|
+
Allow: /maps/d/
|
182
|
+
Disallow: /maps?
|
183
|
+
Disallow: /mapstt?
|
184
|
+
Disallow: /mapslt?
|
185
|
+
Disallow: /maps/stk/
|
186
|
+
Disallow: /maps/br?
|
187
|
+
Disallow: /mapabcpoi?
|
188
|
+
Disallow: /maphp?
|
189
|
+
Disallow: /mapprint?
|
190
|
+
Disallow: /maps/api/js/
|
191
|
+
Disallow: /maps/api/staticmap?
|
192
|
+
Disallow: /maps/api/streetview
|
193
|
+
Disallow: /mld?
|
194
|
+
Disallow: /staticmap?
|
195
|
+
Disallow: /places/
|
196
|
+
Allow: /places/$
|
197
|
+
Disallow: /maps/preview
|
198
|
+
Disallow: /maps/place
|
199
|
+
Disallow: /help/maps/streetview/partners/welcome/
|
200
|
+
Disallow: /help/maps/indoormaps/partners/
|
201
|
+
Disallow: /lochp?
|
202
|
+
Disallow: /center
|
203
|
+
Disallow: /ie?
|
204
|
+
Disallow: /sms/demo?
|
205
|
+
Disallow: /katrina?
|
206
|
+
Disallow: /blogsearch?
|
207
|
+
Disallow: /blogsearch/
|
208
|
+
Disallow: /blogsearch_feeds
|
209
|
+
Disallow: /advanced_blog_search
|
210
|
+
Disallow: /uds/
|
211
|
+
Disallow: /chart?
|
212
|
+
Disallow: /transit?
|
213
|
+
Disallow: /mbd?
|
214
|
+
Disallow: /extern_js/
|
215
|
+
Disallow: /xjs/
|
216
|
+
Disallow: /calendar/feeds/
|
217
|
+
Disallow: /calendar/ical/
|
218
|
+
Disallow: /cl2/feeds/
|
219
|
+
Disallow: /cl2/ical/
|
220
|
+
Disallow: /coop/directory
|
221
|
+
Disallow: /coop/manage
|
222
|
+
Disallow: /trends?
|
223
|
+
Disallow: /trends/music?
|
224
|
+
Disallow: /trends/hottrends?
|
225
|
+
Disallow: /trends/viz?
|
226
|
+
Disallow: /trends/embed.js?
|
227
|
+
Disallow: /trends/fetchComponent?
|
228
|
+
Disallow: /notebook/search?
|
229
|
+
Disallow: /musica
|
230
|
+
Disallow: /musicad
|
231
|
+
Disallow: /musicas
|
232
|
+
Disallow: /musicl
|
233
|
+
Disallow: /musics
|
234
|
+
Disallow: /musicsearch
|
235
|
+
Disallow: /musicsp
|
236
|
+
Disallow: /musiclp
|
237
|
+
Disallow: /browsersync
|
238
|
+
Disallow: /call
|
239
|
+
Disallow: /archivesearch?
|
240
|
+
Disallow: /archivesearch/url
|
241
|
+
Disallow: /archivesearch/advanced_search
|
242
|
+
Disallow: /base/reportbadoffer
|
243
|
+
Disallow: /urchin_test/
|
244
|
+
Disallow: /movies?
|
245
|
+
Disallow: /codesearch?
|
246
|
+
Disallow: /codesearch/feeds/search?
|
247
|
+
Disallow: /wapsearch?
|
248
|
+
Disallow: /safebrowsing
|
249
|
+
Allow: /safebrowsing/diagnostic
|
250
|
+
Allow: /safebrowsing/report_badware/
|
251
|
+
Allow: /safebrowsing/report_error/
|
252
|
+
Allow: /safebrowsing/report_phish/
|
253
|
+
Disallow: /reviews/search?
|
254
|
+
Disallow: /orkut/albums
|
255
|
+
Allow: /jsapi
|
256
|
+
Disallow: /views?
|
257
|
+
Disallow: /c/
|
258
|
+
Disallow: /cbk
|
259
|
+
Allow: /cbk?output=tile&cb_client=maps_sv
|
260
|
+
Disallow: /kh
|
261
|
+
Disallow: /vt
|
262
|
+
Disallow: /maps/vt
|
263
|
+
Disallow: /recharge/dashboard/car
|
264
|
+
Disallow: /recharge/dashboard/static/
|
265
|
+
Disallow: /translate_a/
|
266
|
+
Disallow: /translate_c
|
267
|
+
Disallow: /translate_f
|
268
|
+
Disallow: /translate_static/
|
269
|
+
Disallow: /translate_suggestion
|
270
|
+
Disallow: /profiles/me
|
271
|
+
Allow: /profiles
|
272
|
+
Disallow: /s2/profiles/me
|
273
|
+
Allow: /s2/profiles
|
274
|
+
Allow: /s2/oz
|
275
|
+
Allow: /s2/photos
|
276
|
+
Allow: /s2/search/social
|
277
|
+
Allow: /s2/static
|
278
|
+
Disallow: /s2
|
279
|
+
Disallow: /transconsole/portal/
|
280
|
+
Disallow: /gcc/
|
281
|
+
Disallow: /aclk
|
282
|
+
Disallow: /cse?
|
283
|
+
Disallow: /cse/home
|
284
|
+
Disallow: /cse/panel
|
285
|
+
Disallow: /cse/manage
|
286
|
+
Disallow: /tbproxy/
|
287
|
+
Disallow: /imesync/
|
288
|
+
Disallow: /shenghuo/search?
|
289
|
+
Disallow: /support/forum/search?
|
290
|
+
Disallow: /reviews/polls/
|
291
|
+
Disallow: /hosted/images/
|
292
|
+
Disallow: /ppob/?
|
293
|
+
Disallow: /ppob?
|
294
|
+
Disallow: /adwordsresellers
|
295
|
+
Disallow: /accounts/ClientLogin
|
296
|
+
Disallow: /accounts/ClientAuth
|
297
|
+
Disallow: /accounts/o8
|
298
|
+
Allow: /accounts/o8/id
|
299
|
+
Disallow: /topicsearch?q=
|
300
|
+
Disallow: /xfx7/
|
301
|
+
Disallow: /squared/api
|
302
|
+
Disallow: /squared/search
|
303
|
+
Disallow: /squared/table
|
304
|
+
Disallow: /toolkit/
|
305
|
+
Allow: /toolkit/*.html
|
306
|
+
Disallow: /globalmarketfinder/
|
307
|
+
Allow: /globalmarketfinder/*.html
|
308
|
+
Disallow: /qnasearch?
|
309
|
+
Disallow: /app/updates
|
310
|
+
Disallow: /sidewiki/entry/
|
311
|
+
Disallow: /quality_form?
|
312
|
+
Disallow: /labs/popgadget/search
|
313
|
+
Disallow: /buzz/post
|
314
|
+
Disallow: /compressiontest/
|
315
|
+
Disallow: /analytics/reporting/
|
316
|
+
Disallow: /analytics/admin/
|
317
|
+
Disallow: /analytics/web/
|
318
|
+
Disallow: /analytics/feeds/
|
319
|
+
Disallow: /analytics/settings/
|
320
|
+
Allow: /alerts/manage
|
321
|
+
Allow: /alerts/remove
|
322
|
+
Disallow: /alerts/
|
323
|
+
Allow: /alerts/$
|
324
|
+
Disallow: /ads/search?
|
325
|
+
Disallow: /ads/plan/action_plan?
|
326
|
+
Disallow: /ads/plan/api/
|
327
|
+
Disallow: /ads/hotels/partners
|
328
|
+
Disallow: /phone/compare/?
|
329
|
+
Disallow: /travel/clk
|
330
|
+
Disallow: /hotelfinder/rpc
|
331
|
+
Disallow: /hotels/rpc
|
332
|
+
Disallow: /flights/rpc
|
333
|
+
Disallow: /commercesearch/services/
|
334
|
+
Disallow: /evaluation/
|
335
|
+
Disallow: /chrome/browser/mobile/tour
|
336
|
+
Disallow: /compare/*/apply*
|
337
|
+
Disallow: /forms/perks/
|
338
|
+
Disallow: /baraza/*/search
|
339
|
+
Disallow: /baraza/*/report
|
340
|
+
Disallow: /shopping/suppliers/search
|
341
|
+
Disallow: /ct/
|
342
|
+
Disallow: /edu/cs4hs/
|
343
|
+
Disallow: /trustedstores/s/
|
344
|
+
Disallow: /trustedstores/tm2
|
345
|
+
Disallow: /trustedstores/verify
|
346
|
+
Disallow: /adwords/proposal
|
347
|
+
Disallow: /shopping/product/
|
348
|
+
Disallow: /shopping/seller
|
349
|
+
Disallow: /shopping/reviewer
|
350
|
+
Disallow: /about/careers/apply/
|
351
|
+
Disallow: /about/careers/applications/
|
352
|
+
Disallow: /landing/signout.html
|
353
|
+
Disallow: /webmasters/sitemaps/ping?
|
354
|
+
Disallow: /ping?
|
355
|
+
Allow: /gb/images
|
356
|
+
Allow: /gb/js
|
357
|
+
Disallow: /gallery/
|
358
|
+
Allow: /chromecast/setup$
|
359
|
+
Allow: /chromecast/setup/$
|
360
|
+
Disallow: /landing/now/ontap/
|
361
|
+
Sitemap: http://www.gstatic.com/culturalinstitute/sitemaps/www_google_com_culturalinstitute/sitemap-index.xml
|
362
|
+
Sitemap: http://www.gstatic.com/dictionary/static/sitemaps/sitemap_index.xml
|
363
|
+
Sitemap: http://www.gstatic.com/earth/gallery/sitemaps/sitemap.xml
|
364
|
+
Sitemap: http://www.gstatic.com/s2/sitemaps/profiles-sitemap.xml
|
365
|
+
Sitemap: http://www.gstatic.com/trends/websites/sitemaps/sitemapindex.xml
|
366
|
+
Sitemap: https://www.google.com/sitemap.xml
|
367
|
+
|
368
|
+
http_version:
|
369
|
+
recorded_at: Mon, 04 Jan 2016 13:39:15 GMT
|
370
|
+
- request:
|
371
|
+
method: get
|
372
|
+
uri: https://www.yahoo.com/robots.txt
|
373
|
+
body:
|
374
|
+
encoding: US-ASCII
|
375
|
+
string: ''
|
376
|
+
headers:
|
377
|
+
User-Agent:
|
378
|
+
- TestBot
|
379
|
+
Accept-Encoding:
|
380
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
381
|
+
Accept:
|
382
|
+
- "*/*"
|
383
|
+
response:
|
384
|
+
status:
|
385
|
+
code: 200
|
386
|
+
message: OK
|
387
|
+
headers:
|
388
|
+
Date:
|
389
|
+
- Mon, 04 Jan 2016 13:39:16 GMT
|
390
|
+
P3p:
|
391
|
+
- policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
|
392
|
+
TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
|
393
|
+
ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
|
394
|
+
Cache-Control:
|
395
|
+
- private
|
396
|
+
Last-Modified:
|
397
|
+
- Thu, 19 Nov 2015 00:31:02 GMT
|
398
|
+
Accept-Ranges:
|
399
|
+
- bytes
|
400
|
+
Vary:
|
401
|
+
- Accept-Encoding
|
402
|
+
Content-Type:
|
403
|
+
- text/plain; charset=utf-8
|
404
|
+
Age:
|
405
|
+
- '2'
|
406
|
+
Via:
|
407
|
+
- http/1.1 usproxy2.fp.gq1.yahoo.com (ApacheTrafficServer), http/1.1 ir2.fp.sg3.yahoo.com
|
408
|
+
(ApacheTrafficServer)
|
409
|
+
Server:
|
410
|
+
- ATS
|
411
|
+
Transfer-Encoding:
|
412
|
+
- chunked
|
413
|
+
Connection:
|
414
|
+
- keep-alive
|
415
|
+
Y-Trace:
|
416
|
+
- BAEAQAAAAAADb4_wm_pNEAAAAAAAAAAAGXeCK6w0SUwAAAAAAAAAAAAFKII_Uu55AAUogj9WSEhTfIBlAAAAAA--
|
417
|
+
body:
|
418
|
+
encoding: ASCII-8BIT
|
419
|
+
string: |
|
420
|
+
User-agent: *
|
421
|
+
Disallow: /p/
|
422
|
+
Disallow: /r/
|
423
|
+
Disallow: /bin/
|
424
|
+
Disallow: /includes/
|
425
|
+
Disallow: /blank.html
|
426
|
+
Disallow: /_td_api
|
427
|
+
Disallow: /_tdpp_api
|
428
|
+
Disallow: /_remote
|
429
|
+
Disallow: /_multiremote
|
430
|
+
Disallow: /_tdhl_api
|
431
|
+
|
432
|
+
Sitemap: https://www.yahoo.com/food/sitemaps/sitemap_index_us_en-US.xml.gz
|
433
|
+
Sitemap: https://www.yahoo.com/tech/sitemaps/sitemap_index_us_en-US.xml.gz
|
434
|
+
Sitemap: https://www.yahoo.com/travel/sitemaps/sitemap_index_us_en-US.xml.gz
|
435
|
+
Sitemap: https://www.yahoo.com/movies/sitemaps/sitemap_index_us_en-US.xml.gz
|
436
|
+
Sitemap: https://www.yahoo.com/beauty/sitemaps/sitemap_index_us_en-US.xml.gz
|
437
|
+
Sitemap: https://www.yahoo.com/health/sitemaps/sitemap_index_us_en-US.xml.gz
|
438
|
+
Sitemap: https://www.yahoo.com/style/sitemaps/sitemap_index_us_en-US.xml.gz
|
439
|
+
Sitemap: https://www.yahoo.com/makers/sitemaps/sitemap_index_us_en-US.xml.gz
|
440
|
+
Sitemap: https://www.yahoo.com/parenting/sitemaps/sitemap_index_us_en-US.xml.gz
|
441
|
+
Sitemap: https://www.yahoo.com/music/sitemaps/sitemap_index_us_en-US.xml.gz
|
442
|
+
Sitemap: https://www.yahoo.com/tv/sitemaps/sitemap_index_us_en-US.xml.gz
|
443
|
+
Sitemap: https://www.yahoo.com/politics/sitemaps/sitemap_index_us_en-US.xml.gz
|
444
|
+
Sitemap: https://www.yahoo.com/autos/sitemaps/sitemap_index_us_en-US.xml.gz
|
445
|
+
Sitemap: https://www.yahoo.com/katiecouric/sitemaps/sitemap_index_us_en-US.xml.gz
|
446
|
+
Sitemap: https://www.yahoo.com/digest/sitemap.xml
|
447
|
+
http_version:
|
448
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
449
|
+
- request:
|
450
|
+
method: get
|
451
|
+
uri: http://www.apple.com/robots.txt
|
452
|
+
body:
|
453
|
+
encoding: US-ASCII
|
454
|
+
string: ''
|
455
|
+
headers:
|
456
|
+
User-Agent:
|
457
|
+
- TestBot
|
458
|
+
Accept-Encoding:
|
459
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
460
|
+
Accept:
|
461
|
+
- "*/*"
|
462
|
+
response:
|
463
|
+
status:
|
464
|
+
code: 200
|
465
|
+
message: OK
|
466
|
+
headers:
|
467
|
+
Last-Modified:
|
468
|
+
- Thu, 22 Oct 2015 00:20:47 GMT
|
469
|
+
Server:
|
470
|
+
- Apache
|
471
|
+
Nncoection:
|
472
|
+
- close
|
473
|
+
Accept-Ranges:
|
474
|
+
- bytes
|
475
|
+
Content-Length:
|
476
|
+
- '6902'
|
477
|
+
Content-Type:
|
478
|
+
- text/plain; charset=UTF-8
|
479
|
+
Cache-Control:
|
480
|
+
- max-age=561
|
481
|
+
Expires:
|
482
|
+
- Mon, 04 Jan 2016 13:48:38 GMT
|
483
|
+
Date:
|
484
|
+
- Mon, 04 Jan 2016 13:39:17 GMT
|
485
|
+
Connection:
|
486
|
+
- keep-alive
|
487
|
+
body:
|
488
|
+
encoding: UTF-8
|
489
|
+
string: "# robots.txt for http://www.apple.com/\n\nUser-agent: *\nDisallow:
|
490
|
+
/*/includes/*\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
491
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
492
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
493
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/answer/vote*\nDisallow: /*/shop/bag*\nDisallow:
|
494
|
+
/*/shop/browse/campaigns/mobile_overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
495
|
+
/*/shop/favorites*\nDisallow: /*/shop/mobile/olss_error*\nDisallow: /*/shop/mobilex/*\nDisallow:
|
496
|
+
/*/shop/order/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
497
|
+
/*/shop/question/unsubscribe/\nDisallow: /*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow:
|
498
|
+
/*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
499
|
+
/*/shop/store/feeds/*\nDisallow: /*/shop/variationSelection\nDisallow: /*_adc_*/shop/\nDisallow:
|
500
|
+
/*_aoc_*/shop/\nDisallow: /*_edu_*/shop/\nDisallow: /*_enterprise*/shop/\nDisallow:
|
501
|
+
/*_internal-epp-discounted*/shop/\nDisallow: /*_k12nonbts*/shop/\nDisallow:
|
502
|
+
/*_kiosk*/shop/\nDisallow: /*_nonbts*/shop/\nDisallow: /*_qpromo*/shop/\nDisallow:
|
503
|
+
/*_refurb-discounted*/shop/\nDisallow: /cn/se/*\nDisallow: /retail/availability*\nDisallow:
|
504
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
505
|
+
/search/*\nDisallow: /shop/*signed_in_account*\nDisallow: /shop/*sign_in*\nDisallow:
|
506
|
+
/shop/*sign_out*\nDisallow: /shop/*WebObjects/*\nDisallow: /shop/1-800-MY-APPLE/*\nDisallow:
|
507
|
+
/shop/answer/vote*\nDisallow: /shop/bag*\nDisallow: /shop/browse/campaigns/mobile_overlay*\nDisallow:
|
508
|
+
/shop/button_availability*\nDisallow: /shop/favorites*\nDisallow: /shop/mobile/olss_error*\nDisallow:
|
509
|
+
/shop/mobilex/\nDisallow: /shop/order/*\nDisallow: /shop/question/answer/report*\nDisallow:
|
510
|
+
/shop/question/subscribe*\nDisallow: /shop/question/unsubscribe/\nDisallow:
|
511
|
+
/shop/review/vote*\nDisallow: /shop/reviews/report*\nDisallow: /shop/rs-mvt/rel/*\nDisallow:
|
512
|
+
/shop/search/*\nDisallow: /shop/sentry*\nDisallow: /shop/socialsharing/*\nDisallow:
|
513
|
+
/shop/store/feeds/*\nDisallow: /shop/variationSelection*\nDisallow: /tmall*\nAllow:
|
514
|
+
/ac/globalnav/2.0/*/images/ac-globalnav/globalnav/search/* \t\n\nUser-agent:
|
515
|
+
Baiduspider\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
516
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
517
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
518
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
519
|
+
/*/shop/browse/overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
520
|
+
/*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow: /*/shop/checkout*\nDisallow:
|
521
|
+
/*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow: /*/shop/identify_user*\nDisallow:
|
522
|
+
/*/shop/mobile/checkout/start*\nDisallow: /*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow:
|
523
|
+
/*/shop/question/subscribe*\nDisallow: /*/shop/question/unsubscribe/*\nDisallow:
|
524
|
+
/*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow:
|
525
|
+
/*/shop/sentry*\nDisallow: /*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
526
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
527
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
528
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
529
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/vieworder*\nDisallow: /*/variationSelection*\nDisallow:
|
530
|
+
/ae/*\nDisallow: /am/*\nDisallow: /asia/*\nDisallow: /at/*\nDisallow: /au/*\nDisallow:
|
531
|
+
/befr/*\nDisallow: /benl/*\nDisallow: /bg/*\nDisallow: /bh/*\nDisallow: /br/*\nDisallow:
|
532
|
+
/bw/*\nDisallow: /ca/*\nDisallow: /ca/fr/*\nDisallow: /cf/*\nDisallow: /chde/*\nDisallow:
|
533
|
+
/chfr/*\nDisallow: /ci/*\nDisallow: /cl/*\nDisallow: /cm/*\nDisallow: /cn/se/*\nDisallow:
|
534
|
+
/co/*\nDisallow: /cz/*\nDisallow: /de/*\nDisallow: /dk/*\nDisallow: /ee/*\nDisallow:
|
535
|
+
/eg/*\nDisallow: /es/*\nDisallow: /fi/*\nDisallow: /fr/*\nDisallow: /gn/*\nDisallow:
|
536
|
+
/gq/*\nDisallow: /gr/*\nDisallow: /gw/*\nDisallow: /hk/*\nDisallow: /hk/en/*\nDisallow:
|
537
|
+
/hr/*\nDisallow: /hu/*\nDisallow: /id/*\nDisallow: /ie/*\nDisallow: /il/*\nDisallow:
|
538
|
+
/in/*\nDisallow: /it/*\nDisallow: /jo/*\nDisallow: /jp/*\nDisallow: /ke/*\nDisallow:
|
539
|
+
/kr/*\nDisallow: /kw/*\nDisallow: /la/*\nDisallow: /lae/*\nDisallow: /li/*\nDisallow:
|
540
|
+
/lt/*\nDisallow: /lu/*\nDisallow: /lv/*\nDisallow: /ma/*\nDisallow: /md/*\nDisallow:
|
541
|
+
/me/*\nDisallow: /mg/*\nDisallow: /mk/*\nDisallow: /ml/*\nDisallow: /mt/*\nDisallow:
|
542
|
+
/mu/*\nDisallow: /mx/*\nDisallow: /my/*\nDisallow: /mz/*\nDisallow: /ne/*\nDisallow:
|
543
|
+
/ng/*\nDisallow: /nl/*\nDisallow: /no/*\nDisallow: /nz/*\nDisallow: /om/*\nDisallow:
|
544
|
+
/ph/*\nDisallow: /pl/*\nDisallow: /pt/*\nDisallow: /qa/*\nDisallow: /retail/availability*\nDisallow:
|
545
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
546
|
+
/ro/*\nDisallow: /ru/*\nDisallow: /sa/*\nDisallow: /se/*\nDisallow: /search/*\nDisallow:
|
547
|
+
/sg/*\nDisallow: /shop/*\nDisallow: /si/*\nDisallow: /sk/*\nDisallow: /sn/*\nDisallow:
|
548
|
+
/th/*\nDisallow: /tmall/*\nDisallow: /tn/*\nDisallow: /tr/*\nDisallow: /tw/*\nDisallow:
|
549
|
+
/ug/*\nDisallow: /uk/*\nDisallow: /vn/*\nDisallow: /za/*\n\nUser-agent: HaoSouSpider\nDisallow:
|
550
|
+
/*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
551
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
552
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
553
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
554
|
+
/*/shop/button_availability*\nDisallow: /*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow:
|
555
|
+
/*/shop/checkout*\nDisallow: /*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow:
|
556
|
+
/*/shop/identify_user*\nDisallow: /*/shop/mobile/checkout/start*\nDisallow:
|
557
|
+
/*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
558
|
+
/*/shop/question/unsubscribe/*\nDisallow: /*/shop/review/vote*\nDisallow:
|
559
|
+
/*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow:
|
560
|
+
/*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
561
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
562
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
563
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
564
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/variationSelection*\nDisallow: /*/shop/vieworder*\nDisallow:
|
565
|
+
/cn/se/*\nDisallow: /retail/availability*\nDisallow: /retail/availabilitySearch*\nDisallow:
|
566
|
+
/retail/pickupEligibility*\nDisallow: /search/*\nDisallow: /shop/bag*\nDisallow:
|
567
|
+
/shop/search/*\nDisallow: /tmall/*\n\nSitemap: http://www.apple.com/shop/sitemap.xml\nSitemap:
|
568
|
+
http://www.apple.com/sitemap.xml\n"
|
569
|
+
http_version:
|
570
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
571
|
+
- request:
|
572
|
+
method: get
|
573
|
+
uri: http://www.apple.com/robots.txt
|
574
|
+
body:
|
575
|
+
encoding: US-ASCII
|
576
|
+
string: ''
|
577
|
+
headers:
|
578
|
+
User-Agent:
|
579
|
+
- TestBaiduspider
|
580
|
+
Accept-Encoding:
|
581
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
582
|
+
Accept:
|
583
|
+
- "*/*"
|
584
|
+
response:
|
585
|
+
status:
|
586
|
+
code: 200
|
587
|
+
message: OK
|
588
|
+
headers:
|
589
|
+
Last-Modified:
|
590
|
+
- Thu, 22 Oct 2015 00:20:47 GMT
|
591
|
+
Server:
|
592
|
+
- Apache
|
593
|
+
Nncoection:
|
594
|
+
- close
|
595
|
+
Accept-Ranges:
|
596
|
+
- bytes
|
597
|
+
Content-Length:
|
598
|
+
- '6902'
|
599
|
+
Content-Type:
|
600
|
+
- text/plain; charset=UTF-8
|
601
|
+
Cache-Control:
|
602
|
+
- max-age=417
|
603
|
+
Expires:
|
604
|
+
- Mon, 04 Jan 2016 13:46:14 GMT
|
605
|
+
Date:
|
606
|
+
- Mon, 04 Jan 2016 13:39:17 GMT
|
607
|
+
Connection:
|
608
|
+
- keep-alive
|
609
|
+
body:
|
610
|
+
encoding: UTF-8
|
611
|
+
string: "# robots.txt for http://www.apple.com/\n\nUser-agent: *\nDisallow:
|
612
|
+
/*/includes/*\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
613
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
614
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
615
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/answer/vote*\nDisallow: /*/shop/bag*\nDisallow:
|
616
|
+
/*/shop/browse/campaigns/mobile_overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
617
|
+
/*/shop/favorites*\nDisallow: /*/shop/mobile/olss_error*\nDisallow: /*/shop/mobilex/*\nDisallow:
|
618
|
+
/*/shop/order/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
619
|
+
/*/shop/question/unsubscribe/\nDisallow: /*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow:
|
620
|
+
/*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
621
|
+
/*/shop/store/feeds/*\nDisallow: /*/shop/variationSelection\nDisallow: /*_adc_*/shop/\nDisallow:
|
622
|
+
/*_aoc_*/shop/\nDisallow: /*_edu_*/shop/\nDisallow: /*_enterprise*/shop/\nDisallow:
|
623
|
+
/*_internal-epp-discounted*/shop/\nDisallow: /*_k12nonbts*/shop/\nDisallow:
|
624
|
+
/*_kiosk*/shop/\nDisallow: /*_nonbts*/shop/\nDisallow: /*_qpromo*/shop/\nDisallow:
|
625
|
+
/*_refurb-discounted*/shop/\nDisallow: /cn/se/*\nDisallow: /retail/availability*\nDisallow:
|
626
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
627
|
+
/search/*\nDisallow: /shop/*signed_in_account*\nDisallow: /shop/*sign_in*\nDisallow:
|
628
|
+
/shop/*sign_out*\nDisallow: /shop/*WebObjects/*\nDisallow: /shop/1-800-MY-APPLE/*\nDisallow:
|
629
|
+
/shop/answer/vote*\nDisallow: /shop/bag*\nDisallow: /shop/browse/campaigns/mobile_overlay*\nDisallow:
|
630
|
+
/shop/button_availability*\nDisallow: /shop/favorites*\nDisallow: /shop/mobile/olss_error*\nDisallow:
|
631
|
+
/shop/mobilex/\nDisallow: /shop/order/*\nDisallow: /shop/question/answer/report*\nDisallow:
|
632
|
+
/shop/question/subscribe*\nDisallow: /shop/question/unsubscribe/\nDisallow:
|
633
|
+
/shop/review/vote*\nDisallow: /shop/reviews/report*\nDisallow: /shop/rs-mvt/rel/*\nDisallow:
|
634
|
+
/shop/search/*\nDisallow: /shop/sentry*\nDisallow: /shop/socialsharing/*\nDisallow:
|
635
|
+
/shop/store/feeds/*\nDisallow: /shop/variationSelection*\nDisallow: /tmall*\nAllow:
|
636
|
+
/ac/globalnav/2.0/*/images/ac-globalnav/globalnav/search/* \t\n\nUser-agent:
|
637
|
+
Baiduspider\nDisallow: /*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
638
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
639
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
640
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
641
|
+
/*/shop/browse/overlay*\nDisallow: /*/shop/button_availability*\nDisallow:
|
642
|
+
/*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow: /*/shop/checkout*\nDisallow:
|
643
|
+
/*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow: /*/shop/identify_user*\nDisallow:
|
644
|
+
/*/shop/mobile/checkout/start*\nDisallow: /*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow:
|
645
|
+
/*/shop/question/subscribe*\nDisallow: /*/shop/question/unsubscribe/*\nDisallow:
|
646
|
+
/*/shop/review/vote*\nDisallow: /*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow:
|
647
|
+
/*/shop/sentry*\nDisallow: /*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
648
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
649
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
650
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
651
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/vieworder*\nDisallow: /*/variationSelection*\nDisallow:
|
652
|
+
/ae/*\nDisallow: /am/*\nDisallow: /asia/*\nDisallow: /at/*\nDisallow: /au/*\nDisallow:
|
653
|
+
/befr/*\nDisallow: /benl/*\nDisallow: /bg/*\nDisallow: /bh/*\nDisallow: /br/*\nDisallow:
|
654
|
+
/bw/*\nDisallow: /ca/*\nDisallow: /ca/fr/*\nDisallow: /cf/*\nDisallow: /chde/*\nDisallow:
|
655
|
+
/chfr/*\nDisallow: /ci/*\nDisallow: /cl/*\nDisallow: /cm/*\nDisallow: /cn/se/*\nDisallow:
|
656
|
+
/co/*\nDisallow: /cz/*\nDisallow: /de/*\nDisallow: /dk/*\nDisallow: /ee/*\nDisallow:
|
657
|
+
/eg/*\nDisallow: /es/*\nDisallow: /fi/*\nDisallow: /fr/*\nDisallow: /gn/*\nDisallow:
|
658
|
+
/gq/*\nDisallow: /gr/*\nDisallow: /gw/*\nDisallow: /hk/*\nDisallow: /hk/en/*\nDisallow:
|
659
|
+
/hr/*\nDisallow: /hu/*\nDisallow: /id/*\nDisallow: /ie/*\nDisallow: /il/*\nDisallow:
|
660
|
+
/in/*\nDisallow: /it/*\nDisallow: /jo/*\nDisallow: /jp/*\nDisallow: /ke/*\nDisallow:
|
661
|
+
/kr/*\nDisallow: /kw/*\nDisallow: /la/*\nDisallow: /lae/*\nDisallow: /li/*\nDisallow:
|
662
|
+
/lt/*\nDisallow: /lu/*\nDisallow: /lv/*\nDisallow: /ma/*\nDisallow: /md/*\nDisallow:
|
663
|
+
/me/*\nDisallow: /mg/*\nDisallow: /mk/*\nDisallow: /ml/*\nDisallow: /mt/*\nDisallow:
|
664
|
+
/mu/*\nDisallow: /mx/*\nDisallow: /my/*\nDisallow: /mz/*\nDisallow: /ne/*\nDisallow:
|
665
|
+
/ng/*\nDisallow: /nl/*\nDisallow: /no/*\nDisallow: /nz/*\nDisallow: /om/*\nDisallow:
|
666
|
+
/ph/*\nDisallow: /pl/*\nDisallow: /pt/*\nDisallow: /qa/*\nDisallow: /retail/availability*\nDisallow:
|
667
|
+
/retail/availabilitySearch*\nDisallow: /retail/pickupEligibility*\nDisallow:
|
668
|
+
/ro/*\nDisallow: /ru/*\nDisallow: /sa/*\nDisallow: /se/*\nDisallow: /search/*\nDisallow:
|
669
|
+
/sg/*\nDisallow: /shop/*\nDisallow: /si/*\nDisallow: /sk/*\nDisallow: /sn/*\nDisallow:
|
670
|
+
/th/*\nDisallow: /tmall/*\nDisallow: /tn/*\nDisallow: /tr/*\nDisallow: /tw/*\nDisallow:
|
671
|
+
/ug/*\nDisallow: /uk/*\nDisallow: /vn/*\nDisallow: /za/*\n\nUser-agent: HaoSouSpider\nDisallow:
|
672
|
+
/*/retail/availability*\nDisallow: /*/retail/availabilitySearch*\nDisallow:
|
673
|
+
/*/retail/pickupEligibility*\nDisallow: /*/search/*\nDisallow: /*/shop/*WebObjects/*\nDisallow:
|
674
|
+
/*/shop/1-800-MY-APPLE/*\nDisallow: /*/shop/2322-consumer*\nDisallow: /*/shop/account/setup*\nDisallow:
|
675
|
+
/*/shop/answer/vote*\nDisallow: /*/shop/browse/campaigns/mobile_overlay*\nDisallow:
|
676
|
+
/*/shop/button_availability*\nDisallow: /*/shop/bag*\nDisallow: /*/shop/change_password*\nDisallow:
|
677
|
+
/*/shop/checkout*\nDisallow: /*/shop/create_account*\nDisallow: /*/shop/favorites*\nDisallow:
|
678
|
+
/*/shop/identify_user*\nDisallow: /*/shop/mobile/checkout/start*\nDisallow:
|
679
|
+
/*/shop/mobilex/*\nDisallow: /*/shop/question/answer/report*\nDisallow: /*/shop/question/subscribe*\nDisallow:
|
680
|
+
/*/shop/question/unsubscribe/*\nDisallow: /*/shop/review/vote*\nDisallow:
|
681
|
+
/*/shop/reviews/report*\nDisallow: /*/shop/rs-mvt/rel/*\nDisallow: /*/shop/sentry*\nDisallow:
|
682
|
+
/*/shop/sentryx/change_password*\nDisallow: /*/shop/sentryx/create_account*\nDisallow:
|
683
|
+
/*/shop/sentryx/create_account_confirm*\nDisallow: /*/shop/sentryx/identify_user*\nDisallow:
|
684
|
+
/*/shop/sentryx/sign_in*\nDisallow: /*/shop/signed_in_account*\nDisallow:
|
685
|
+
/*/shop/sign_in*\nDisallow: /*/shop/sign_out*\nDisallow: /*/shop/socialsharing/*\nDisallow:
|
686
|
+
/*/shop/storeConfig*\nDisallow: /*/shop/variationSelection*\nDisallow: /*/shop/vieworder*\nDisallow:
|
687
|
+
/cn/se/*\nDisallow: /retail/availability*\nDisallow: /retail/availabilitySearch*\nDisallow:
|
688
|
+
/retail/pickupEligibility*\nDisallow: /search/*\nDisallow: /shop/bag*\nDisallow:
|
689
|
+
/shop/search/*\nDisallow: /tmall/*\n\nSitemap: http://www.apple.com/shop/sitemap.xml\nSitemap:
|
690
|
+
http://www.apple.com/sitemap.xml\n"
|
691
|
+
http_version:
|
692
|
+
recorded_at: Mon, 04 Jan 2016 13:39:17 GMT
|
693
|
+
- request:
|
694
|
+
method: get
|
695
|
+
uri: https://github.com/robots.txt
|
696
|
+
body:
|
697
|
+
encoding: US-ASCII
|
698
|
+
string: ''
|
699
|
+
headers:
|
700
|
+
User-Agent:
|
701
|
+
- TestBot
|
702
|
+
Accept-Encoding:
|
703
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
704
|
+
Accept:
|
705
|
+
- "*/*"
|
706
|
+
response:
|
707
|
+
status:
|
708
|
+
code: 200
|
709
|
+
message: OK
|
710
|
+
headers:
|
711
|
+
Server:
|
712
|
+
- GitHub.com
|
713
|
+
Date:
|
714
|
+
- Mon, 04 Jan 2016 13:39:18 GMT
|
715
|
+
Content-Type:
|
716
|
+
- text/plain
|
717
|
+
Last-Modified:
|
718
|
+
- Mon, 04 Jan 2016 13:28:38 GMT
|
719
|
+
Transfer-Encoding:
|
720
|
+
- chunked
|
721
|
+
Etag:
|
722
|
+
- W/"568a7386-6e36"
|
723
|
+
Vary:
|
724
|
+
- Accept-Encoding
|
725
|
+
X-Served-By:
|
726
|
+
- a568c03544f42dddf712bab3bfd562fd
|
727
|
+
X-Github-Request-Id:
|
728
|
+
- 7C27244A:448A:3EB799EF:568A7605
|
729
|
+
body:
|
730
|
+
encoding: ASCII-8BIT
|
731
|
+
string: |
|
732
|
+
# If you would like to crawl GitHub contact us at support@github.com.
|
733
|
+
# We also provide an extensive API: https://developer.github.com/
|
734
|
+
|
735
|
+
User-agent: CCBot
|
736
|
+
Allow: /*/*/tree/master
|
737
|
+
Allow: /*/*/blob/master
|
738
|
+
Disallow: /ekansa/Open-Context-Data
|
739
|
+
Disallow: /ekansa/opencontext-*
|
740
|
+
Disallow: /*/*/pulse
|
741
|
+
Disallow: /*/*/tree/*
|
742
|
+
Disallow: /*/*/blob/*
|
743
|
+
Disallow: /*/*/wiki/*/*
|
744
|
+
Disallow: /gist/*/*/*
|
745
|
+
Disallow: /oembed
|
746
|
+
Disallow: /*/forks
|
747
|
+
Disallow: /*/stars
|
748
|
+
Disallow: /*/download
|
749
|
+
Disallow: /*/revisions
|
750
|
+
Disallow: /*/*/issues/new
|
751
|
+
Disallow: /*/*/issues/search
|
752
|
+
Disallow: /*/*/commits/*/*
|
753
|
+
Disallow: /*/*/commits/*?author
|
754
|
+
Disallow: /*/*/commits/*?path
|
755
|
+
Disallow: /*/*/branches
|
756
|
+
Disallow: /*/*/tags
|
757
|
+
Disallow: /*/*/contributors
|
758
|
+
Disallow: /*/*/comments
|
759
|
+
Disallow: /*/*/stargazers
|
760
|
+
Disallow: /*/*/search
|
761
|
+
Disallow: /*/tarball/
|
762
|
+
Disallow: /*/zipball/
|
763
|
+
Disallow: /*/*/archive/
|
764
|
+
Disallow: /raw/*
|
765
|
+
Disallow: /*/followers
|
766
|
+
Disallow: /*/following
|
767
|
+
Disallow: /stars/*
|
768
|
+
Disallow: /*/blame/
|
769
|
+
Disallow: /*/watchers
|
770
|
+
Disallow: /*/network
|
771
|
+
Disallow: /*/graphs
|
772
|
+
Disallow: /*/raw/
|
773
|
+
Disallow: /*/compare/
|
774
|
+
Disallow: /*/cache/
|
775
|
+
Disallow: /*/*/blame/
|
776
|
+
Disallow: /*/*/watchers
|
777
|
+
Disallow: /*/*/network
|
778
|
+
Disallow: /*/*/graphs
|
779
|
+
Disallow: /*/*/raw/
|
780
|
+
Disallow: /*/*/compare/
|
781
|
+
Disallow: /*/*/cache/
|
782
|
+
Disallow: /*.git
|
783
|
+
Disallow: /*.git/
|
784
|
+
Disallow: /search/advanced
|
785
|
+
Disallow: /search
|
786
|
+
Disallow: /*q=
|
787
|
+
Disallow: /*.atom
|
788
|
+
Disallow: /login
|
789
|
+
|
790
|
+
User-agent: coccoc
|
791
|
+
Allow: /*/*/tree/master
|
792
|
+
Allow: /*/*/blob/master
|
793
|
+
Disallow: /ekansa/Open-Context-Data
|
794
|
+
Disallow: /ekansa/opencontext-*
|
795
|
+
Disallow: /*/*/pulse
|
796
|
+
Disallow: /*/*/tree/*
|
797
|
+
Disallow: /*/*/blob/*
|
798
|
+
Disallow: /*/*/wiki/*/*
|
799
|
+
Disallow: /gist/*/*/*
|
800
|
+
Disallow: /oembed
|
801
|
+
Disallow: /*/forks
|
802
|
+
Disallow: /*/stars
|
803
|
+
Disallow: /*/download
|
804
|
+
Disallow: /*/revisions
|
805
|
+
Disallow: /*/*/issues/new
|
806
|
+
Disallow: /*/*/issues/search
|
807
|
+
Disallow: /*/*/commits/*/*
|
808
|
+
Disallow: /*/*/commits/*?author
|
809
|
+
Disallow: /*/*/commits/*?path
|
810
|
+
Disallow: /*/*/branches
|
811
|
+
Disallow: /*/*/tags
|
812
|
+
Disallow: /*/*/contributors
|
813
|
+
Disallow: /*/*/comments
|
814
|
+
Disallow: /*/*/stargazers
|
815
|
+
Disallow: /*/*/search
|
816
|
+
Disallow: /*/tarball/
|
817
|
+
Disallow: /*/zipball/
|
818
|
+
Disallow: /*/*/archive/
|
819
|
+
Disallow: /raw/*
|
820
|
+
Disallow: /*/followers
|
821
|
+
Disallow: /*/following
|
822
|
+
Disallow: /stars/*
|
823
|
+
Disallow: /*/blame/
|
824
|
+
Disallow: /*/watchers
|
825
|
+
Disallow: /*/network
|
826
|
+
Disallow: /*/graphs
|
827
|
+
Disallow: /*/raw/
|
828
|
+
Disallow: /*/compare/
|
829
|
+
Disallow: /*/cache/
|
830
|
+
Disallow: /*/*/blame/
|
831
|
+
Disallow: /*/*/watchers
|
832
|
+
Disallow: /*/*/network
|
833
|
+
Disallow: /*/*/graphs
|
834
|
+
Disallow: /*/*/raw/
|
835
|
+
Disallow: /*/*/compare/
|
836
|
+
Disallow: /*/*/cache/
|
837
|
+
Disallow: /*.git
|
838
|
+
Disallow: /*.git/
|
839
|
+
Disallow: /search/advanced
|
840
|
+
Disallow: /search
|
841
|
+
Disallow: /*q=
|
842
|
+
Disallow: /*.atom
|
843
|
+
Disallow: /login
|
844
|
+
|
845
|
+
User-agent: dotbot
|
846
|
+
Allow: /*/*/tree/master
|
847
|
+
Allow: /*/*/blob/master
|
848
|
+
Disallow: /ekansa/Open-Context-Data
|
849
|
+
Disallow: /ekansa/opencontext-*
|
850
|
+
Disallow: /*/*/pulse
|
851
|
+
Disallow: /*/*/tree/*
|
852
|
+
Disallow: /*/*/blob/*
|
853
|
+
Disallow: /*/*/wiki/*/*
|
854
|
+
Disallow: /gist/*/*/*
|
855
|
+
Disallow: /oembed
|
856
|
+
Disallow: /*/forks
|
857
|
+
Disallow: /*/stars
|
858
|
+
Disallow: /*/download
|
859
|
+
Disallow: /*/revisions
|
860
|
+
Disallow: /*/*/issues/new
|
861
|
+
Disallow: /*/*/issues/search
|
862
|
+
Disallow: /*/*/commits/*/*
|
863
|
+
Disallow: /*/*/commits/*?author
|
864
|
+
Disallow: /*/*/commits/*?path
|
865
|
+
Disallow: /*/*/branches
|
866
|
+
Disallow: /*/*/tags
|
867
|
+
Disallow: /*/*/contributors
|
868
|
+
Disallow: /*/*/comments
|
869
|
+
Disallow: /*/*/stargazers
|
870
|
+
Disallow: /*/*/search
|
871
|
+
Disallow: /*/tarball/
|
872
|
+
Disallow: /*/zipball/
|
873
|
+
Disallow: /*/*/archive/
|
874
|
+
Disallow: /raw/*
|
875
|
+
Disallow: /*/followers
|
876
|
+
Disallow: /*/following
|
877
|
+
Disallow: /stars/*
|
878
|
+
Disallow: /*/blame/
|
879
|
+
Disallow: /*/watchers
|
880
|
+
Disallow: /*/network
|
881
|
+
Disallow: /*/graphs
|
882
|
+
Disallow: /*/raw/
|
883
|
+
Disallow: /*/compare/
|
884
|
+
Disallow: /*/cache/
|
885
|
+
Disallow: /*/*/blame/
|
886
|
+
Disallow: /*/*/watchers
|
887
|
+
Disallow: /*/*/network
|
888
|
+
Disallow: /*/*/graphs
|
889
|
+
Disallow: /*/*/raw/
|
890
|
+
Disallow: /*/*/compare/
|
891
|
+
Disallow: /*/*/cache/
|
892
|
+
Disallow: /*.git
|
893
|
+
Disallow: /*.git/
|
894
|
+
Disallow: /search/advanced
|
895
|
+
Disallow: /search
|
896
|
+
Disallow: /*q=
|
897
|
+
Disallow: /*.atom
|
898
|
+
Disallow: /login
|
899
|
+
|
900
|
+
User-agent: duckduckbot
|
901
|
+
Allow: /*/*/tree/master
|
902
|
+
Allow: /*/*/blob/master
|
903
|
+
Disallow: /ekansa/Open-Context-Data
|
904
|
+
Disallow: /ekansa/opencontext-*
|
905
|
+
Disallow: /*/*/pulse
|
906
|
+
Disallow: /*/*/tree/*
|
907
|
+
Disallow: /*/*/blob/*
|
908
|
+
Disallow: /*/*/wiki/*/*
|
909
|
+
Disallow: /gist/*/*/*
|
910
|
+
Disallow: /oembed
|
911
|
+
Disallow: /*/forks
|
912
|
+
Disallow: /*/stars
|
913
|
+
Disallow: /*/download
|
914
|
+
Disallow: /*/revisions
|
915
|
+
Disallow: /*/*/issues/new
|
916
|
+
Disallow: /*/*/issues/search
|
917
|
+
Disallow: /*/*/commits/*/*
|
918
|
+
Disallow: /*/*/commits/*?author
|
919
|
+
Disallow: /*/*/commits/*?path
|
920
|
+
Disallow: /*/*/branches
|
921
|
+
Disallow: /*/*/tags
|
922
|
+
Disallow: /*/*/contributors
|
923
|
+
Disallow: /*/*/comments
|
924
|
+
Disallow: /*/*/stargazers
|
925
|
+
Disallow: /*/*/search
|
926
|
+
Disallow: /*/tarball/
|
927
|
+
Disallow: /*/zipball/
|
928
|
+
Disallow: /*/*/archive/
|
929
|
+
Disallow: /raw/*
|
930
|
+
Disallow: /*/followers
|
931
|
+
Disallow: /*/following
|
932
|
+
Disallow: /stars/*
|
933
|
+
Disallow: /*/blame/
|
934
|
+
Disallow: /*/watchers
|
935
|
+
Disallow: /*/network
|
936
|
+
Disallow: /*/graphs
|
937
|
+
Disallow: /*/raw/
|
938
|
+
Disallow: /*/compare/
|
939
|
+
Disallow: /*/cache/
|
940
|
+
Disallow: /*/*/blame/
|
941
|
+
Disallow: /*/*/watchers
|
942
|
+
Disallow: /*/*/network
|
943
|
+
Disallow: /*/*/graphs
|
944
|
+
Disallow: /*/*/raw/
|
945
|
+
Disallow: /*/*/compare/
|
946
|
+
Disallow: /*/*/cache/
|
947
|
+
Disallow: /*.git
|
948
|
+
Disallow: /*.git/
|
949
|
+
Disallow: /search/advanced
|
950
|
+
Disallow: /search
|
951
|
+
Disallow: /*q=
|
952
|
+
Disallow: /*.atom
|
953
|
+
Disallow: /login
|
954
|
+
|
955
|
+
User-agent: EtaoSpider
|
956
|
+
Allow: /*/*/tree/master
|
957
|
+
Allow: /*/*/blob/master
|
958
|
+
Disallow: /ekansa/Open-Context-Data
|
959
|
+
Disallow: /ekansa/opencontext-*
|
960
|
+
Disallow: /*/*/pulse
|
961
|
+
Disallow: /*/*/tree/*
|
962
|
+
Disallow: /*/*/blob/*
|
963
|
+
Disallow: /*/*/wiki/*/*
|
964
|
+
Disallow: /gist/*/*/*
|
965
|
+
Disallow: /oembed
|
966
|
+
Disallow: /*/forks
|
967
|
+
Disallow: /*/stars
|
968
|
+
Disallow: /*/download
|
969
|
+
Disallow: /*/revisions
|
970
|
+
Disallow: /*/*/issues/new
|
971
|
+
Disallow: /*/*/issues/search
|
972
|
+
Disallow: /*/*/commits/*/*
|
973
|
+
Disallow: /*/*/commits/*?author
|
974
|
+
Disallow: /*/*/commits/*?path
|
975
|
+
Disallow: /*/*/branches
|
976
|
+
Disallow: /*/*/tags
|
977
|
+
Disallow: /*/*/contributors
|
978
|
+
Disallow: /*/*/comments
|
979
|
+
Disallow: /*/*/stargazers
|
980
|
+
Disallow: /*/*/search
|
981
|
+
Disallow: /*/tarball/
|
982
|
+
Disallow: /*/zipball/
|
983
|
+
Disallow: /*/*/archive/
|
984
|
+
Disallow: /raw/*
|
985
|
+
Disallow: /*/followers
|
986
|
+
Disallow: /*/following
|
987
|
+
Disallow: /stars/*
|
988
|
+
Disallow: /*/blame/
|
989
|
+
Disallow: /*/watchers
|
990
|
+
Disallow: /*/network
|
991
|
+
Disallow: /*/graphs
|
992
|
+
Disallow: /*/raw/
|
993
|
+
Disallow: /*/compare/
|
994
|
+
Disallow: /*/cache/
|
995
|
+
Disallow: /*/*/blame/
|
996
|
+
Disallow: /*/*/watchers
|
997
|
+
Disallow: /*/*/network
|
998
|
+
Disallow: /*/*/graphs
|
999
|
+
Disallow: /*/*/raw/
|
1000
|
+
Disallow: /*/*/compare/
|
1001
|
+
Disallow: /*/*/cache/
|
1002
|
+
Disallow: /*.git
|
1003
|
+
Disallow: /*.git/
|
1004
|
+
Disallow: /search/advanced
|
1005
|
+
Disallow: /search
|
1006
|
+
Disallow: /*q=
|
1007
|
+
Disallow: /*.atom
|
1008
|
+
Disallow: /login
|
1009
|
+
|
1010
|
+
User-agent: Googlebot
|
1011
|
+
Allow: /*/*/tree/master
|
1012
|
+
Allow: /*/*/blob/master
|
1013
|
+
Disallow: /ekansa/Open-Context-Data
|
1014
|
+
Disallow: /ekansa/opencontext-*
|
1015
|
+
Disallow: /*/*/pulse
|
1016
|
+
Disallow: /*/*/tree/*
|
1017
|
+
Disallow: /*/*/blob/*
|
1018
|
+
Disallow: /*/*/wiki/*/*
|
1019
|
+
Disallow: /gist/*/*/*
|
1020
|
+
Disallow: /oembed
|
1021
|
+
Disallow: /*/forks
|
1022
|
+
Disallow: /*/stars
|
1023
|
+
Disallow: /*/download
|
1024
|
+
Disallow: /*/revisions
|
1025
|
+
Disallow: /*/*/issues/new
|
1026
|
+
Disallow: /*/*/issues/search
|
1027
|
+
Disallow: /*/*/commits/*/*
|
1028
|
+
Disallow: /*/*/commits/*?author
|
1029
|
+
Disallow: /*/*/commits/*?path
|
1030
|
+
Disallow: /*/*/branches
|
1031
|
+
Disallow: /*/*/tags
|
1032
|
+
Disallow: /*/*/contributors
|
1033
|
+
Disallow: /*/*/comments
|
1034
|
+
Disallow: /*/*/stargazers
|
1035
|
+
Disallow: /*/*/search
|
1036
|
+
Disallow: /*/tarball/
|
1037
|
+
Disallow: /*/zipball/
|
1038
|
+
Disallow: /*/*/archive/
|
1039
|
+
Disallow: /raw/*
|
1040
|
+
Disallow: /*/followers
|
1041
|
+
Disallow: /*/following
|
1042
|
+
Disallow: /stars/*
|
1043
|
+
Disallow: /*/blame/
|
1044
|
+
Disallow: /*/watchers
|
1045
|
+
Disallow: /*/network
|
1046
|
+
Disallow: /*/graphs
|
1047
|
+
Disallow: /*/raw/
|
1048
|
+
Disallow: /*/compare/
|
1049
|
+
Disallow: /*/cache/
|
1050
|
+
Disallow: /*/*/blame/
|
1051
|
+
Disallow: /*/*/watchers
|
1052
|
+
Disallow: /*/*/network
|
1053
|
+
Disallow: /*/*/graphs
|
1054
|
+
Disallow: /*/*/raw/
|
1055
|
+
Disallow: /*/*/compare/
|
1056
|
+
Disallow: /*/*/cache/
|
1057
|
+
Disallow: /*.git
|
1058
|
+
Disallow: /*.git/
|
1059
|
+
Disallow: /search/advanced
|
1060
|
+
Disallow: /search
|
1061
|
+
Disallow: /*q=
|
1062
|
+
Disallow: /*.atom
|
1063
|
+
Disallow: /login
|
1064
|
+
|
1065
|
+
User-agent: HTTrack
|
1066
|
+
Allow: /*/*/tree/master
|
1067
|
+
Allow: /*/*/blob/master
|
1068
|
+
Disallow: /ekansa/Open-Context-Data
|
1069
|
+
Disallow: /ekansa/opencontext-*
|
1070
|
+
Disallow: /*/*/pulse
|
1071
|
+
Disallow: /*/*/tree/*
|
1072
|
+
Disallow: /*/*/blob/*
|
1073
|
+
Disallow: /*/*/wiki/*/*
|
1074
|
+
Disallow: /gist/*/*/*
|
1075
|
+
Disallow: /oembed
|
1076
|
+
Disallow: /*/forks
|
1077
|
+
Disallow: /*/stars
|
1078
|
+
Disallow: /*/download
|
1079
|
+
Disallow: /*/revisions
|
1080
|
+
Disallow: /*/*/issues/new
|
1081
|
+
Disallow: /*/*/issues/search
|
1082
|
+
Disallow: /*/*/commits/*/*
|
1083
|
+
Disallow: /*/*/commits/*?author
|
1084
|
+
Disallow: /*/*/commits/*?path
|
1085
|
+
Disallow: /*/*/branches
|
1086
|
+
Disallow: /*/*/tags
|
1087
|
+
Disallow: /*/*/contributors
|
1088
|
+
Disallow: /*/*/comments
|
1089
|
+
Disallow: /*/*/stargazers
|
1090
|
+
Disallow: /*/*/search
|
1091
|
+
Disallow: /*/tarball/
|
1092
|
+
Disallow: /*/zipball/
|
1093
|
+
Disallow: /*/*/archive/
|
1094
|
+
Disallow: /raw/*
|
1095
|
+
Disallow: /*/followers
|
1096
|
+
Disallow: /*/following
|
1097
|
+
Disallow: /stars/*
|
1098
|
+
Disallow: /*/blame/
|
1099
|
+
Disallow: /*/watchers
|
1100
|
+
Disallow: /*/network
|
1101
|
+
Disallow: /*/graphs
|
1102
|
+
Disallow: /*/raw/
|
1103
|
+
Disallow: /*/compare/
|
1104
|
+
Disallow: /*/cache/
|
1105
|
+
Disallow: /*/*/blame/
|
1106
|
+
Disallow: /*/*/watchers
|
1107
|
+
Disallow: /*/*/network
|
1108
|
+
Disallow: /*/*/graphs
|
1109
|
+
Disallow: /*/*/raw/
|
1110
|
+
Disallow: /*/*/compare/
|
1111
|
+
Disallow: /*/*/cache/
|
1112
|
+
Disallow: /*.git
|
1113
|
+
Disallow: /*.git/
|
1114
|
+
Disallow: /search/advanced
|
1115
|
+
Disallow: /search
|
1116
|
+
Disallow: /*q=
|
1117
|
+
Disallow: /*.atom
|
1118
|
+
Disallow: /login
|
1119
|
+
|
1120
|
+
User-agent: ia_archiver
|
1121
|
+
Allow: /*/*/tree/master
|
1122
|
+
Allow: /*/*/blob/master
|
1123
|
+
Disallow: /ekansa/Open-Context-Data
|
1124
|
+
Disallow: /ekansa/opencontext-*
|
1125
|
+
Disallow: /*/*/pulse
|
1126
|
+
Disallow: /*/*/tree/*
|
1127
|
+
Disallow: /*/*/blob/*
|
1128
|
+
Disallow: /*/*/wiki/*/*
|
1129
|
+
Disallow: /gist/*/*/*
|
1130
|
+
Disallow: /oembed
|
1131
|
+
Disallow: /*/forks
|
1132
|
+
Disallow: /*/stars
|
1133
|
+
Disallow: /*/download
|
1134
|
+
Disallow: /*/revisions
|
1135
|
+
Disallow: /*/*/issues/new
|
1136
|
+
Disallow: /*/*/issues/search
|
1137
|
+
Disallow: /*/*/commits/*/*
|
1138
|
+
Disallow: /*/*/commits/*?author
|
1139
|
+
Disallow: /*/*/commits/*?path
|
1140
|
+
Disallow: /*/*/branches
|
1141
|
+
Disallow: /*/*/tags
|
1142
|
+
Disallow: /*/*/contributors
|
1143
|
+
Disallow: /*/*/comments
|
1144
|
+
Disallow: /*/*/stargazers
|
1145
|
+
Disallow: /*/*/search
|
1146
|
+
Disallow: /*/tarball/
|
1147
|
+
Disallow: /*/zipball/
|
1148
|
+
Disallow: /*/*/archive/
|
1149
|
+
Disallow: /raw/*
|
1150
|
+
Disallow: /*/followers
|
1151
|
+
Disallow: /*/following
|
1152
|
+
Disallow: /stars/*
|
1153
|
+
Disallow: /*/blame/
|
1154
|
+
Disallow: /*/watchers
|
1155
|
+
Disallow: /*/network
|
1156
|
+
Disallow: /*/graphs
|
1157
|
+
Disallow: /*/raw/
|
1158
|
+
Disallow: /*/compare/
|
1159
|
+
Disallow: /*/cache/
|
1160
|
+
Disallow: /*/*/blame/
|
1161
|
+
Disallow: /*/*/watchers
|
1162
|
+
Disallow: /*/*/network
|
1163
|
+
Disallow: /*/*/graphs
|
1164
|
+
Disallow: /*/*/raw/
|
1165
|
+
Disallow: /*/*/compare/
|
1166
|
+
Disallow: /*/*/cache/
|
1167
|
+
Disallow: /*.git
|
1168
|
+
Disallow: /*.git/
|
1169
|
+
Disallow: /search/advanced
|
1170
|
+
Disallow: /search
|
1171
|
+
Disallow: /*q=
|
1172
|
+
Disallow: /*.atom
|
1173
|
+
Disallow: /login
|
1174
|
+
|
1175
|
+
User-agent: IntuitGSACrawler
|
1176
|
+
Allow: /*/*/tree/master
|
1177
|
+
Allow: /*/*/blob/master
|
1178
|
+
Disallow: /ekansa/Open-Context-Data
|
1179
|
+
Disallow: /ekansa/opencontext-*
|
1180
|
+
Disallow: /*/*/pulse
|
1181
|
+
Disallow: /*/*/tree/*
|
1182
|
+
Disallow: /*/*/blob/*
|
1183
|
+
Disallow: /*/*/wiki/*/*
|
1184
|
+
Disallow: /gist/*/*/*
|
1185
|
+
Disallow: /oembed
|
1186
|
+
Disallow: /*/forks
|
1187
|
+
Disallow: /*/stars
|
1188
|
+
Disallow: /*/download
|
1189
|
+
Disallow: /*/revisions
|
1190
|
+
Disallow: /*/*/issues/new
|
1191
|
+
Disallow: /*/*/issues/search
|
1192
|
+
Disallow: /*/*/commits/*/*
|
1193
|
+
Disallow: /*/*/commits/*?author
|
1194
|
+
Disallow: /*/*/commits/*?path
|
1195
|
+
Disallow: /*/*/branches
|
1196
|
+
Disallow: /*/*/tags
|
1197
|
+
Disallow: /*/*/contributors
|
1198
|
+
Disallow: /*/*/comments
|
1199
|
+
Disallow: /*/*/stargazers
|
1200
|
+
Disallow: /*/*/search
|
1201
|
+
Disallow: /*/tarball/
|
1202
|
+
Disallow: /*/zipball/
|
1203
|
+
Disallow: /*/*/archive/
|
1204
|
+
Disallow: /raw/*
|
1205
|
+
Disallow: /*/followers
|
1206
|
+
Disallow: /*/following
|
1207
|
+
Disallow: /stars/*
|
1208
|
+
Disallow: /*/blame/
|
1209
|
+
Disallow: /*/watchers
|
1210
|
+
Disallow: /*/network
|
1211
|
+
Disallow: /*/graphs
|
1212
|
+
Disallow: /*/raw/
|
1213
|
+
Disallow: /*/compare/
|
1214
|
+
Disallow: /*/cache/
|
1215
|
+
Disallow: /*/*/blame/
|
1216
|
+
Disallow: /*/*/watchers
|
1217
|
+
Disallow: /*/*/network
|
1218
|
+
Disallow: /*/*/graphs
|
1219
|
+
Disallow: /*/*/raw/
|
1220
|
+
Disallow: /*/*/compare/
|
1221
|
+
Disallow: /*/*/cache/
|
1222
|
+
Disallow: /*.git
|
1223
|
+
Disallow: /*.git/
|
1224
|
+
Disallow: /search/advanced
|
1225
|
+
Disallow: /search
|
1226
|
+
Disallow: /*q=
|
1227
|
+
Disallow: /*.atom
|
1228
|
+
Disallow: /login
|
1229
|
+
|
1230
|
+
User-agent: Mail.RU_Bot
|
1231
|
+
Allow: /*/*/tree/master
|
1232
|
+
Allow: /*/*/blob/master
|
1233
|
+
Disallow: /ekansa/Open-Context-Data
|
1234
|
+
Disallow: /ekansa/opencontext-*
|
1235
|
+
Disallow: /*/*/pulse
|
1236
|
+
Disallow: /*/*/tree/*
|
1237
|
+
Disallow: /*/*/blob/*
|
1238
|
+
Disallow: /*/*/wiki/*/*
|
1239
|
+
Disallow: /gist/*/*/*
|
1240
|
+
Disallow: /oembed
|
1241
|
+
Disallow: /*/forks
|
1242
|
+
Disallow: /*/stars
|
1243
|
+
Disallow: /*/download
|
1244
|
+
Disallow: /*/revisions
|
1245
|
+
Disallow: /*/*/issues/new
|
1246
|
+
Disallow: /*/*/issues/search
|
1247
|
+
Disallow: /*/*/commits/*/*
|
1248
|
+
Disallow: /*/*/commits/*?author
|
1249
|
+
Disallow: /*/*/commits/*?path
|
1250
|
+
Disallow: /*/*/branches
|
1251
|
+
Disallow: /*/*/tags
|
1252
|
+
Disallow: /*/*/contributors
|
1253
|
+
Disallow: /*/*/comments
|
1254
|
+
Disallow: /*/*/stargazers
|
1255
|
+
Disallow: /*/*/search
|
1256
|
+
Disallow: /*/tarball/
|
1257
|
+
Disallow: /*/zipball/
|
1258
|
+
Disallow: /*/*/archive/
|
1259
|
+
Disallow: /raw/*
|
1260
|
+
Disallow: /*/followers
|
1261
|
+
Disallow: /*/following
|
1262
|
+
Disallow: /stars/*
|
1263
|
+
Disallow: /*/blame/
|
1264
|
+
Disallow: /*/watchers
|
1265
|
+
Disallow: /*/network
|
1266
|
+
Disallow: /*/graphs
|
1267
|
+
Disallow: /*/raw/
|
1268
|
+
Disallow: /*/compare/
|
1269
|
+
Disallow: /*/cache/
|
1270
|
+
Disallow: /*/*/blame/
|
1271
|
+
Disallow: /*/*/watchers
|
1272
|
+
Disallow: /*/*/network
|
1273
|
+
Disallow: /*/*/graphs
|
1274
|
+
Disallow: /*/*/raw/
|
1275
|
+
Disallow: /*/*/compare/
|
1276
|
+
Disallow: /*/*/cache/
|
1277
|
+
Disallow: /*.git
|
1278
|
+
Disallow: /*.git/
|
1279
|
+
Disallow: /search/advanced
|
1280
|
+
Disallow: /search
|
1281
|
+
Disallow: /*q=
|
1282
|
+
Disallow: /*.atom
|
1283
|
+
Disallow: /login
|
1284
|
+
|
1285
|
+
User-agent: msnbot
|
1286
|
+
Allow: /*/*/tree/master
|
1287
|
+
Allow: /*/*/blob/master
|
1288
|
+
Disallow: /ekansa/Open-Context-Data
|
1289
|
+
Disallow: /ekansa/opencontext-*
|
1290
|
+
Disallow: /*/*/pulse
|
1291
|
+
Disallow: /*/*/tree/*
|
1292
|
+
Disallow: /*/*/blob/*
|
1293
|
+
Disallow: /*/*/wiki/*/*
|
1294
|
+
Disallow: /gist/*/*/*
|
1295
|
+
Disallow: /oembed
|
1296
|
+
Disallow: /*/forks
|
1297
|
+
Disallow: /*/stars
|
1298
|
+
Disallow: /*/download
|
1299
|
+
Disallow: /*/revisions
|
1300
|
+
Disallow: /*/*/issues/new
|
1301
|
+
Disallow: /*/*/issues/search
|
1302
|
+
Disallow: /*/*/commits/*/*
|
1303
|
+
Disallow: /*/*/commits/*?author
|
1304
|
+
Disallow: /*/*/commits/*?path
|
1305
|
+
Disallow: /*/*/branches
|
1306
|
+
Disallow: /*/*/tags
|
1307
|
+
Disallow: /*/*/contributors
|
1308
|
+
Disallow: /*/*/comments
|
1309
|
+
Disallow: /*/*/stargazers
|
1310
|
+
Disallow: /*/*/search
|
1311
|
+
Disallow: /*/tarball/
|
1312
|
+
Disallow: /*/zipball/
|
1313
|
+
Disallow: /*/*/archive/
|
1314
|
+
Disallow: /raw/*
|
1315
|
+
Disallow: /*/followers
|
1316
|
+
Disallow: /*/following
|
1317
|
+
Disallow: /stars/*
|
1318
|
+
Disallow: /*/blame/
|
1319
|
+
Disallow: /*/watchers
|
1320
|
+
Disallow: /*/network
|
1321
|
+
Disallow: /*/graphs
|
1322
|
+
Disallow: /*/raw/
|
1323
|
+
Disallow: /*/compare/
|
1324
|
+
Disallow: /*/cache/
|
1325
|
+
Disallow: /*/*/blame/
|
1326
|
+
Disallow: /*/*/watchers
|
1327
|
+
Disallow: /*/*/network
|
1328
|
+
Disallow: /*/*/graphs
|
1329
|
+
Disallow: /*/*/raw/
|
1330
|
+
Disallow: /*/*/compare/
|
1331
|
+
Disallow: /*/*/cache/
|
1332
|
+
Disallow: /*.git
|
1333
|
+
Disallow: /*.git/
|
1334
|
+
Disallow: /search/advanced
|
1335
|
+
Disallow: /search
|
1336
|
+
Disallow: /*q=
|
1337
|
+
Disallow: /*.atom
|
1338
|
+
Disallow: /login
|
1339
|
+
|
1340
|
+
User-agent: Bingbot
|
1341
|
+
Allow: /*/*/tree/master
|
1342
|
+
Allow: /*/*/blob/master
|
1343
|
+
Disallow: /ekansa/Open-Context-Data
|
1344
|
+
Disallow: /ekansa/opencontext-*
|
1345
|
+
Disallow: /*/*/pulse
|
1346
|
+
Disallow: /*/*/tree/*
|
1347
|
+
Disallow: /*/*/blob/*
|
1348
|
+
Disallow: /*/*/wiki/*/*
|
1349
|
+
Disallow: /gist/*/*/*
|
1350
|
+
Disallow: /oembed
|
1351
|
+
Disallow: /*/forks
|
1352
|
+
Disallow: /*/stars
|
1353
|
+
Disallow: /*/download
|
1354
|
+
Disallow: /*/revisions
|
1355
|
+
Disallow: /*/*/issues/new
|
1356
|
+
Disallow: /*/*/issues/search
|
1357
|
+
Disallow: /*/*/commits/*/*
|
1358
|
+
Disallow: /*/*/commits/*?author
|
1359
|
+
Disallow: /*/*/commits/*?path
|
1360
|
+
Disallow: /*/*/branches
|
1361
|
+
Disallow: /*/*/tags
|
1362
|
+
Disallow: /*/*/contributors
|
1363
|
+
Disallow: /*/*/comments
|
1364
|
+
Disallow: /*/*/stargazers
|
1365
|
+
Disallow: /*/*/search
|
1366
|
+
Disallow: /*/tarball/
|
1367
|
+
Disallow: /*/zipball/
|
1368
|
+
Disallow: /*/*/archive/
|
1369
|
+
Disallow: /raw/*
|
1370
|
+
Disallow: /*/followers
|
1371
|
+
Disallow: /*/following
|
1372
|
+
Disallow: /stars/*
|
1373
|
+
Disallow: /*/blame/
|
1374
|
+
Disallow: /*/watchers
|
1375
|
+
Disallow: /*/network
|
1376
|
+
Disallow: /*/graphs
|
1377
|
+
Disallow: /*/raw/
|
1378
|
+
Disallow: /*/compare/
|
1379
|
+
Disallow: /*/cache/
|
1380
|
+
Disallow: /*/*/blame/
|
1381
|
+
Disallow: /*/*/watchers
|
1382
|
+
Disallow: /*/*/network
|
1383
|
+
Disallow: /*/*/graphs
|
1384
|
+
Disallow: /*/*/raw/
|
1385
|
+
Disallow: /*/*/compare/
|
1386
|
+
Disallow: /*/*/cache/
|
1387
|
+
Disallow: /*.git
|
1388
|
+
Disallow: /*.git/
|
1389
|
+
Disallow: /search/advanced
|
1390
|
+
Disallow: /search
|
1391
|
+
Disallow: /*q=
|
1392
|
+
Disallow: /*.atom
|
1393
|
+
Disallow: /login
|
1394
|
+
|
1395
|
+
User-agent: naverbot
|
1396
|
+
Allow: /*/*/tree/master
|
1397
|
+
Allow: /*/*/blob/master
|
1398
|
+
Disallow: /ekansa/Open-Context-Data
|
1399
|
+
Disallow: /ekansa/opencontext-*
|
1400
|
+
Disallow: /*/*/pulse
|
1401
|
+
Disallow: /*/*/tree/*
|
1402
|
+
Disallow: /*/*/blob/*
|
1403
|
+
Disallow: /*/*/wiki/*/*
|
1404
|
+
Disallow: /gist/*/*/*
|
1405
|
+
Disallow: /oembed
|
1406
|
+
Disallow: /*/forks
|
1407
|
+
Disallow: /*/stars
|
1408
|
+
Disallow: /*/download
|
1409
|
+
Disallow: /*/revisions
|
1410
|
+
Disallow: /*/*/issues/new
|
1411
|
+
Disallow: /*/*/issues/search
|
1412
|
+
Disallow: /*/*/commits/*/*
|
1413
|
+
Disallow: /*/*/commits/*?author
|
1414
|
+
Disallow: /*/*/commits/*?path
|
1415
|
+
Disallow: /*/*/branches
|
1416
|
+
Disallow: /*/*/tags
|
1417
|
+
Disallow: /*/*/contributors
|
1418
|
+
Disallow: /*/*/comments
|
1419
|
+
Disallow: /*/*/stargazers
|
1420
|
+
Disallow: /*/*/search
|
1421
|
+
Disallow: /*/tarball/
|
1422
|
+
Disallow: /*/zipball/
|
1423
|
+
Disallow: /*/*/archive/
|
1424
|
+
Disallow: /raw/*
|
1425
|
+
Disallow: /*/followers
|
1426
|
+
Disallow: /*/following
|
1427
|
+
Disallow: /stars/*
|
1428
|
+
Disallow: /*/blame/
|
1429
|
+
Disallow: /*/watchers
|
1430
|
+
Disallow: /*/network
|
1431
|
+
Disallow: /*/graphs
|
1432
|
+
Disallow: /*/raw/
|
1433
|
+
Disallow: /*/compare/
|
1434
|
+
Disallow: /*/cache/
|
1435
|
+
Disallow: /*/*/blame/
|
1436
|
+
Disallow: /*/*/watchers
|
1437
|
+
Disallow: /*/*/network
|
1438
|
+
Disallow: /*/*/graphs
|
1439
|
+
Disallow: /*/*/raw/
|
1440
|
+
Disallow: /*/*/compare/
|
1441
|
+
Disallow: /*/*/cache/
|
1442
|
+
Disallow: /*.git
|
1443
|
+
Disallow: /*.git/
|
1444
|
+
Disallow: /search/advanced
|
1445
|
+
Disallow: /search
|
1446
|
+
Disallow: /*q=
|
1447
|
+
Disallow: /*.atom
|
1448
|
+
Disallow: /login
|
1449
|
+
|
1450
|
+
User-agent: red-app-gsa-p-one
|
1451
|
+
Allow: /*/*/tree/master
|
1452
|
+
Allow: /*/*/blob/master
|
1453
|
+
Disallow: /ekansa/Open-Context-Data
|
1454
|
+
Disallow: /ekansa/opencontext-*
|
1455
|
+
Disallow: /*/*/pulse
|
1456
|
+
Disallow: /*/*/tree/*
|
1457
|
+
Disallow: /*/*/blob/*
|
1458
|
+
Disallow: /*/*/wiki/*/*
|
1459
|
+
Disallow: /gist/*/*/*
|
1460
|
+
Disallow: /oembed
|
1461
|
+
Disallow: /*/forks
|
1462
|
+
Disallow: /*/stars
|
1463
|
+
Disallow: /*/download
|
1464
|
+
Disallow: /*/revisions
|
1465
|
+
Disallow: /*/*/issues/new
|
1466
|
+
Disallow: /*/*/issues/search
|
1467
|
+
Disallow: /*/*/commits/*/*
|
1468
|
+
Disallow: /*/*/commits/*?author
|
1469
|
+
Disallow: /*/*/commits/*?path
|
1470
|
+
Disallow: /*/*/branches
|
1471
|
+
Disallow: /*/*/tags
|
1472
|
+
Disallow: /*/*/contributors
|
1473
|
+
Disallow: /*/*/comments
|
1474
|
+
Disallow: /*/*/stargazers
|
1475
|
+
Disallow: /*/*/search
|
1476
|
+
Disallow: /*/tarball/
|
1477
|
+
Disallow: /*/zipball/
|
1478
|
+
Disallow: /*/*/archive/
|
1479
|
+
Disallow: /raw/*
|
1480
|
+
Disallow: /*/followers
|
1481
|
+
Disallow: /*/following
|
1482
|
+
Disallow: /stars/*
|
1483
|
+
Disallow: /*/blame/
|
1484
|
+
Disallow: /*/watchers
|
1485
|
+
Disallow: /*/network
|
1486
|
+
Disallow: /*/graphs
|
1487
|
+
Disallow: /*/raw/
|
1488
|
+
Disallow: /*/compare/
|
1489
|
+
Disallow: /*/cache/
|
1490
|
+
Disallow: /*/*/blame/
|
1491
|
+
Disallow: /*/*/watchers
|
1492
|
+
Disallow: /*/*/network
|
1493
|
+
Disallow: /*/*/graphs
|
1494
|
+
Disallow: /*/*/raw/
|
1495
|
+
Disallow: /*/*/compare/
|
1496
|
+
Disallow: /*/*/cache/
|
1497
|
+
Disallow: /*.git
|
1498
|
+
Disallow: /*.git/
|
1499
|
+
Disallow: /search/advanced
|
1500
|
+
Disallow: /search
|
1501
|
+
Disallow: /*q=
|
1502
|
+
Disallow: /*.atom
|
1503
|
+
Disallow: /login
|
1504
|
+
|
1505
|
+
User-agent: rogerbot
|
1506
|
+
Allow: /*/*/tree/master
|
1507
|
+
Allow: /*/*/blob/master
|
1508
|
+
Disallow: /ekansa/Open-Context-Data
|
1509
|
+
Disallow: /ekansa/opencontext-*
|
1510
|
+
Disallow: /*/*/pulse
|
1511
|
+
Disallow: /*/*/tree/*
|
1512
|
+
Disallow: /*/*/blob/*
|
1513
|
+
Disallow: /*/*/wiki/*/*
|
1514
|
+
Disallow: /gist/*/*/*
|
1515
|
+
Disallow: /oembed
|
1516
|
+
Disallow: /*/forks
|
1517
|
+
Disallow: /*/stars
|
1518
|
+
Disallow: /*/download
|
1519
|
+
Disallow: /*/revisions
|
1520
|
+
Disallow: /*/*/issues/new
|
1521
|
+
Disallow: /*/*/issues/search
|
1522
|
+
Disallow: /*/*/commits/*/*
|
1523
|
+
Disallow: /*/*/commits/*?author
|
1524
|
+
Disallow: /*/*/commits/*?path
|
1525
|
+
Disallow: /*/*/branches
|
1526
|
+
Disallow: /*/*/tags
|
1527
|
+
Disallow: /*/*/contributors
|
1528
|
+
Disallow: /*/*/comments
|
1529
|
+
Disallow: /*/*/stargazers
|
1530
|
+
Disallow: /*/*/search
|
1531
|
+
Disallow: /*/tarball/
|
1532
|
+
Disallow: /*/zipball/
|
1533
|
+
Disallow: /*/*/archive/
|
1534
|
+
Disallow: /raw/*
|
1535
|
+
Disallow: /*/followers
|
1536
|
+
Disallow: /*/following
|
1537
|
+
Disallow: /stars/*
|
1538
|
+
Disallow: /*/blame/
|
1539
|
+
Disallow: /*/watchers
|
1540
|
+
Disallow: /*/network
|
1541
|
+
Disallow: /*/graphs
|
1542
|
+
Disallow: /*/raw/
|
1543
|
+
Disallow: /*/compare/
|
1544
|
+
Disallow: /*/cache/
|
1545
|
+
Disallow: /*/*/blame/
|
1546
|
+
Disallow: /*/*/watchers
|
1547
|
+
Disallow: /*/*/network
|
1548
|
+
Disallow: /*/*/graphs
|
1549
|
+
Disallow: /*/*/raw/
|
1550
|
+
Disallow: /*/*/compare/
|
1551
|
+
Disallow: /*/*/cache/
|
1552
|
+
Disallow: /*.git
|
1553
|
+
Disallow: /*.git/
|
1554
|
+
Disallow: /search/advanced
|
1555
|
+
Disallow: /search
|
1556
|
+
Disallow: /*q=
|
1557
|
+
Disallow: /*.atom
|
1558
|
+
Disallow: /login
|
1559
|
+
|
1560
|
+
User-agent: SandDollar
|
1561
|
+
Allow: /*/*/tree/master
|
1562
|
+
Allow: /*/*/blob/master
|
1563
|
+
Disallow: /ekansa/Open-Context-Data
|
1564
|
+
Disallow: /ekansa/opencontext-*
|
1565
|
+
Disallow: /*/*/pulse
|
1566
|
+
Disallow: /*/*/tree/*
|
1567
|
+
Disallow: /*/*/blob/*
|
1568
|
+
Disallow: /*/*/wiki/*/*
|
1569
|
+
Disallow: /gist/*/*/*
|
1570
|
+
Disallow: /oembed
|
1571
|
+
Disallow: /*/forks
|
1572
|
+
Disallow: /*/stars
|
1573
|
+
Disallow: /*/download
|
1574
|
+
Disallow: /*/revisions
|
1575
|
+
Disallow: /*/*/issues/new
|
1576
|
+
Disallow: /*/*/issues/search
|
1577
|
+
Disallow: /*/*/commits/*/*
|
1578
|
+
Disallow: /*/*/commits/*?author
|
1579
|
+
Disallow: /*/*/commits/*?path
|
1580
|
+
Disallow: /*/*/branches
|
1581
|
+
Disallow: /*/*/tags
|
1582
|
+
Disallow: /*/*/contributors
|
1583
|
+
Disallow: /*/*/comments
|
1584
|
+
Disallow: /*/*/stargazers
|
1585
|
+
Disallow: /*/*/search
|
1586
|
+
Disallow: /*/tarball/
|
1587
|
+
Disallow: /*/zipball/
|
1588
|
+
Disallow: /*/*/archive/
|
1589
|
+
Disallow: /raw/*
|
1590
|
+
Disallow: /*/followers
|
1591
|
+
Disallow: /*/following
|
1592
|
+
Disallow: /stars/*
|
1593
|
+
Disallow: /*/blame/
|
1594
|
+
Disallow: /*/watchers
|
1595
|
+
Disallow: /*/network
|
1596
|
+
Disallow: /*/graphs
|
1597
|
+
Disallow: /*/raw/
|
1598
|
+
Disallow: /*/compare/
|
1599
|
+
Disallow: /*/cache/
|
1600
|
+
Disallow: /*/*/blame/
|
1601
|
+
Disallow: /*/*/watchers
|
1602
|
+
Disallow: /*/*/network
|
1603
|
+
Disallow: /*/*/graphs
|
1604
|
+
Disallow: /*/*/raw/
|
1605
|
+
Disallow: /*/*/compare/
|
1606
|
+
Disallow: /*/*/cache/
|
1607
|
+
Disallow: /*.git
|
1608
|
+
Disallow: /*.git/
|
1609
|
+
Disallow: /search/advanced
|
1610
|
+
Disallow: /search
|
1611
|
+
Disallow: /*q=
|
1612
|
+
Disallow: /*.atom
|
1613
|
+
Disallow: /login
|
1614
|
+
|
1615
|
+
User-agent: seznambot
|
1616
|
+
Allow: /*/*/tree/master
|
1617
|
+
Allow: /*/*/blob/master
|
1618
|
+
Disallow: /ekansa/Open-Context-Data
|
1619
|
+
Disallow: /ekansa/opencontext-*
|
1620
|
+
Disallow: /*/*/pulse
|
1621
|
+
Disallow: /*/*/tree/*
|
1622
|
+
Disallow: /*/*/blob/*
|
1623
|
+
Disallow: /*/*/wiki/*/*
|
1624
|
+
Disallow: /gist/*/*/*
|
1625
|
+
Disallow: /oembed
|
1626
|
+
Disallow: /*/forks
|
1627
|
+
Disallow: /*/stars
|
1628
|
+
Disallow: /*/download
|
1629
|
+
Disallow: /*/revisions
|
1630
|
+
Disallow: /*/*/issues/new
|
1631
|
+
Disallow: /*/*/issues/search
|
1632
|
+
Disallow: /*/*/commits/*/*
|
1633
|
+
Disallow: /*/*/commits/*?author
|
1634
|
+
Disallow: /*/*/commits/*?path
|
1635
|
+
Disallow: /*/*/branches
|
1636
|
+
Disallow: /*/*/tags
|
1637
|
+
Disallow: /*/*/contributors
|
1638
|
+
Disallow: /*/*/comments
|
1639
|
+
Disallow: /*/*/stargazers
|
1640
|
+
Disallow: /*/*/search
|
1641
|
+
Disallow: /*/tarball/
|
1642
|
+
Disallow: /*/zipball/
|
1643
|
+
Disallow: /*/*/archive/
|
1644
|
+
Disallow: /raw/*
|
1645
|
+
Disallow: /*/followers
|
1646
|
+
Disallow: /*/following
|
1647
|
+
Disallow: /stars/*
|
1648
|
+
Disallow: /*/blame/
|
1649
|
+
Disallow: /*/watchers
|
1650
|
+
Disallow: /*/network
|
1651
|
+
Disallow: /*/graphs
|
1652
|
+
Disallow: /*/raw/
|
1653
|
+
Disallow: /*/compare/
|
1654
|
+
Disallow: /*/cache/
|
1655
|
+
Disallow: /*/*/blame/
|
1656
|
+
Disallow: /*/*/watchers
|
1657
|
+
Disallow: /*/*/network
|
1658
|
+
Disallow: /*/*/graphs
|
1659
|
+
Disallow: /*/*/raw/
|
1660
|
+
Disallow: /*/*/compare/
|
1661
|
+
Disallow: /*/*/cache/
|
1662
|
+
Disallow: /*.git
|
1663
|
+
Disallow: /*.git/
|
1664
|
+
Disallow: /search/advanced
|
1665
|
+
Disallow: /search
|
1666
|
+
Disallow: /*q=
|
1667
|
+
Disallow: /*.atom
|
1668
|
+
Disallow: /login
|
1669
|
+
|
1670
|
+
User-agent: Slurp
|
1671
|
+
Allow: /*/*/tree/master
|
1672
|
+
Allow: /*/*/blob/master
|
1673
|
+
Disallow: /ekansa/Open-Context-Data
|
1674
|
+
Disallow: /ekansa/opencontext-*
|
1675
|
+
Disallow: /*/*/pulse
|
1676
|
+
Disallow: /*/*/tree/*
|
1677
|
+
Disallow: /*/*/blob/*
|
1678
|
+
Disallow: /*/*/wiki/*/*
|
1679
|
+
Disallow: /gist/*/*/*
|
1680
|
+
Disallow: /oembed
|
1681
|
+
Disallow: /*/forks
|
1682
|
+
Disallow: /*/stars
|
1683
|
+
Disallow: /*/download
|
1684
|
+
Disallow: /*/revisions
|
1685
|
+
Disallow: /*/*/issues/new
|
1686
|
+
Disallow: /*/*/issues/search
|
1687
|
+
Disallow: /*/*/commits/*/*
|
1688
|
+
Disallow: /*/*/commits/*?author
|
1689
|
+
Disallow: /*/*/commits/*?path
|
1690
|
+
Disallow: /*/*/branches
|
1691
|
+
Disallow: /*/*/tags
|
1692
|
+
Disallow: /*/*/contributors
|
1693
|
+
Disallow: /*/*/comments
|
1694
|
+
Disallow: /*/*/stargazers
|
1695
|
+
Disallow: /*/*/search
|
1696
|
+
Disallow: /*/tarball/
|
1697
|
+
Disallow: /*/zipball/
|
1698
|
+
Disallow: /*/*/archive/
|
1699
|
+
Disallow: /raw/*
|
1700
|
+
Disallow: /*/followers
|
1701
|
+
Disallow: /*/following
|
1702
|
+
Disallow: /stars/*
|
1703
|
+
Disallow: /*/blame/
|
1704
|
+
Disallow: /*/watchers
|
1705
|
+
Disallow: /*/network
|
1706
|
+
Disallow: /*/graphs
|
1707
|
+
Disallow: /*/raw/
|
1708
|
+
Disallow: /*/compare/
|
1709
|
+
Disallow: /*/cache/
|
1710
|
+
Disallow: /*/*/blame/
|
1711
|
+
Disallow: /*/*/watchers
|
1712
|
+
Disallow: /*/*/network
|
1713
|
+
Disallow: /*/*/graphs
|
1714
|
+
Disallow: /*/*/raw/
|
1715
|
+
Disallow: /*/*/compare/
|
1716
|
+
Disallow: /*/*/cache/
|
1717
|
+
Disallow: /*.git
|
1718
|
+
Disallow: /*.git/
|
1719
|
+
Disallow: /search/advanced
|
1720
|
+
Disallow: /search
|
1721
|
+
Disallow: /*q=
|
1722
|
+
Disallow: /*.atom
|
1723
|
+
Disallow: /login
|
1724
|
+
|
1725
|
+
User-agent: Swiftbot
|
1726
|
+
Allow: /*/*/tree/master
|
1727
|
+
Allow: /*/*/blob/master
|
1728
|
+
Disallow: /ekansa/Open-Context-Data
|
1729
|
+
Disallow: /ekansa/opencontext-*
|
1730
|
+
Disallow: /*/*/pulse
|
1731
|
+
Disallow: /*/*/tree/*
|
1732
|
+
Disallow: /*/*/blob/*
|
1733
|
+
Disallow: /*/*/wiki/*/*
|
1734
|
+
Disallow: /gist/*/*/*
|
1735
|
+
Disallow: /oembed
|
1736
|
+
Disallow: /*/forks
|
1737
|
+
Disallow: /*/stars
|
1738
|
+
Disallow: /*/download
|
1739
|
+
Disallow: /*/revisions
|
1740
|
+
Disallow: /*/*/issues/new
|
1741
|
+
Disallow: /*/*/issues/search
|
1742
|
+
Disallow: /*/*/commits/*/*
|
1743
|
+
Disallow: /*/*/commits/*?author
|
1744
|
+
Disallow: /*/*/commits/*?path
|
1745
|
+
Disallow: /*/*/branches
|
1746
|
+
Disallow: /*/*/tags
|
1747
|
+
Disallow: /*/*/contributors
|
1748
|
+
Disallow: /*/*/comments
|
1749
|
+
Disallow: /*/*/stargazers
|
1750
|
+
Disallow: /*/*/search
|
1751
|
+
Disallow: /*/tarball/
|
1752
|
+
Disallow: /*/zipball/
|
1753
|
+
Disallow: /*/*/archive/
|
1754
|
+
Disallow: /raw/*
|
1755
|
+
Disallow: /*/followers
|
1756
|
+
Disallow: /*/following
|
1757
|
+
Disallow: /stars/*
|
1758
|
+
Disallow: /*/blame/
|
1759
|
+
Disallow: /*/watchers
|
1760
|
+
Disallow: /*/network
|
1761
|
+
Disallow: /*/graphs
|
1762
|
+
Disallow: /*/raw/
|
1763
|
+
Disallow: /*/compare/
|
1764
|
+
Disallow: /*/cache/
|
1765
|
+
Disallow: /*/*/blame/
|
1766
|
+
Disallow: /*/*/watchers
|
1767
|
+
Disallow: /*/*/network
|
1768
|
+
Disallow: /*/*/graphs
|
1769
|
+
Disallow: /*/*/raw/
|
1770
|
+
Disallow: /*/*/compare/
|
1771
|
+
Disallow: /*/*/cache/
|
1772
|
+
Disallow: /*.git
|
1773
|
+
Disallow: /*.git/
|
1774
|
+
Disallow: /search/advanced
|
1775
|
+
Disallow: /search
|
1776
|
+
Disallow: /*q=
|
1777
|
+
Disallow: /*.atom
|
1778
|
+
Disallow: /login
|
1779
|
+
|
1780
|
+
User-agent: Telefonica
|
1781
|
+
Allow: /*/*/tree/master
|
1782
|
+
Allow: /*/*/blob/master
|
1783
|
+
Disallow: /ekansa/Open-Context-Data
|
1784
|
+
Disallow: /ekansa/opencontext-*
|
1785
|
+
Disallow: /*/*/pulse
|
1786
|
+
Disallow: /*/*/tree/*
|
1787
|
+
Disallow: /*/*/blob/*
|
1788
|
+
Disallow: /*/*/wiki/*/*
|
1789
|
+
Disallow: /gist/*/*/*
|
1790
|
+
Disallow: /oembed
|
1791
|
+
Disallow: /*/forks
|
1792
|
+
Disallow: /*/stars
|
1793
|
+
Disallow: /*/download
|
1794
|
+
Disallow: /*/revisions
|
1795
|
+
Disallow: /*/*/issues/new
|
1796
|
+
Disallow: /*/*/issues/search
|
1797
|
+
Disallow: /*/*/commits/*/*
|
1798
|
+
Disallow: /*/*/commits/*?author
|
1799
|
+
Disallow: /*/*/commits/*?path
|
1800
|
+
Disallow: /*/*/branches
|
1801
|
+
Disallow: /*/*/tags
|
1802
|
+
Disallow: /*/*/contributors
|
1803
|
+
Disallow: /*/*/comments
|
1804
|
+
Disallow: /*/*/stargazers
|
1805
|
+
Disallow: /*/*/search
|
1806
|
+
Disallow: /*/tarball/
|
1807
|
+
Disallow: /*/zipball/
|
1808
|
+
Disallow: /*/*/archive/
|
1809
|
+
Disallow: /raw/*
|
1810
|
+
Disallow: /*/followers
|
1811
|
+
Disallow: /*/following
|
1812
|
+
Disallow: /stars/*
|
1813
|
+
Disallow: /*/blame/
|
1814
|
+
Disallow: /*/watchers
|
1815
|
+
Disallow: /*/network
|
1816
|
+
Disallow: /*/graphs
|
1817
|
+
Disallow: /*/raw/
|
1818
|
+
Disallow: /*/compare/
|
1819
|
+
Disallow: /*/cache/
|
1820
|
+
Disallow: /*/*/blame/
|
1821
|
+
Disallow: /*/*/watchers
|
1822
|
+
Disallow: /*/*/network
|
1823
|
+
Disallow: /*/*/graphs
|
1824
|
+
Disallow: /*/*/raw/
|
1825
|
+
Disallow: /*/*/compare/
|
1826
|
+
Disallow: /*/*/cache/
|
1827
|
+
Disallow: /*.git
|
1828
|
+
Disallow: /*.git/
|
1829
|
+
Disallow: /search/advanced
|
1830
|
+
Disallow: /search
|
1831
|
+
Disallow: /*q=
|
1832
|
+
Disallow: /*.atom
|
1833
|
+
Disallow: /login
|
1834
|
+
|
1835
|
+
User-agent: teoma
|
1836
|
+
Allow: /*/*/tree/master
|
1837
|
+
Allow: /*/*/blob/master
|
1838
|
+
Disallow: /ekansa/Open-Context-Data
|
1839
|
+
Disallow: /ekansa/opencontext-*
|
1840
|
+
Disallow: /*/*/pulse
|
1841
|
+
Disallow: /*/*/tree/*
|
1842
|
+
Disallow: /*/*/blob/*
|
1843
|
+
Disallow: /*/*/wiki/*/*
|
1844
|
+
Disallow: /gist/*/*/*
|
1845
|
+
Disallow: /oembed
|
1846
|
+
Disallow: /*/forks
|
1847
|
+
Disallow: /*/stars
|
1848
|
+
Disallow: /*/download
|
1849
|
+
Disallow: /*/revisions
|
1850
|
+
Disallow: /*/*/issues/new
|
1851
|
+
Disallow: /*/*/issues/search
|
1852
|
+
Disallow: /*/*/commits/*/*
|
1853
|
+
Disallow: /*/*/commits/*?author
|
1854
|
+
Disallow: /*/*/commits/*?path
|
1855
|
+
Disallow: /*/*/branches
|
1856
|
+
Disallow: /*/*/tags
|
1857
|
+
Disallow: /*/*/contributors
|
1858
|
+
Disallow: /*/*/comments
|
1859
|
+
Disallow: /*/*/stargazers
|
1860
|
+
Disallow: /*/*/search
|
1861
|
+
Disallow: /*/tarball/
|
1862
|
+
Disallow: /*/zipball/
|
1863
|
+
Disallow: /*/*/archive/
|
1864
|
+
Disallow: /raw/*
|
1865
|
+
Disallow: /*/followers
|
1866
|
+
Disallow: /*/following
|
1867
|
+
Disallow: /stars/*
|
1868
|
+
Disallow: /*/blame/
|
1869
|
+
Disallow: /*/watchers
|
1870
|
+
Disallow: /*/network
|
1871
|
+
Disallow: /*/graphs
|
1872
|
+
Disallow: /*/raw/
|
1873
|
+
Disallow: /*/compare/
|
1874
|
+
Disallow: /*/cache/
|
1875
|
+
Disallow: /*/*/blame/
|
1876
|
+
Disallow: /*/*/watchers
|
1877
|
+
Disallow: /*/*/network
|
1878
|
+
Disallow: /*/*/graphs
|
1879
|
+
Disallow: /*/*/raw/
|
1880
|
+
Disallow: /*/*/compare/
|
1881
|
+
Disallow: /*/*/cache/
|
1882
|
+
Disallow: /*.git
|
1883
|
+
Disallow: /*.git/
|
1884
|
+
Disallow: /search/advanced
|
1885
|
+
Disallow: /search
|
1886
|
+
Disallow: /*q=
|
1887
|
+
Disallow: /*.atom
|
1888
|
+
Disallow: /login
|
1889
|
+
|
1890
|
+
User-agent: Twitterbot
|
1891
|
+
Allow: /*/*/tree/master
|
1892
|
+
Allow: /*/*/blob/master
|
1893
|
+
Disallow: /ekansa/Open-Context-Data
|
1894
|
+
Disallow: /ekansa/opencontext-*
|
1895
|
+
Disallow: /*/*/pulse
|
1896
|
+
Disallow: /*/*/tree/*
|
1897
|
+
Disallow: /*/*/blob/*
|
1898
|
+
Disallow: /*/*/wiki/*/*
|
1899
|
+
Disallow: /gist/*/*/*
|
1900
|
+
Disallow: /oembed
|
1901
|
+
Disallow: /*/forks
|
1902
|
+
Disallow: /*/stars
|
1903
|
+
Disallow: /*/download
|
1904
|
+
Disallow: /*/revisions
|
1905
|
+
Disallow: /*/*/issues/new
|
1906
|
+
Disallow: /*/*/issues/search
|
1907
|
+
Disallow: /*/*/commits/*/*
|
1908
|
+
Disallow: /*/*/commits/*?author
|
1909
|
+
Disallow: /*/*/commits/*?path
|
1910
|
+
Disallow: /*/*/branches
|
1911
|
+
Disallow: /*/*/tags
|
1912
|
+
Disallow: /*/*/contributors
|
1913
|
+
Disallow: /*/*/comments
|
1914
|
+
Disallow: /*/*/stargazers
|
1915
|
+
Disallow: /*/*/search
|
1916
|
+
Disallow: /*/tarball/
|
1917
|
+
Disallow: /*/zipball/
|
1918
|
+
Disallow: /*/*/archive/
|
1919
|
+
Disallow: /raw/*
|
1920
|
+
Disallow: /*/followers
|
1921
|
+
Disallow: /*/following
|
1922
|
+
Disallow: /stars/*
|
1923
|
+
Disallow: /*/blame/
|
1924
|
+
Disallow: /*/watchers
|
1925
|
+
Disallow: /*/network
|
1926
|
+
Disallow: /*/graphs
|
1927
|
+
Disallow: /*/raw/
|
1928
|
+
Disallow: /*/compare/
|
1929
|
+
Disallow: /*/cache/
|
1930
|
+
Disallow: /*/*/blame/
|
1931
|
+
Disallow: /*/*/watchers
|
1932
|
+
Disallow: /*/*/network
|
1933
|
+
Disallow: /*/*/graphs
|
1934
|
+
Disallow: /*/*/raw/
|
1935
|
+
Disallow: /*/*/compare/
|
1936
|
+
Disallow: /*/*/cache/
|
1937
|
+
Disallow: /*.git
|
1938
|
+
Disallow: /*.git/
|
1939
|
+
Disallow: /search/advanced
|
1940
|
+
Disallow: /search
|
1941
|
+
Disallow: /*q=
|
1942
|
+
Disallow: /*.atom
|
1943
|
+
Disallow: /login
|
1944
|
+
|
1945
|
+
User-agent: Yandex
|
1946
|
+
Allow: /*/*/tree/master
|
1947
|
+
Allow: /*/*/blob/master
|
1948
|
+
Disallow: /ekansa/Open-Context-Data
|
1949
|
+
Disallow: /ekansa/opencontext-*
|
1950
|
+
Disallow: /*/*/pulse
|
1951
|
+
Disallow: /*/*/tree/*
|
1952
|
+
Disallow: /*/*/blob/*
|
1953
|
+
Disallow: /*/*/wiki/*/*
|
1954
|
+
Disallow: /gist/*/*/*
|
1955
|
+
Disallow: /oembed
|
1956
|
+
Disallow: /*/forks
|
1957
|
+
Disallow: /*/stars
|
1958
|
+
Disallow: /*/download
|
1959
|
+
Disallow: /*/revisions
|
1960
|
+
Disallow: /*/*/issues/new
|
1961
|
+
Disallow: /*/*/issues/search
|
1962
|
+
Disallow: /*/*/commits/*/*
|
1963
|
+
Disallow: /*/*/commits/*?author
|
1964
|
+
Disallow: /*/*/commits/*?path
|
1965
|
+
Disallow: /*/*/branches
|
1966
|
+
Disallow: /*/*/tags
|
1967
|
+
Disallow: /*/*/contributors
|
1968
|
+
Disallow: /*/*/comments
|
1969
|
+
Disallow: /*/*/stargazers
|
1970
|
+
Disallow: /*/*/search
|
1971
|
+
Disallow: /*/tarball/
|
1972
|
+
Disallow: /*/zipball/
|
1973
|
+
Disallow: /*/*/archive/
|
1974
|
+
Disallow: /raw/*
|
1975
|
+
Disallow: /*/followers
|
1976
|
+
Disallow: /*/following
|
1977
|
+
Disallow: /stars/*
|
1978
|
+
Disallow: /*/blame/
|
1979
|
+
Disallow: /*/watchers
|
1980
|
+
Disallow: /*/network
|
1981
|
+
Disallow: /*/graphs
|
1982
|
+
Disallow: /*/raw/
|
1983
|
+
Disallow: /*/compare/
|
1984
|
+
Disallow: /*/cache/
|
1985
|
+
Disallow: /*/*/blame/
|
1986
|
+
Disallow: /*/*/watchers
|
1987
|
+
Disallow: /*/*/network
|
1988
|
+
Disallow: /*/*/graphs
|
1989
|
+
Disallow: /*/*/raw/
|
1990
|
+
Disallow: /*/*/compare/
|
1991
|
+
Disallow: /*/*/cache/
|
1992
|
+
Disallow: /*.git
|
1993
|
+
Disallow: /*.git/
|
1994
|
+
Disallow: /search/advanced
|
1995
|
+
Disallow: /search
|
1996
|
+
Disallow: /*q=
|
1997
|
+
Disallow: /*.atom
|
1998
|
+
Disallow: /login
|
1999
|
+
|
2000
|
+
|
2001
|
+
User-agent: *
|
2002
|
+
Allow: /humans.txt
|
2003
|
+
Disallow: /
|
2004
|
+
http_version:
|
2005
|
+
recorded_at: Mon, 04 Jan 2016 13:39:18 GMT
|
2006
|
+
recorded_with: VCR 3.0.0
|