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,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'mime/types'
|
4
|
+
require 'minitest_helper'
|
5
|
+
|
6
|
+
describe MIME::Types::Loader do
|
7
|
+
def setup
|
8
|
+
@path = File.expand_path('../fixture', __FILE__)
|
9
|
+
@loader = MIME::Types::Loader.new(@path)
|
10
|
+
@bad_path = File.expand_path('../bad-fixtures', __FILE__)
|
11
|
+
end
|
12
|
+
|
13
|
+
def assert_correctly_loaded(types)
|
14
|
+
assert_includes(types, 'application/1d-interleaved-parityfec')
|
15
|
+
assert_equal(%w(webm), types['audio/webm'].first.extensions)
|
16
|
+
refute(types['audio/webm'].first.registered?)
|
17
|
+
|
18
|
+
assert_equal('Fixes a bug with IE6 and progressive JPEGs',
|
19
|
+
types['image/pjpeg'].first.docs)
|
20
|
+
|
21
|
+
assert(types['audio/vnd.qcelp'].first.obsolete?)
|
22
|
+
assert_equal('audio/QCELP', types['audio/vnd.qcelp'].first.use_instead)
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'loads YAML files correctly' do
|
26
|
+
assert_correctly_loaded @loader.load_yaml
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'loads JSON files correctly' do
|
30
|
+
assert_correctly_loaded @loader.load_json
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age,
|
8
|
+
body size, disability, ethnicity, gender identity and expression, level of
|
9
|
+
experience, nationality, personal appearance, race, religion, or sexual
|
10
|
+
identity and orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an
|
52
|
+
appointed representative at an online or offline event. Representation of a
|
53
|
+
project may be further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at [INSERT EMAIL ADDRESS]. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
62
|
+
incident. Further details of specific enforcement policies may be posted
|
63
|
+
separately.
|
64
|
+
|
65
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
66
|
+
faith may face temporary or permanent repercussions as determined by other
|
67
|
+
members of the project's leadership.
|
68
|
+
|
69
|
+
## Attribution
|
70
|
+
|
71
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
72
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
73
|
+
|
74
|
+
[homepage]: http://contributor-covenant.org
|
75
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
@@ -0,0 +1,162 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
Contributions to mime-types-data is encouraged in any form: a bug report, new
|
4
|
+
MIME type defintions, or additional code to help manage the MIME types. As with
|
5
|
+
many of my projects, I have a few suggestions for improving the chance of
|
6
|
+
acceptance of your code contributions:
|
7
|
+
|
8
|
+
* The support files are written in Ruby and should remain in the coding style
|
9
|
+
that already exists, and I use hoe for releasing the mime-types-data RubyGem.
|
10
|
+
* Use a thoughtfully-named topic branch that contains your change. Rebase your
|
11
|
+
commits into logical chunks as necessary.
|
12
|
+
* Use [quality commit messages][qcm].
|
13
|
+
* Do not change the version number; when your patch is accepted and a release
|
14
|
+
is made, the version will be updated at that point.
|
15
|
+
* Submit a GitHub pull request with your changes.
|
16
|
+
* New or changed behaviours require new or updated documentation.
|
17
|
+
|
18
|
+
Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and
|
19
|
+
the support files are written in Ruby, the *target* of mime-types-data is any
|
20
|
+
implementation that wishes to use the data as a MIME types registry, so I am
|
21
|
+
particularly interested in tools that will create a mime-types-data package for
|
22
|
+
other languages.
|
23
|
+
|
24
|
+
### Adding or Modifying MIME Types
|
25
|
+
|
26
|
+
The Ruby mime-types gem loads its data from files encoded in the `data`
|
27
|
+
directory in this gem by loading `mime-types-data` and reading
|
28
|
+
MIME::Types::Data::PATH. These files are compiled files from the collection of
|
29
|
+
data in the `types` directory. Pull requests that include changes to these
|
30
|
+
files will require amendment to revert these files.
|
31
|
+
|
32
|
+
New or modified MIME types should be edited in the appropriate YAML file under
|
33
|
+
`types`. The format is as shown below for the `application/xml` MIME type
|
34
|
+
in `types/application.yml`.
|
35
|
+
|
36
|
+
```yaml
|
37
|
+
- !ruby/object:MIME::Type
|
38
|
+
content-type: application/xml
|
39
|
+
encoding: 8bit
|
40
|
+
extensions:
|
41
|
+
- xml
|
42
|
+
- xsl
|
43
|
+
references:
|
44
|
+
- IANA
|
45
|
+
- RFC3023
|
46
|
+
xrefs: !ruby/hash:MIME::Types::Container
|
47
|
+
rfc:
|
48
|
+
- rfc3023
|
49
|
+
registered: true
|
50
|
+
```
|
51
|
+
|
52
|
+
There are other fields that can be added, matching the fields discussed in the
|
53
|
+
documentation for MIME::Type. Pull requests for MIME types should just contain
|
54
|
+
the changes to the YAML files for the new or modified MIME types; I will
|
55
|
+
convert the YAML files to JSON prior to a new release. I would rather not have
|
56
|
+
to verify that the JSON matches the YAML changes, which is why it is not
|
57
|
+
necessary to convert for the pull request.
|
58
|
+
|
59
|
+
If you are making a change for a private fork, use `rake convert:yaml:json` to
|
60
|
+
convert the YAML to JSON, or `rake convert:yaml:columnar` to convert it to the
|
61
|
+
new columnar format.
|
62
|
+
|
63
|
+
#### Updating Types from the IANA or Apache Lists
|
64
|
+
|
65
|
+
If you are maintaining a private fork and wish to update your copy of the MIME
|
66
|
+
types registry used by this gem, you can do this with the rake tasks:
|
67
|
+
|
68
|
+
$ rake mime:iana
|
69
|
+
$ rake mime:apache
|
70
|
+
|
71
|
+
### Development Dependencies
|
72
|
+
|
73
|
+
mime-types-data uses Ryan Davis’s {Hoe}[https://github.com/seattlerb/hoe] to
|
74
|
+
manage the release process, and it adds a number of rake tasks. You will mostly
|
75
|
+
be interested in:
|
76
|
+
|
77
|
+
$ rake
|
78
|
+
|
79
|
+
which runs the tests the same way that:
|
80
|
+
|
81
|
+
$ rake test
|
82
|
+
$ rake travis
|
83
|
+
|
84
|
+
will do.
|
85
|
+
|
86
|
+
To assist with the installation of the development dependencies for
|
87
|
+
mime-types-data, I have provided the simplest possible Gemfile pointing to the
|
88
|
+
(generated) `mime-types-data.gemspec` file. This will permit you to do:
|
89
|
+
|
90
|
+
$ bundle install
|
91
|
+
|
92
|
+
to get the development dependencies. If you aleady have `hoe` installed, you
|
93
|
+
can accomplish the same thing with:
|
94
|
+
|
95
|
+
$ rake newb
|
96
|
+
|
97
|
+
This task will install any missing dependencies, run the tests/specs, and
|
98
|
+
generate the RDoc.
|
99
|
+
|
100
|
+
You can run tests with code coverage analysis by running:
|
101
|
+
|
102
|
+
$ rake test:coverage
|
103
|
+
|
104
|
+
### Workflow
|
105
|
+
|
106
|
+
Here's the most direct way to get your work merged into the project:
|
107
|
+
|
108
|
+
* Fork the project.
|
109
|
+
* Clone down your fork (`git clone
|
110
|
+
git://github.com/<username>/mime-types-data.git`).
|
111
|
+
* Create a topic branch to contain your change (`git checkout -b
|
112
|
+
my\_awesome\_feature`).
|
113
|
+
* Hack away, add tests. Not necessarily in that order.
|
114
|
+
* Make sure everything still passes by running `rake`.
|
115
|
+
* If necessary, rebase your commits into logical chunks, without errors.
|
116
|
+
* Push the branch up (`git push origin my\_awesome\_feature`).
|
117
|
+
* Create a pull request against mime-types/mime-types-data and describe what
|
118
|
+
your change does and the why you think it should be merged.
|
119
|
+
|
120
|
+
### Contributors
|
121
|
+
|
122
|
+
* Austin Ziegler created mime-types.
|
123
|
+
|
124
|
+
Thanks to everyone else who has contributed to mime-types:
|
125
|
+
|
126
|
+
* Aaron Patterson
|
127
|
+
* Aggelos Avgerinos
|
128
|
+
* Andre Pankratz
|
129
|
+
* Andrey Eremin
|
130
|
+
* Andy Brody
|
131
|
+
* Arnaud Meuret
|
132
|
+
* Bradley Meck
|
133
|
+
* Brandon Galbraith
|
134
|
+
* Chris Gat
|
135
|
+
* David Genord
|
136
|
+
* Eric Marden
|
137
|
+
* Garret Alfert
|
138
|
+
* Godfrey Chan
|
139
|
+
* Greg Brockman
|
140
|
+
* Hans de Graaff
|
141
|
+
* Henrik Hodne
|
142
|
+
* Jeremy Evans
|
143
|
+
* John Gardner
|
144
|
+
* Juanito Fatas
|
145
|
+
* Łukasz Śliwa
|
146
|
+
* Keerthi Siva
|
147
|
+
* Ken Ip
|
148
|
+
* Martin d'Allens
|
149
|
+
* Mauricio Linhares
|
150
|
+
* nycvotes-dev
|
151
|
+
* Postmodern
|
152
|
+
* Richard Hirner
|
153
|
+
* Richard Hurt
|
154
|
+
* Richard Schneeman
|
155
|
+
* Sergio Baptista
|
156
|
+
* Tao Guo
|
157
|
+
* Thomas Leese
|
158
|
+
* Tibor Szolár
|
159
|
+
* Todd Carrico
|
160
|
+
|
161
|
+
[qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
162
|
+
[rmt]: https://github.com/mime-types/ruby-mime-types/
|
@@ -0,0 +1,406 @@
|
|
1
|
+
# MIME Types Changes by Version
|
2
|
+
|
3
|
+
## 3.2019.10.09 / 2019-10-09
|
4
|
+
|
5
|
+
* Updated the IANA media registry entries as of release date.
|
6
|
+
|
7
|
+
* Reordered the `.ai` extension so that it is not the preferred extension for
|
8
|
+
`application/pdf` [#24][].
|
9
|
+
|
10
|
+
## 3.2019.0904 / 2019-09-04
|
11
|
+
|
12
|
+
* Updated the IANA media registry entries as of release date.
|
13
|
+
|
14
|
+
* Moved the `.ai` extension from `application/postscript` to `application/pdf`.
|
15
|
+
[#23][] fixing [#22][].
|
16
|
+
|
17
|
+
## 3.2019.0331 / 2019-03-31
|
18
|
+
|
19
|
+
* Updated the IANA media registry entries as of release date.
|
20
|
+
|
21
|
+
* Added support for `application/wasm` with extension `.wasm`. [#21][]
|
22
|
+
|
23
|
+
* Fixed `application/ecmascript` extensions. [#20][]
|
24
|
+
|
25
|
+
## 3.2018.0812 / 2018-08-12
|
26
|
+
|
27
|
+
* Added `.xsd` extension to `text/xml`. [#10][]
|
28
|
+
|
29
|
+
* Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
30
|
+
`text/javascript`. [#11][]
|
31
|
+
|
32
|
+
* Added `.ipa` extension to `application/octet-stream`. [#12][]
|
33
|
+
|
34
|
+
* Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
35
|
+
`text/markdown`. [#13][]
|
36
|
+
|
37
|
+
* Because of a bug found with mime-types 3 before 3.2.1, this version
|
38
|
+
requires mime-types 3.1 or later to manage data.
|
39
|
+
|
40
|
+
* Updated the IANA media registry entries as of release date. The biggest
|
41
|
+
major change here is the addition of the `font/` top-level media type.
|
42
|
+
|
43
|
+
* MIME type changes not introduced by pull requests will no longer be
|
44
|
+
individually tracked.
|
45
|
+
|
46
|
+
* Clarified that the YAML editable format is not shipped with the Ruby gem
|
47
|
+
for size considerations.
|
48
|
+
|
49
|
+
## 3.2016.0521 / 2016-05-21
|
50
|
+
|
51
|
+
* Updated the known extension list for application/octet-stream and
|
52
|
+
application/pgp-encrypted to include gpg as an extension. Fixes
|
53
|
+
[#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
|
54
|
+
(@taoza).
|
55
|
+
* Updated the IANA media registry entries as of release date:
|
56
|
+
|
57
|
+
* Updated metadata for application/EmergencyCallData.Comment+xml,
|
58
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
59
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
60
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
61
|
+
application/EmergencyCallData.SubscriberInfo+xml,
|
62
|
+
application/ogg, application/problem+json, application/problem+xml,
|
63
|
+
audio/ogg, text/markdown, video/H265, video/ogg.
|
64
|
+
* Added application/efi, application/vnd.3gpp.sms+xml,
|
65
|
+
application/vnd.3lightssoftware.imagescal,
|
66
|
+
application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
|
67
|
+
application/vnd.onepager, application/vnd.quarantainenet,
|
68
|
+
application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
|
69
|
+
* image/bmp has a draft RFC which would make it official; it has been
|
70
|
+
finally been registered. As such, this version *reverses* the
|
71
|
+
use-instead relationship of image/bmp and image/x-bmp.
|
72
|
+
|
73
|
+
* This version requires mime-types 3.1 or later to manage data because of an
|
74
|
+
issue with JSON data encoding for the `xrefs` field.
|
75
|
+
|
76
|
+
## 3.2016.0221 / 2016-02-21
|
77
|
+
|
78
|
+
* Updated the known extensions list for audio/mp4.
|
79
|
+
* Updated the IANA media registry entries as of release date:
|
80
|
+
|
81
|
+
* Updated metadata for 3GPP-defined types (there are many),
|
82
|
+
application/cdni, and application/rfc+xml.
|
83
|
+
* Added application/EmergencyCallData.Comment+xml,
|
84
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
85
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
86
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
87
|
+
application/ppsp-tracker+json, application/problem+json,
|
88
|
+
application/problem+xml, application/vnd.filmit.zfc,
|
89
|
+
application/vnd.hdt, application/vnd.mapbox-vector-tile,
|
90
|
+
application/vnd.ms-PrintDeviceCapabilities+xml,
|
91
|
+
application/vnd.ms-PrintSchemaTicket+xml,
|
92
|
+
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
93
|
+
model/vnd.rosette.annotated-data-model, and video/H265.
|
94
|
+
|
95
|
+
* Updated to [Contributor Covenant 1.4][Code of Conduct].
|
96
|
+
* Shift the support code in this repository to be developed with Ruby 2.3.
|
97
|
+
This involves:
|
98
|
+
|
99
|
+
* Adding `frozen_string_literal: true` to all Ruby files.
|
100
|
+
* Applied some recommended readability and performance suggestions from
|
101
|
+
Rubocop. Ignored some style recommendations, too.
|
102
|
+
* Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
|
103
|
+
|
104
|
+
## 3.2015.1120 / 2015-11-20
|
105
|
+
|
106
|
+
* Extracted from [ruby-mime-types][rmt].
|
107
|
+
* Added a [Code of Conduct][].
|
108
|
+
* The versioning has changed to be semantic on format plus date in two parts.
|
109
|
+
|
110
|
+
* All registry formats have been updated to remove deprecated data.
|
111
|
+
* The columnar format has been updated to store three boolean flags in a
|
112
|
+
single flags file.
|
113
|
+
|
114
|
+
* Updated the conversion and management utilities to work with
|
115
|
+
ruby-mime-types 3.x.
|
116
|
+
|
117
|
+
* Updated the IANA media registry entries as of release date:
|
118
|
+
|
119
|
+
* Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
120
|
+
|
121
|
+
* Added application/cdni, application/csvm+json, application/rfc+xml,
|
122
|
+
application/vnd.3gpp.access-transfer-events+xml,
|
123
|
+
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
124
|
+
application/vnd.ms-windows.devicepairing,
|
125
|
+
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
126
|
+
application/vnd.pagerduty+json, video/VP8.
|
127
|
+
|
128
|
+
## 2.6.2 / 2015-09-13
|
129
|
+
|
130
|
+
* Updated the IANA media registry entries as of release date:
|
131
|
+
|
132
|
+
* Updated metadata for application/cals-1840, application/index.obj,
|
133
|
+
application/ocsp-response, application/vnd.dtg.local.html,
|
134
|
+
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
135
|
+
|
136
|
+
* Added application/pkcs12, application/scim+json, multipart/form-data.
|
137
|
+
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
138
|
+
application/vnd.3gpp.mid-call+xml,
|
139
|
+
application/vnd.3gpp-state-and-event-info+xml,
|
140
|
+
application.3gpp.ussd+xml, application/vnd.anki,
|
141
|
+
application/vnd.biopax.rdf+xml, application/vnd.drive+json,
|
142
|
+
application/vnd.firemonkeys.cloudcell,
|
143
|
+
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
144
|
+
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
145
|
+
audio/G711-0, image/vnd.mozilla.apng.
|
146
|
+
|
147
|
+
## 2.6 / 2015-05-25
|
148
|
+
|
149
|
+
* Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
150
|
+
to application/font-woff,
|
151
|
+
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
152
|
+
* Updated the IANA media registry entries as of release date:
|
153
|
+
* Updated metadata for application/jose, application/jose+json,
|
154
|
+
application/jwk+json, application/jwk-set+json, application/jwt to
|
155
|
+
reflect the adoption of RFC7519.
|
156
|
+
* Added application/vnd.balsamiq.bmpr.
|
157
|
+
|
158
|
+
## 2.5 / 2015-04-25
|
159
|
+
|
160
|
+
* Updated the IANA media registry entries as of release date:
|
161
|
+
* Added MIME types: application/A2L, application/AML, application/ATFX,
|
162
|
+
application/ATXML, application/CDFX+XML, application/CEA,
|
163
|
+
application/DII, application/DIT, application/jose,
|
164
|
+
application/jose+json, application/json-seq, application/jwk+json,
|
165
|
+
application/jwk-set+json, application/jwt, application/LXF,
|
166
|
+
application/MF4, application/rdap+json,
|
167
|
+
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
168
|
+
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
169
|
+
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
170
|
+
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
171
|
+
application/vnd.gov.sk.e-form+zip,
|
172
|
+
application/vnd.gov.sk.xmldatacontainer+xml,
|
173
|
+
application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
|
174
|
+
application/vnd.ims.imsccv1p3, application/vnd.micro+json,
|
175
|
+
application/vnd.microsoft.portable-executable,
|
176
|
+
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
177
|
+
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
178
|
+
image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
|
179
|
+
TEMPORARY).
|
180
|
+
* Updated metadata for application/coap-group+json (RFC7390),
|
181
|
+
application/epub+zip (now registered), application/merge-patch+json
|
182
|
+
(RFC7396), application/smil, application/vnd.arastra.swi,
|
183
|
+
application/vnd.geocube+xml, application/vnd.gmx,
|
184
|
+
application/xhtml+xml, text/directory.
|
185
|
+
* Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
186
|
+
text/tab-separated-values,
|
187
|
+
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
188
|
+
* Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
|
189
|
+
image/x-ms-bmp with the extension `bmp`,
|
190
|
+
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
191
|
+
|
192
|
+
## 2.4.2 / 2014-10-15
|
193
|
+
|
194
|
+
* Added application/vnd.ms-outlook as an unregistered MIME type with the
|
195
|
+
extension `msg`. Provided by @keerthisiv in
|
196
|
+
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
197
|
+
|
198
|
+
## 2.4.1 / 2014-10-07
|
199
|
+
|
200
|
+
* Changed the sort order of many of the extensions to restore behaviour from
|
201
|
+
mime-types 1.25.1.
|
202
|
+
* Added `friendly` MIME::Type descriptions where known.
|
203
|
+
* Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
204
|
+
application/x-msdownload.
|
205
|
+
* Updated the IANA media registry entries as of release date.
|
206
|
+
* Several MIME types had updated metadata (application/alto-*, RFC7285;
|
207
|
+
application/calendar+json, RFC7265; application/http, RFC7230;
|
208
|
+
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
209
|
+
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
210
|
+
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
211
|
+
RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
212
|
+
* MIME::Type application/EDI-Consent was renamed to
|
213
|
+
application/EDI-consent.
|
214
|
+
* Obsoleted application/vnd.informix-visionary in favour of
|
215
|
+
application/vnd.visionary. Obsoleted
|
216
|
+
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
217
|
+
* Added MIME types: application/ATF, application/coap-group+json,
|
218
|
+
application/DCD, application/merge-patch+json, application/scaip+xml,
|
219
|
+
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
220
|
+
application/vnd.doremir.scorecloud-binary-document,
|
221
|
+
application/vnd.dzr, application/vnd.maxmind.maxmind-db,
|
222
|
+
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
223
|
+
image/vnd.tencent.tap.
|
224
|
+
|
225
|
+
## 2.3 / 2014-05-23
|
226
|
+
|
227
|
+
* Updated the IANA media registry entries as of release date.
|
228
|
+
* Several MIME types had additional metadata added on the most recent
|
229
|
+
import.
|
230
|
+
* MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
231
|
+
* Added MIME types: application/3gpdash-qoe-report+xml,
|
232
|
+
application/alto-costmap+json, application/alto-costmapfilter+json,
|
233
|
+
application/alto-directory+json, application/alto-endpointcost+json,
|
234
|
+
application/alto-endpointcostparams+json,
|
235
|
+
application/alto-endpointprop+json,
|
236
|
+
application/alto-endpointpropparams+json, application/alto-error+json,
|
237
|
+
application/alto-networkmap+json,
|
238
|
+
application/alto-networkmapfilter+json, application/calendar+json,
|
239
|
+
application/vnd.debian.binary-package, application/vnd.geo+json,
|
240
|
+
application/vnd.ims.lis.v2.result+json,
|
241
|
+
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
242
|
+
application/vnd.ims.lti.v2.toolproxy+json,
|
243
|
+
application/vnd.ims.lti.v2.toolproxy.id+json,
|
244
|
+
application/vnd.ims.lti.v2.toolsettings+json,
|
245
|
+
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
246
|
+
application/vnd.mason+json, application/vnd.miele+json,
|
247
|
+
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
248
|
+
application/vnd.valve.source.material, application/vnd.yaoweme,
|
249
|
+
audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
|
250
|
+
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
251
|
+
text/cache-manifest
|
252
|
+
|
253
|
+
## 2.2 / 2014-03-14
|
254
|
+
* Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
255
|
+
Galbraith (@brandongalbraith) in
|
256
|
+
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
257
|
+
* Marked application/excel and application/x-excel as obsolete in favour of
|
258
|
+
application/vnd.ms-excel per
|
259
|
+
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
260
|
+
* Merged duplicate MIME types into the registered MIME type. The only
|
261
|
+
difference between the MIME types was capitalization; the MIME type
|
262
|
+
registry is case-preserving.
|
263
|
+
* Affected MIME types: application/vnd.3M.Post-it-Notes,
|
264
|
+
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
265
|
+
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
266
|
+
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
267
|
+
application/vnd.Kinar, application/vnd.MFER,
|
268
|
+
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
269
|
+
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
270
|
+
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
271
|
+
application/vnd.Mobius.TXF,
|
272
|
+
application/vnd.ms-excel.addin.macroEnabled.12,
|
273
|
+
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
274
|
+
application/vnd.ms-excel.sheet.macroEnabled.12,
|
275
|
+
application/vnd.ms-excel.template.macroEnabled.12,
|
276
|
+
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
277
|
+
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
278
|
+
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
279
|
+
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
280
|
+
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
281
|
+
application/vnd.ms-word.document.macroEnabled.12,
|
282
|
+
application/vnd.ms-word.template.macroEnabled.12,
|
283
|
+
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
284
|
+
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
285
|
+
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
286
|
+
video/H263, video/H264, video/JPEG, video/MJ2.
|
287
|
+
|
288
|
+
* Updated the IANA media registry entries as of release date.
|
289
|
+
* Registered type person names have been updated from surname only to
|
290
|
+
full name.
|
291
|
+
* Several types had updated RFC or draft RFC references.
|
292
|
+
* Added application/bacnet-xdd+zip, application/cms,
|
293
|
+
application/load-control+xml, application/PDX, application/ttml+xml,
|
294
|
+
application/vnd.collection.doc+json,
|
295
|
+
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
296
|
+
text/parameters, text/vnd.a, video/iso.segment
|
297
|
+
|
298
|
+
## 2.1 / 2014-01-25
|
299
|
+
|
300
|
+
* The IANA media type registry format changed, resulting in updates to most
|
301
|
+
of the 1,427 registered MIME types.
|
302
|
+
* Many registered MIME types have had some metadata updates due to the
|
303
|
+
change in the IANA registry format.
|
304
|
+
* MIME types having a publicly available registry application now
|
305
|
+
include a link to that file in references.
|
306
|
+
* Added `xrefs` data as discovered (see the API changes noted above).
|
307
|
+
* The Apache mime types configuration has been added to track additional
|
308
|
+
common but unregistered MIME types and known extensions for those MIME
|
309
|
+
types. This has affected many of the available MIME types.
|
310
|
+
* Added newly registered MIME types:
|
311
|
+
* application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
312
|
+
application/vcard+json, application/vnd.bekitzur-stech+json,
|
313
|
+
application/vnd.etsi.timestamp-token,
|
314
|
+
application/vnd.oma.cab-feature-handler+xml,
|
315
|
+
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
316
|
+
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
317
|
+
* Added 180 unregistered MIME types from the Apache list:
|
318
|
+
* application/applixware, application/cu-seeme, application/docbook+xml,
|
319
|
+
application/gml+xml, application/gpx+xml, application/gxf,
|
320
|
+
application/java-archive, application/java-serialized-object,
|
321
|
+
application/java-vm, application/jsonml+json, application/metalink+xml,
|
322
|
+
application/omdoc+xml, application/onenote, application/pics-rules,
|
323
|
+
application/rsd+xml, application/ssdl+xml,
|
324
|
+
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
325
|
+
application/vnd.anser-web-funds-transfer-initiation,
|
326
|
+
application/vnd.curl.car, application/vnd.curl.pcurl,
|
327
|
+
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
328
|
+
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
329
|
+
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
330
|
+
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
331
|
+
application/vnd.kinar, application/vnd.mfer,
|
332
|
+
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
333
|
+
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
334
|
+
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
335
|
+
application/vnd.mobius.txf,
|
336
|
+
application/vnd.ms-excel.addin.macroenabled.12,
|
337
|
+
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
338
|
+
application/vnd.ms-excel.sheet.macroenabled.12,
|
339
|
+
application/vnd.ms-excel.template.macroenabled.12,
|
340
|
+
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
341
|
+
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
342
|
+
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
343
|
+
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
344
|
+
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
345
|
+
application/vnd.ms-powerpoint.template.macroenabled.12,
|
346
|
+
application/vnd.ms-word.document.macroenabled.12,
|
347
|
+
application/vnd.ms-word.template.macroenabled.12,
|
348
|
+
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
349
|
+
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
350
|
+
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
351
|
+
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
352
|
+
application/winhlp, application/x-abiword,
|
353
|
+
application/x-ace-compressed, application/x-authorware-bin,
|
354
|
+
application/x-authorware-map, application/x-authorware-seg,
|
355
|
+
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
356
|
+
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
357
|
+
application/x-conference, application/x-dgc-compressed,
|
358
|
+
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
359
|
+
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
360
|
+
application/x-font-bdf, application/x-font-ghostscript,
|
361
|
+
application/x-font-linux-psf, application/x-font-otf,
|
362
|
+
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
363
|
+
application/x-font-type1, application/x-freearc,
|
364
|
+
application/x-gca-compressed, application/x-glulx,
|
365
|
+
application/x-gnumeric, application/x-gramps-xml,
|
366
|
+
application/x-install-instructions, application/x-iso9660-image,
|
367
|
+
application/x-lzh-compressed, application/x-mie,
|
368
|
+
application/x-ms-application, application/x-ms-shortcut,
|
369
|
+
application/x-ms-xbap, application/x-msbinder,
|
370
|
+
application/x-mscardfile, application/x-msclip,
|
371
|
+
application/x-msmediaview, application/x-msmetafile,
|
372
|
+
application/x-msmoney, application/x-mspublisher,
|
373
|
+
application/x-msschedule, application/x-msterminal,
|
374
|
+
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
375
|
+
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
376
|
+
application/x-research-info-systems, application/x-silverlight-app,
|
377
|
+
application/x-sql, application/x-stuffitx, application/x-subrip,
|
378
|
+
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
379
|
+
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
380
|
+
application/x-xz, application/x-zmachine, application/xaml+xml,
|
381
|
+
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
382
|
+
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
383
|
+
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
384
|
+
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
385
|
+
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
386
|
+
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
387
|
+
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
388
|
+
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
389
|
+
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
390
|
+
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
391
|
+
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
392
|
+
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
393
|
+
* Merged the non-standard VMS platform text/plain with the standard
|
394
|
+
text/plain.
|
395
|
+
|
396
|
+
[#10]: https://github.com/mime-types/mime-types-data/pull/10
|
397
|
+
[#11]: https://github.com/mime-types/mime-types-data/pull/11
|
398
|
+
[#12]: https://github.com/mime-types/mime-types-data/pull/12
|
399
|
+
[#13]: https://github.com/mime-types/mime-types-data/pull/13
|
400
|
+
[#20]: https://github.com/mime-types/mime-types-data/pull/20
|
401
|
+
[#21]: https://github.com/mime-types/mime-types-data/pull/21
|
402
|
+
[#22]: https://github.com/mime-types/mime-types-data/pull/22
|
403
|
+
[#23]: https://github.com/mime-types/mime-types-data/pull/23
|
404
|
+
[#24]: https://github.com/mime-types/mime-types-data/pull/24
|
405
|
+
[rmt]: https://github.com/mime-types/ruby-mime-types
|
406
|
+
[Code of Conduct]: Code-of-Conduct.md
|