husc 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1028) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +6 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +64 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +44 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/husc.gemspec +29 -0
  14. data/lib/husc.rb +213 -0
  15. data/lib/husc/version.rb +3 -0
  16. data/vendor/bundle/bin/htmldiff +29 -0
  17. data/vendor/bundle/bin/ldiff +29 -0
  18. data/vendor/bundle/bin/nokogiri +27 -0
  19. data/vendor/bundle/bin/rake +27 -0
  20. data/vendor/bundle/bin/rspec +27 -0
  21. data/vendor/bundle/cache/connection_pool-2.2.2.gem +0 -0
  22. data/vendor/bundle/cache/diff-lcs-1.3.gem +0 -0
  23. data/vendor/bundle/cache/domain_name-0.5.20190701.gem +0 -0
  24. data/vendor/bundle/cache/http-cookie-1.0.3.gem +0 -0
  25. data/vendor/bundle/cache/mechanize-2.7.6.gem +0 -0
  26. data/vendor/bundle/cache/mime-types-3.3.1.gem +0 -0
  27. data/vendor/bundle/cache/mime-types-data-3.2019.1009.gem +0 -0
  28. data/vendor/bundle/cache/mini_portile2-2.4.0.gem +0 -0
  29. data/vendor/bundle/cache/net-http-digest_auth-1.4.1.gem +0 -0
  30. data/vendor/bundle/cache/net-http-persistent-3.1.0.gem +0 -0
  31. data/vendor/bundle/cache/nokogiri-1.10.7.gem +0 -0
  32. data/vendor/bundle/cache/ntlm-http-0.1.1.gem +0 -0
  33. data/vendor/bundle/cache/rake-12.3.3.gem +0 -0
  34. data/vendor/bundle/cache/rspec-3.9.0.gem +0 -0
  35. data/vendor/bundle/cache/rspec-core-3.9.1.gem +0 -0
  36. data/vendor/bundle/cache/rspec-expectations-3.9.0.gem +0 -0
  37. data/vendor/bundle/cache/rspec-mocks-3.9.1.gem +0 -0
  38. data/vendor/bundle/cache/rspec-support-3.9.2.gem +0 -0
  39. data/vendor/bundle/cache/unf-0.1.4.gem +0 -0
  40. data/vendor/bundle/cache/unf_ext-0.0.7.6.gem +0 -0
  41. data/vendor/bundle/cache/webrobots-0.1.2.gem +0 -0
  42. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem.build_complete +0 -0
  43. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem_make.out +153 -0
  44. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/mkmf.log +562 -0
  45. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/nokogiri/nokogiri.bundle +0 -0
  46. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem.build_complete +0 -0
  47. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem_make.out +38 -0
  48. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/mkmf.log +35 -0
  49. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/unf_ext.bundle +0 -0
  50. data/vendor/bundle/gems/connection_pool-2.2.2/.gitignore +4 -0
  51. data/vendor/bundle/gems/connection_pool-2.2.2/.travis.yml +10 -0
  52. data/vendor/bundle/gems/connection_pool-2.2.2/Changes.md +123 -0
  53. data/vendor/bundle/gems/connection_pool-2.2.2/Gemfile +3 -0
  54. data/vendor/bundle/gems/connection_pool-2.2.2/LICENSE +20 -0
  55. data/vendor/bundle/gems/connection_pool-2.2.2/README.md +107 -0
  56. data/vendor/bundle/gems/connection_pool-2.2.2/Rakefile +6 -0
  57. data/vendor/bundle/gems/connection_pool-2.2.2/connection_pool.gemspec +21 -0
  58. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool.rb +161 -0
  59. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/monotonic_time.rb +66 -0
  60. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/timed_stack.rb +176 -0
  61. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/version.rb +3 -0
  62. data/vendor/bundle/gems/connection_pool-2.2.2/test/helper.rb +8 -0
  63. data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool.rb +516 -0
  64. data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool_timed_stack.rb +149 -0
  65. data/vendor/bundle/gems/diff-lcs-1.3/.rspec +1 -0
  66. data/vendor/bundle/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
  67. data/vendor/bundle/gems/diff-lcs-1.3/Contributing.md +83 -0
  68. data/vendor/bundle/gems/diff-lcs-1.3/History.md +220 -0
  69. data/vendor/bundle/gems/diff-lcs-1.3/License.md +39 -0
  70. data/vendor/bundle/gems/diff-lcs-1.3/Manifest.txt +37 -0
  71. data/vendor/bundle/gems/diff-lcs-1.3/README.rdoc +84 -0
  72. data/vendor/bundle/gems/diff-lcs-1.3/Rakefile +57 -0
  73. data/vendor/bundle/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
  74. data/vendor/bundle/gems/diff-lcs-1.3/bin/htmldiff +32 -0
  75. data/vendor/bundle/gems/diff-lcs-1.3/bin/ldiff +6 -0
  76. data/vendor/bundle/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
  77. data/vendor/bundle/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
  78. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
  79. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
  80. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
  81. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
  82. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
  83. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
  84. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
  85. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
  86. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
  87. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
  88. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
  89. data/vendor/bundle/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
  90. data/vendor/bundle/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
  91. data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
  92. data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
  93. data/vendor/bundle/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
  94. data/vendor/bundle/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
  95. data/vendor/bundle/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
  96. data/vendor/bundle/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
  97. data/vendor/bundle/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
  98. data/vendor/bundle/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
  99. data/vendor/bundle/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
  100. data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
  101. data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
  102. data/vendor/bundle/gems/domain_name-0.5.20190701/.document +5 -0
  103. data/vendor/bundle/gems/domain_name-0.5.20190701/.gitignore +17 -0
  104. data/vendor/bundle/gems/domain_name-0.5.20190701/.travis.yml +21 -0
  105. data/vendor/bundle/gems/domain_name-0.5.20190701/CHANGELOG.md +219 -0
  106. data/vendor/bundle/gems/domain_name-0.5.20190701/Gemfile +4 -0
  107. data/vendor/bundle/gems/domain_name-0.5.20190701/LICENSE.txt +78 -0
  108. data/vendor/bundle/gems/domain_name-0.5.20190701/README.md +67 -0
  109. data/vendor/bundle/gems/domain_name-0.5.20190701/Rakefile +111 -0
  110. data/vendor/bundle/gems/domain_name-0.5.20190701/data/public_suffix_list.dat +12985 -0
  111. data/vendor/bundle/gems/domain_name-0.5.20190701/domain_name.gemspec +36 -0
  112. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name.rb +297 -0
  113. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb +8787 -0
  114. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb.erb +11 -0
  115. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/punycode.rb +283 -0
  116. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/version.rb +3 -0
  117. data/vendor/bundle/gems/domain_name-0.5.20190701/test/helper.rb +17 -0
  118. data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name-punycode.rb +97 -0
  119. data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name.rb +317 -0
  120. data/vendor/bundle/gems/domain_name-0.5.20190701/tool/gen_etld_data.rb +63 -0
  121. data/vendor/bundle/gems/http-cookie-1.0.3/.gitignore +17 -0
  122. data/vendor/bundle/gems/http-cookie-1.0.3/.travis.yml +21 -0
  123. data/vendor/bundle/gems/http-cookie-1.0.3/CHANGELOG.md +22 -0
  124. data/vendor/bundle/gems/http-cookie-1.0.3/Gemfile +4 -0
  125. data/vendor/bundle/gems/http-cookie-1.0.3/LICENSE.txt +24 -0
  126. data/vendor/bundle/gems/http-cookie-1.0.3/README.md +235 -0
  127. data/vendor/bundle/gems/http-cookie-1.0.3/Rakefile +20 -0
  128. data/vendor/bundle/gems/http-cookie-1.0.3/http-cookie.gemspec +34 -0
  129. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http-cookie.rb +1 -0
  130. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie.rb +685 -0
  131. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/ruby_compat.rb +63 -0
  132. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/scanner.rb +231 -0
  133. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/version.rb +5 -0
  134. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar.rb +344 -0
  135. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_saver.rb +65 -0
  136. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_store.rb +124 -0
  137. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/cookiestxt_saver.rb +106 -0
  138. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/hash_store.rb +163 -0
  139. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/mozilla_store.rb +458 -0
  140. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/yaml_saver.rb +76 -0
  141. data/vendor/bundle/gems/http-cookie-1.0.3/test/helper.rb +55 -0
  142. data/vendor/bundle/gems/http-cookie-1.0.3/test/mechanize.yml +101 -0
  143. data/vendor/bundle/gems/http-cookie-1.0.3/test/simplecov_start.rb +2 -0
  144. data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie.rb +1122 -0
  145. data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie_jar.rb +985 -0
  146. data/vendor/bundle/gems/mechanize-2.7.6/.autotest +6 -0
  147. data/vendor/bundle/gems/mechanize-2.7.6/.gitignore +15 -0
  148. data/vendor/bundle/gems/mechanize-2.7.6/.travis.yml +36 -0
  149. data/vendor/bundle/gems/mechanize-2.7.6/CHANGELOG.rdoc +999 -0
  150. data/vendor/bundle/gems/mechanize-2.7.6/EXAMPLES.rdoc +192 -0
  151. data/vendor/bundle/gems/mechanize-2.7.6/GUIDE.rdoc +168 -0
  152. data/vendor/bundle/gems/mechanize-2.7.6/Gemfile +6 -0
  153. data/vendor/bundle/gems/mechanize-2.7.6/LICENSE.rdoc +20 -0
  154. data/vendor/bundle/gems/mechanize-2.7.6/README.rdoc +77 -0
  155. data/vendor/bundle/gems/mechanize-2.7.6/Rakefile +41 -0
  156. data/vendor/bundle/gems/mechanize-2.7.6/examples/flickr_upload.rb +22 -0
  157. data/vendor/bundle/gems/mechanize-2.7.6/examples/mech-dump.rb +5 -0
  158. data/vendor/bundle/gems/mechanize-2.7.6/examples/proxy_req.rb +7 -0
  159. data/vendor/bundle/gems/mechanize-2.7.6/examples/rubygems.rb +23 -0
  160. data/vendor/bundle/gems/mechanize-2.7.6/examples/spider.rb +22 -0
  161. data/vendor/bundle/gems/mechanize-2.7.6/examples/wikipedia_links_to_philosophy.rb +159 -0
  162. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize.rb +1369 -0
  163. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/chunked_termination_error.rb +7 -0
  164. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/content_type_error.rb +13 -0
  165. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie.rb +73 -0
  166. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie_jar.rb +190 -0
  167. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/directory_saver.rb +77 -0
  168. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/download.rb +84 -0
  169. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_matcher.rb +68 -0
  170. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_not_found_error.rb +19 -0
  171. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file.rb +93 -0
  172. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_connection.rb +17 -0
  173. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_request.rb +30 -0
  174. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_response.rb +80 -0
  175. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_saver.rb +39 -0
  176. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form.rb +724 -0
  177. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/button.rb +6 -0
  178. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/check_box.rb +19 -0
  179. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/field.rb +124 -0
  180. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/file_upload.rb +21 -0
  181. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/hidden.rb +3 -0
  182. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/image_button.rb +19 -0
  183. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/keygen.rb +34 -0
  184. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/multi_select_list.rb +93 -0
  185. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/option.rb +51 -0
  186. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/radio_button.rb +69 -0
  187. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/reset.rb +3 -0
  188. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/select_list.rb +44 -0
  189. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/submit.rb +3 -0
  190. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/text.rb +3 -0
  191. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/textarea.rb +3 -0
  192. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/headers.rb +23 -0
  193. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/history.rb +82 -0
  194. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http.rb +8 -0
  195. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/agent.rb +1281 -0
  196. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_challenge.rb +65 -0
  197. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_realm.rb +31 -0
  198. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_store.rb +123 -0
  199. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/content_disposition_parser.rb +191 -0
  200. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/www_authenticate_parser.rb +178 -0
  201. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/image.rb +6 -0
  202. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page.rb +648 -0
  203. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/base.rb +7 -0
  204. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/frame.rb +29 -0
  205. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/image.rb +182 -0
  206. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/label.rb +20 -0
  207. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/link.rb +108 -0
  208. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/meta_refresh.rb +78 -0
  209. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/parser.rb +182 -0
  210. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/pluggable_parsers.rb +179 -0
  211. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/prependable.rb +89 -0
  212. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_limit_reached_error.rb +19 -0
  213. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_not_get_or_head_error.rb +21 -0
  214. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_code_error.rb +26 -0
  215. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_read_error.rb +38 -0
  216. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/robots_disallowed_error.rb +28 -0
  217. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case.rb +330 -0
  218. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/.document +1 -0
  219. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/bad_chunking_servlet.rb +14 -0
  220. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/basic_auth_servlet.rb +24 -0
  221. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/content_type_servlet.rb +8 -0
  222. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/digest_auth_servlet.rb +33 -0
  223. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/file_upload_servlet.rb +20 -0
  224. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/form_servlet.rb +55 -0
  225. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/gzip_servlet.rb +32 -0
  226. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/header_servlet.rb +14 -0
  227. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/http_refresh_servlet.rb +8 -0
  228. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_redirect_servlet.rb +10 -0
  229. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_refresh_servlet.rb +9 -0
  230. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_as_string_servlet.rb +37 -0
  231. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_servlet.rb +33 -0
  232. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/modified_since_servlet.rb +21 -0
  233. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/ntlm_servlet.rb +30 -0
  234. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_no_spaces_servlet.rb +11 -0
  235. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_servlet.rb +11 -0
  236. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/quoted_value_cookie_servlet.rb +11 -0
  237. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/redirect_servlet.rb +13 -0
  238. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/referer_servlet.rb +12 -0
  239. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_with_empty_url.rb +15 -0
  240. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_without_url.rb +14 -0
  241. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/response_code_servlet.rb +15 -0
  242. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/robots_txt_servlet.rb +14 -0
  243. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/send_cookies_servlet.rb +19 -0
  244. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/server.rb +36 -0
  245. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/servlets.rb +58 -0
  246. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/verb_servlet.rb +11 -0
  247. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unauthorized_error.rb +22 -0
  248. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unsupported_scheme_error.rb +8 -0
  249. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/util.rb +161 -0
  250. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/version.rb +3 -0
  251. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/xml_file.rb +47 -0
  252. data/vendor/bundle/gems/mechanize-2.7.6/mechanize.gemspec +66 -0
  253. data/vendor/bundle/gems/mechanize-2.7.6/test/data/htpasswd +1 -0
  254. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.crt +16 -0
  255. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.csr +12 -0
  256. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.key +15 -0
  257. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.pem +15 -0
  258. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/alt_text.html +10 -0
  259. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/bad_form_test.html +9 -0
  260. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/button.jpg +0 -0
  261. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/canonical_uri.html +9 -0
  262. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/dir with spaces/foo.html +1 -0
  263. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/empty_form.html +6 -0
  264. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/file_upload.html +26 -0
  265. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/find_link.html +38 -0
  266. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multi_select.html +16 -0
  267. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multival.html +37 -0
  268. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_action.html +18 -0
  269. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_input_name.html +16 -0
  270. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_order_test.html +11 -0
  271. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_select.html +16 -0
  272. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_set_fields.html +14 -0
  273. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_test.html +188 -0
  274. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_referer_test.html +10 -0
  275. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_test.html +30 -0
  276. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/google.html +13 -0
  277. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/index.html +6 -0
  278. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/link with space.html +5 -0
  279. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/meta_cookie.html +11 -0
  280. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/no_title_test.html +6 -0
  281. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/noindex.html +9 -0
  282. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/rails_3_encoding_hack_form_test.html +27 -0
  283. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/relative/tc_relative_links.html +21 -0
  284. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/robots.html +8 -0
  285. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_charset.html +9 -0
  286. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_links.html +5 -0
  287. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_base_link.html +8 -0
  288. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_blank_form.html +11 -0
  289. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_charset.html +6 -0
  290. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_checkboxes.html +19 -0
  291. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_encoded_links.html +5 -0
  292. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_field_precedence.html +11 -0
  293. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta.html +8 -0
  294. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_1.html +8 -0
  295. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_2.html +8 -0
  296. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_form_action.html +48 -0
  297. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_links.html +21 -0
  298. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_meta_in_body.html +9 -0
  299. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_pretty_print.html +17 -0
  300. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_referer.html +16 -0
  301. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_relative_links.html +19 -0
  302. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_textarea.html +23 -0
  303. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/test_click.html +11 -0
  304. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/unusual______.html +5 -0
  305. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize.rb +1361 -0
  306. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie.rb +547 -0
  307. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie_jar.rb +582 -0
  308. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_directory_saver.rb +59 -0
  309. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_download.rb +89 -0
  310. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_element_not_found_error.rb +15 -0
  311. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file.rb +107 -0
  312. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_connection.rb +21 -0
  313. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_request.rb +25 -0
  314. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_response.rb +23 -0
  315. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_saver.rb +21 -0
  316. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form.rb +1012 -0
  317. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_check_box.rb +48 -0
  318. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_encoding.rb +109 -0
  319. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_field.rb +77 -0
  320. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_file_upload.rb +20 -0
  321. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_image_button.rb +12 -0
  322. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_keygen.rb +32 -0
  323. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_multi_select_list.rb +97 -0
  324. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_option.rb +59 -0
  325. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_radio_button.rb +95 -0
  326. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_select_list.rb +80 -0
  327. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_textarea.rb +52 -0
  328. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_headers.rb +35 -0
  329. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_history.rb +103 -0
  330. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_agent.rb +1754 -0
  331. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_challenge.rb +63 -0
  332. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_realm.rb +55 -0
  333. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_store.rb +232 -0
  334. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_content_disposition_parser.rb +139 -0
  335. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_www_authenticate_parser.rb +203 -0
  336. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_image.rb +8 -0
  337. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_link.rb +146 -0
  338. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page.rb +280 -0
  339. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_encoding.rb +187 -0
  340. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_frame.rb +16 -0
  341. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_image.rb +190 -0
  342. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_link.rb +373 -0
  343. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_meta_refresh.rb +150 -0
  344. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_parser.rb +315 -0
  345. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_pluggable_parser.rb +67 -0
  346. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_limit_reached_error.rb +24 -0
  347. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_not_get_or_head_error.rb +14 -0
  348. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_response_read_error.rb +28 -0
  349. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_subclass.rb +22 -0
  350. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_util.rb +143 -0
  351. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_xml_file.rb +29 -0
  352. data/vendor/bundle/gems/mechanize-2.7.6/test/test_multi_select.rb +119 -0
  353. data/vendor/bundle/gems/mime-types-3.3.1/Code-of-Conduct.md +73 -0
  354. data/vendor/bundle/gems/mime-types-3.3.1/Contributing.md +143 -0
  355. data/vendor/bundle/gems/mime-types-3.3.1/History.md +240 -0
  356. data/vendor/bundle/gems/mime-types-3.3.1/Licence.md +25 -0
  357. data/vendor/bundle/gems/mime-types-3.3.1/Manifest.txt +31 -0
  358. data/vendor/bundle/gems/mime-types-3.3.1/README.rdoc +193 -0
  359. data/vendor/bundle/gems/mime-types-3.3.1/Rakefile +284 -0
  360. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
  361. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type.rb +587 -0
  362. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +57 -0
  363. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types.rb +231 -0
  364. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +136 -0
  365. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/cache.rb +58 -0
  366. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
  367. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
  368. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +32 -0
  369. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/full.rb +19 -0
  370. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/loader.rb +146 -0
  371. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/logger.rb +39 -0
  372. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/registry.rb +90 -0
  373. data/vendor/bundle/gems/mime-types-3.3.1/test/bad-fixtures/malformed +9 -0
  374. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/json.json +1 -0
  375. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/old-data +9 -0
  376. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/yaml.yaml +55 -0
  377. data/vendor/bundle/gems/mime-types-3.3.1/test/minitest_helper.rb +13 -0
  378. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_type.rb +610 -0
  379. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types.rb +169 -0
  380. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +118 -0
  381. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_class.rb +159 -0
  382. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +49 -0
  383. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +32 -0
  384. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Code-of-Conduct.md +75 -0
  385. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Contributing.md +162 -0
  386. data/vendor/bundle/gems/mime-types-data-3.2019.1009/History.md +406 -0
  387. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Licence.md +25 -0
  388. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Manifest.txt +31 -0
  389. data/vendor/bundle/gems/mime-types-data-3.2019.1009/README.md +63 -0
  390. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Rakefile +94 -0
  391. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime-types.json +1 -0
  392. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.content_type.column +2215 -0
  393. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.docs.column +2215 -0
  394. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.encoding.column +2215 -0
  395. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.flags.column +2215 -0
  396. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.friendly.column +2215 -0
  397. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.pext.column +2215 -0
  398. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.use_instead.column +2215 -0
  399. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.xrefs.column +2215 -0
  400. data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime-types-data.rb +3 -0
  401. data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime/types/data.rb +21 -0
  402. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/application.yaml +16361 -0
  403. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/audio.yaml +1644 -0
  404. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/chemical.yaml +71 -0
  405. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/conference.yaml +9 -0
  406. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/drawing.yaml +15 -0
  407. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/font.yaml +65 -0
  408. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/image.yaml +1069 -0
  409. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/message.yaml +200 -0
  410. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/model.yaml +302 -0
  411. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/multipart.yaml +179 -0
  412. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/text.yaml +1055 -0
  413. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/video.yaml +1070 -0
  414. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/world.yaml +8 -0
  415. data/vendor/bundle/gems/mini_portile2-2.4.0/.concourse.yml +83 -0
  416. data/vendor/bundle/gems/mini_portile2-2.4.0/.gitignore +7 -0
  417. data/vendor/bundle/gems/mini_portile2-2.4.0/.travis.yml +15 -0
  418. data/vendor/bundle/gems/mini_portile2-2.4.0/CHANGELOG.md +209 -0
  419. data/vendor/bundle/gems/mini_portile2-2.4.0/Gemfile +4 -0
  420. data/vendor/bundle/gems/mini_portile2-2.4.0/LICENSE.txt +20 -0
  421. data/vendor/bundle/gems/mini_portile2-2.4.0/README.md +245 -0
  422. data/vendor/bundle/gems/mini_portile2-2.4.0/Rakefile +29 -0
  423. data/vendor/bundle/gems/mini_portile2-2.4.0/appveyor.yml +25 -0
  424. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/mini_portile.yml +141 -0
  425. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.ps1 +11 -0
  426. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.sh +13 -0
  427. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2.rb +3 -0
  428. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb +556 -0
  429. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
  430. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/version.rb +3 -0
  431. data/vendor/bundle/gems/mini_portile2-2.4.0/mini_portile2.gemspec +42 -0
  432. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/git/config +4 -0
  433. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data +1 -0
  434. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.asc +9 -0
  435. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
  436. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/patch 1.diff +7 -0
  437. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test mini portile-1.0.0/configure +11 -0
  438. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
  439. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/hello.c +4 -0
  440. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-download-archive.tar.gz +1 -0
  441. data/vendor/bundle/gems/mini_portile2-2.4.0/test/helper.rb +60 -0
  442. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cmake.rb +64 -0
  443. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cook.rb +115 -0
  444. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_digest.rb +215 -0
  445. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_download.rb +71 -0
  446. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_proxy.rb +121 -0
  447. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.autotest +8 -0
  448. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.travis.yml +16 -0
  449. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/History.txt +52 -0
  450. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Manifest.txt +10 -0
  451. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/README.txt +44 -0
  452. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Rakefile +25 -0
  453. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/lib/net/http/digest_auth.rb +173 -0
  454. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/auth_server.rb +47 -0
  455. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/net_http_example.rb +27 -0
  456. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/test/test_net_http_digest_auth.rb +130 -0
  457. data/vendor/bundle/gems/net-http-persistent-3.1.0/.autotest +9 -0
  458. data/vendor/bundle/gems/net-http-persistent-3.1.0/.gemtest +0 -0
  459. data/vendor/bundle/gems/net-http-persistent-3.1.0/.travis.yml +24 -0
  460. data/vendor/bundle/gems/net-http-persistent-3.1.0/Gemfile +15 -0
  461. data/vendor/bundle/gems/net-http-persistent-3.1.0/History.txt +391 -0
  462. data/vendor/bundle/gems/net-http-persistent-3.1.0/Manifest.txt +14 -0
  463. data/vendor/bundle/gems/net-http-persistent-3.1.0/README.rdoc +82 -0
  464. data/vendor/bundle/gems/net-http-persistent-3.1.0/Rakefile +31 -0
  465. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb +1202 -0
  466. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/connection.rb +40 -0
  467. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/pool.rb +53 -0
  468. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/timed_stack_multi.rb +79 -0
  469. data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent.rb +1621 -0
  470. data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent_timed_stack_multi.rb +151 -0
  471. data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE-DEPENDENCIES.md +1614 -0
  472. data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE.md +9 -0
  473. data/vendor/bundle/gems/nokogiri-1.10.7/README.md +198 -0
  474. data/vendor/bundle/gems/nokogiri-1.10.7/bin/nokogiri +118 -0
  475. data/vendor/bundle/gems/nokogiri-1.10.7/dependencies.yml +74 -0
  476. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/.sitearchdir.-.nokogiri.time +0 -0
  477. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/Makefile +629 -0
  478. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/depend +358 -0
  479. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/extconf.rb +686 -0
  480. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.c +170 -0
  481. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.h +10 -0
  482. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.o +0 -0
  483. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.c +279 -0
  484. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.h +10 -0
  485. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.o +0 -0
  486. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.c +32 -0
  487. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.h +8 -0
  488. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.o +0 -0
  489. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.c +116 -0
  490. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.h +11 -0
  491. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.o +0 -0
  492. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.c +87 -0
  493. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.h +9 -0
  494. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.o +0 -0
  495. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.bundle +0 -0
  496. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.c +141 -0
  497. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.h +121 -0
  498. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.o +0 -0
  499. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.c +103 -0
  500. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.h +9 -0
  501. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.o +0 -0
  502. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.c +70 -0
  503. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.h +9 -0
  504. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.o +0 -0
  505. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.c +62 -0
  506. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.h +9 -0
  507. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.o +0 -0
  508. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.c +69 -0
  509. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.h +9 -0
  510. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.o +0 -0
  511. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.c +608 -0
  512. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.h +23 -0
  513. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.o +0 -0
  514. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.c +48 -0
  515. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.h +10 -0
  516. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.o +0 -0
  517. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.c +202 -0
  518. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.h +10 -0
  519. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.o +0 -0
  520. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.c +123 -0
  521. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.h +10 -0
  522. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.o +0 -0
  523. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.c +69 -0
  524. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.h +9 -0
  525. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.o +0 -0
  526. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.c +79 -0
  527. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.h +8 -0
  528. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.o +0 -0
  529. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.c +110 -0
  530. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.h +10 -0
  531. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.o +0 -0
  532. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.c +52 -0
  533. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.h +9 -0
  534. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.o +0 -0
  535. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.c +61 -0
  536. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.h +11 -0
  537. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.o +0 -0
  538. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  539. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  540. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.o +0 -0
  541. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.c +111 -0
  542. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.h +14 -0
  543. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.o +0 -0
  544. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.c +1753 -0
  545. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.h +13 -0
  546. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.o +0 -0
  547. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.c +486 -0
  548. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.h +12 -0
  549. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.o +0 -0
  550. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.c +56 -0
  551. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.h +9 -0
  552. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.o +0 -0
  553. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.c +668 -0
  554. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.h +10 -0
  555. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.o +0 -0
  556. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.c +161 -0
  557. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.h +9 -0
  558. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.o +0 -0
  559. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.c +310 -0
  560. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.h +39 -0
  561. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.o +0 -0
  562. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.c +262 -0
  563. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.h +10 -0
  564. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.o +0 -0
  565. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.c +159 -0
  566. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.h +9 -0
  567. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.o +0 -0
  568. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.c +205 -0
  569. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.h +9 -0
  570. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.o +0 -0
  571. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.c +64 -0
  572. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.h +13 -0
  573. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.o +0 -0
  574. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.c +52 -0
  575. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.h +9 -0
  576. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.o +0 -0
  577. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.c +298 -0
  578. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.h +10 -0
  579. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.o +0 -0
  580. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.c +270 -0
  581. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.h +14 -0
  582. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.o +0 -0
  583. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri.rb +144 -0
  584. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css.rb +27 -0
  585. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/node.rb +52 -0
  586. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.rb +750 -0
  587. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.y +272 -0
  588. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser_extras.rb +91 -0
  589. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/syntax_error.rb +7 -0
  590. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rb +153 -0
  591. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rex +55 -0
  592. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/xpath_visitor.rb +230 -0
  593. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/decorators/slop.rb +42 -0
  594. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html.rb +37 -0
  595. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/builder.rb +35 -0
  596. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document.rb +335 -0
  597. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document_fragment.rb +49 -0
  598. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description.rb +23 -0
  599. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description_defaults.rb +671 -0
  600. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/entity_lookup.rb +13 -0
  601. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser.rb +62 -0
  602. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser_context.rb +16 -0
  603. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/push_parser.rb +36 -0
  604. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/nokogiri.bundle +0 -0
  605. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/syntax_error.rb +4 -0
  606. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/version.rb +109 -0
  607. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml.rb +75 -0
  608. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attr.rb +14 -0
  609. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attribute_decl.rb +18 -0
  610. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/builder.rb +446 -0
  611. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/cdata.rb +11 -0
  612. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/character_data.rb +7 -0
  613. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document.rb +285 -0
  614. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document_fragment.rb +160 -0
  615. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/dtd.rb +32 -0
  616. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_content.rb +36 -0
  617. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_decl.rb +13 -0
  618. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_decl.rb +19 -0
  619. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_reference.rb +18 -0
  620. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/namespace.rb +13 -0
  621. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node.rb +902 -0
  622. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node/save_options.rb +61 -0
  623. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node_set.rb +371 -0
  624. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/notation.rb +6 -0
  625. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/parse_options.rb +120 -0
  626. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp.rb +2 -0
  627. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/character_data.rb +18 -0
  628. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/node.rb +56 -0
  629. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/processing_instruction.rb +8 -0
  630. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/reader.rb +112 -0
  631. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/relax_ng.rb +32 -0
  632. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax.rb +4 -0
  633. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/document.rb +171 -0
  634. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser.rb +122 -0
  635. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  636. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  637. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/schema.rb +63 -0
  638. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/searchable.rb +230 -0
  639. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/syntax_error.rb +70 -0
  640. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/text.rb +9 -0
  641. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath.rb +10 -0
  642. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  643. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath_context.rb +16 -0
  644. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt.rb +56 -0
  645. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt/stylesheet.rb +25 -0
  646. data/vendor/bundle/gems/nokogiri-1.10.7/lib/xsd/xmlparser/nokogiri.rb +102 -0
  647. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
  648. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  649. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  650. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0004-libxml2.la-is-in-top_builddir.patch +25 -0
  651. data/vendor/bundle/gems/ntlm-http-0.1.1/README +25 -0
  652. data/vendor/bundle/gems/ntlm-http-0.1.1/Rakefile +66 -0
  653. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/http.rb +86 -0
  654. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/imap.rb +73 -0
  655. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/smtp.rb +94 -0
  656. data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm.rb +774 -0
  657. data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm_http.rb +854 -0
  658. data/vendor/bundle/gems/ntlm-http-0.1.1/ntlm-http-0.1.1.gemspec +16 -0
  659. data/vendor/bundle/gems/ntlm-http-0.1.1/test/function_test.rb +111 -0
  660. data/vendor/bundle/gems/rake-12.3.3/CONTRIBUTING.rdoc +43 -0
  661. data/vendor/bundle/gems/rake-12.3.3/Gemfile +3 -0
  662. data/vendor/bundle/gems/rake-12.3.3/History.rdoc +2344 -0
  663. data/vendor/bundle/gems/rake-12.3.3/MIT-LICENSE +21 -0
  664. data/vendor/bundle/gems/rake-12.3.3/README.rdoc +156 -0
  665. data/vendor/bundle/gems/rake-12.3.3/Rakefile +41 -0
  666. data/vendor/bundle/gems/rake-12.3.3/azure-pipelines.yml +11 -0
  667. data/vendor/bundle/gems/rake-12.3.3/bin/bundle +105 -0
  668. data/vendor/bundle/gems/rake-12.3.3/bin/console +7 -0
  669. data/vendor/bundle/gems/rake-12.3.3/bin/rake +29 -0
  670. data/vendor/bundle/gems/rake-12.3.3/bin/rdoc +29 -0
  671. data/vendor/bundle/gems/rake-12.3.3/bin/rubocop +29 -0
  672. data/vendor/bundle/gems/rake-12.3.3/bin/setup +6 -0
  673. data/vendor/bundle/gems/rake-12.3.3/doc/command_line_usage.rdoc +158 -0
  674. data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile1 +38 -0
  675. data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile2 +35 -0
  676. data/vendor/bundle/gems/rake-12.3.3/doc/example/a.c +6 -0
  677. data/vendor/bundle/gems/rake-12.3.3/doc/example/b.c +6 -0
  678. data/vendor/bundle/gems/rake-12.3.3/doc/example/main.c +11 -0
  679. data/vendor/bundle/gems/rake-12.3.3/doc/glossary.rdoc +42 -0
  680. data/vendor/bundle/gems/rake-12.3.3/doc/jamis.rb +592 -0
  681. data/vendor/bundle/gems/rake-12.3.3/doc/proto_rake.rdoc +127 -0
  682. data/vendor/bundle/gems/rake-12.3.3/doc/rake.1 +156 -0
  683. data/vendor/bundle/gems/rake-12.3.3/doc/rakefile.rdoc +622 -0
  684. data/vendor/bundle/gems/rake-12.3.3/doc/rational.rdoc +151 -0
  685. data/vendor/bundle/gems/rake-12.3.3/exe/rake +27 -0
  686. data/vendor/bundle/gems/rake-12.3.3/lib/rake.rb +71 -0
  687. data/vendor/bundle/gems/rake-12.3.3/lib/rake/application.rb +824 -0
  688. data/vendor/bundle/gems/rake-12.3.3/lib/rake/backtrace.rb +24 -0
  689. data/vendor/bundle/gems/rake-12.3.3/lib/rake/clean.rb +78 -0
  690. data/vendor/bundle/gems/rake-12.3.3/lib/rake/cloneable.rb +17 -0
  691. data/vendor/bundle/gems/rake-12.3.3/lib/rake/cpu_counter.rb +107 -0
  692. data/vendor/bundle/gems/rake-12.3.3/lib/rake/default_loader.rb +15 -0
  693. data/vendor/bundle/gems/rake-12.3.3/lib/rake/dsl_definition.rb +195 -0
  694. data/vendor/bundle/gems/rake-12.3.3/lib/rake/early_time.rb +22 -0
  695. data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/core.rb +26 -0
  696. data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/string.rb +176 -0
  697. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_creation_task.rb +25 -0
  698. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_list.rb +435 -0
  699. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_task.rb +54 -0
  700. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils.rb +137 -0
  701. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils_ext.rb +145 -0
  702. data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_chain.rb +57 -0
  703. data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb +17 -0
  704. data/vendor/bundle/gems/rake-12.3.3/lib/rake/late_time.rb +18 -0
  705. data/vendor/bundle/gems/rake-12.3.3/lib/rake/linked_list.rb +112 -0
  706. data/vendor/bundle/gems/rake-12.3.3/lib/rake/loaders/makefile.rb +54 -0
  707. data/vendor/bundle/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
  708. data/vendor/bundle/gems/rake-12.3.3/lib/rake/name_space.rb +38 -0
  709. data/vendor/bundle/gems/rake-12.3.3/lib/rake/packagetask.rb +207 -0
  710. data/vendor/bundle/gems/rake-12.3.3/lib/rake/phony.rb +16 -0
  711. data/vendor/bundle/gems/rake-12.3.3/lib/rake/private_reader.rb +21 -0
  712. data/vendor/bundle/gems/rake-12.3.3/lib/rake/promise.rb +100 -0
  713. data/vendor/bundle/gems/rake-12.3.3/lib/rake/pseudo_status.rb +30 -0
  714. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_module.rb +67 -0
  715. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
  716. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
  717. data/vendor/bundle/gems/rake-12.3.3/lib/rake/scope.rb +43 -0
  718. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task.rb +413 -0
  719. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_argument_error.rb +8 -0
  720. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_arguments.rb +109 -0
  721. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_manager.rb +324 -0
  722. data/vendor/bundle/gems/rake-12.3.3/lib/rake/tasklib.rb +12 -0
  723. data/vendor/bundle/gems/rake-12.3.3/lib/rake/testtask.rb +224 -0
  724. data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_history_display.rb +49 -0
  725. data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_pool.rb +163 -0
  726. data/vendor/bundle/gems/rake-12.3.3/lib/rake/trace_output.rb +23 -0
  727. data/vendor/bundle/gems/rake-12.3.3/lib/rake/version.rb +10 -0
  728. data/vendor/bundle/gems/rake-12.3.3/lib/rake/win32.rb +51 -0
  729. data/vendor/bundle/gems/rake-12.3.3/rake.gemspec +42 -0
  730. data/vendor/bundle/gems/rspec-3.9.0/LICENSE.md +27 -0
  731. data/vendor/bundle/gems/rspec-3.9.0/README.md +43 -0
  732. data/vendor/bundle/gems/rspec-3.9.0/lib/rspec.rb +3 -0
  733. data/vendor/bundle/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
  734. data/vendor/bundle/gems/rspec-core-3.9.1/.document +5 -0
  735. data/vendor/bundle/gems/rspec-core-3.9.1/.yardopts +8 -0
  736. data/vendor/bundle/gems/rspec-core-3.9.1/Changelog.md +2274 -0
  737. data/vendor/bundle/gems/rspec-core-3.9.1/LICENSE.md +26 -0
  738. data/vendor/bundle/gems/rspec-core-3.9.1/README.md +384 -0
  739. data/vendor/bundle/gems/rspec-core-3.9.1/exe/rspec +4 -0
  740. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/autorun.rb +3 -0
  741. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core.rb +186 -0
  742. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb +65 -0
  743. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/coordinator.rb +62 -0
  744. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  745. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/fork_runner.rb +135 -0
  746. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/server.rb +61 -0
  747. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_command.rb +126 -0
  748. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_runner.rb +73 -0
  749. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/utilities.rb +58 -0
  750. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb +2336 -0
  751. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb +233 -0
  752. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/did_you_mean.rb +46 -0
  753. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/drb.rb +113 -0
  754. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb +98 -0
  755. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example.rb +656 -0
  756. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb +889 -0
  757. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_status_persister.rb +235 -0
  758. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb +231 -0
  759. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb +20 -0
  760. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb +272 -0
  761. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  762. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb +70 -0
  763. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  764. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  765. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  766. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb +68 -0
  767. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  768. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  769. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb +508 -0
  770. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  771. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  772. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb +110 -0
  773. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_formatter.rb +153 -0
  774. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_printer.rb +414 -0
  775. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
  776. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/json_formatter.rb +102 -0
  777. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  778. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  779. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/protocol.rb +182 -0
  780. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  781. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  782. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb +632 -0
  783. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb +87 -0
  784. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb +554 -0
  785. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb +498 -0
  786. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb +255 -0
  787. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  788. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  789. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  790. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/null.rb +14 -0
  791. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  792. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  793. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb +521 -0
  794. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb +316 -0
  795. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb +158 -0
  796. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb +29 -0
  797. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb +165 -0
  798. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/profiler.rb +34 -0
  799. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer.rb +48 -0
  800. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec +1 -0
  801. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
  802. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/rake_task.rb +188 -0
  803. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb +265 -0
  804. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb +53 -0
  805. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb +204 -0
  806. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/sandbox.rb +37 -0
  807. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/set.rb +54 -0
  808. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_context.rb +55 -0
  809. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb +269 -0
  810. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb +49 -0
  811. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  812. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/version.rb +9 -0
  813. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb +40 -0
  814. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/world.rb +275 -0
  815. data/vendor/bundle/gems/rspec-expectations-3.9.0/.document +5 -0
  816. data/vendor/bundle/gems/rspec-expectations-3.9.0/.yardopts +6 -0
  817. data/vendor/bundle/gems/rspec-expectations-3.9.0/Changelog.md +1170 -0
  818. data/vendor/bundle/gems/rspec-expectations-3.9.0/LICENSE.md +25 -0
  819. data/vendor/bundle/gems/rspec-expectations-3.9.0/README.md +320 -0
  820. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb +82 -0
  821. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
  822. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb +215 -0
  823. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb +127 -0
  824. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb +39 -0
  825. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  826. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb +170 -0
  827. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb +58 -0
  828. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb +132 -0
  829. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb +8 -0
  830. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb +1038 -0
  831. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  832. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb +52 -0
  833. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb +86 -0
  834. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
  835. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb +288 -0
  836. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  837. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  838. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  839. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  840. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb +428 -0
  841. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb +276 -0
  842. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
  843. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  844. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  845. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  846. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  847. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb +90 -0
  848. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb +103 -0
  849. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  850. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb +149 -0
  851. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb +106 -0
  852. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  853. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb +200 -0
  854. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
  855. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb +174 -0
  856. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb +60 -0
  857. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  858. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  859. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb +432 -0
  860. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb +171 -0
  861. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb +534 -0
  862. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb +58 -0
  863. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
  864. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  865. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb +41 -0
  866. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  867. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  868. data/vendor/bundle/gems/rspec-mocks-3.9.1/.document +5 -0
  869. data/vendor/bundle/gems/rspec-mocks-3.9.1/.yardopts +6 -0
  870. data/vendor/bundle/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
  871. data/vendor/bundle/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
  872. data/vendor/bundle/gems/rspec-mocks-3.9.1/README.md +463 -0
  873. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
  874. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
  875. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
  876. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  877. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  878. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  879. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  880. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  881. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
  882. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  883. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  884. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  885. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
  886. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
  887. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
  888. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
  889. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  890. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  891. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  892. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
  893. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
  894. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  895. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  896. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
  897. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
  898. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
  899. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
  900. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
  901. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
  902. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
  903. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
  904. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
  905. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
  906. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
  907. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
  908. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
  909. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
  910. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
  911. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  912. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
  913. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
  914. data/vendor/bundle/gems/rspec-support-3.9.2/Changelog.md +292 -0
  915. data/vendor/bundle/gems/rspec-support-3.9.2/LICENSE.md +23 -0
  916. data/vendor/bundle/gems/rspec-support-3.9.2/README.md +40 -0
  917. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support.rb +149 -0
  918. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb +83 -0
  919. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb +46 -0
  920. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/differ.rb +215 -0
  921. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb +63 -0
  922. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb +161 -0
  923. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
  924. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/hunk_generator.rb +47 -0
  925. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb +42 -0
  926. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb +438 -0
  927. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb +73 -0
  928. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb +275 -0
  929. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb +76 -0
  930. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb +53 -0
  931. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb +185 -0
  932. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source.rb +75 -0
  933. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/location.rb +21 -0
  934. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/node.rb +110 -0
  935. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/token.rb +87 -0
  936. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec.rb +81 -0
  937. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  938. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/formatting_support.rb +9 -0
  939. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/in_sub_process.rb +69 -0
  940. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/library_wide_checks.rb +150 -0
  941. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/shell_out.rb +89 -0
  942. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/stderr_splitter.rb +67 -0
  943. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/string_matcher.rb +46 -0
  944. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
  945. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  946. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/version.rb +7 -0
  947. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb +39 -0
  948. data/vendor/bundle/gems/unf-0.1.4/.gitignore +17 -0
  949. data/vendor/bundle/gems/unf-0.1.4/.travis.yml +17 -0
  950. data/vendor/bundle/gems/unf-0.1.4/CHANGELOG.md +46 -0
  951. data/vendor/bundle/gems/unf-0.1.4/Gemfile +4 -0
  952. data/vendor/bundle/gems/unf-0.1.4/LICENSE +24 -0
  953. data/vendor/bundle/gems/unf-0.1.4/README.md +39 -0
  954. data/vendor/bundle/gems/unf-0.1.4/Rakefile +21 -0
  955. data/vendor/bundle/gems/unf-0.1.4/lib/unf.rb +38 -0
  956. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer.rb +35 -0
  957. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_cruby.rb +1 -0
  958. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_jruby.rb +30 -0
  959. data/vendor/bundle/gems/unf-0.1.4/lib/unf/version.rb +3 -0
  960. data/vendor/bundle/gems/unf-0.1.4/test/helper.rb +18 -0
  961. data/vendor/bundle/gems/unf-0.1.4/test/normalization-test.txt +108816 -0
  962. data/vendor/bundle/gems/unf-0.1.4/test/test_unf.rb +41 -0
  963. data/vendor/bundle/gems/unf-0.1.4/unf.gemspec +35 -0
  964. data/vendor/bundle/gems/unf_ext-0.0.7.6/.document +5 -0
  965. data/vendor/bundle/gems/unf_ext-0.0.7.6/.gitignore +19 -0
  966. data/vendor/bundle/gems/unf_ext-0.0.7.6/.travis.yml +24 -0
  967. data/vendor/bundle/gems/unf_ext-0.0.7.6/CHANGELOG.md +42 -0
  968. data/vendor/bundle/gems/unf_ext-0.0.7.6/Gemfile +4 -0
  969. data/vendor/bundle/gems/unf_ext-0.0.7.6/LICENSE.txt +22 -0
  970. data/vendor/bundle/gems/unf_ext-0.0.7.6/README.md +57 -0
  971. data/vendor/bundle/gems/unf_ext-0.0.7.6/Rakefile +31 -0
  972. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/.sitearchdir.time +0 -0
  973. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/extconf.rb +50 -0
  974. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.cc +75 -0
  975. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.o +0 -0
  976. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/normalizer.hh +139 -0
  977. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/table.hh +13617 -0
  978. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/char_stream.hh +150 -0
  979. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/node.hh +25 -0
  980. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/searcher.hh +194 -0
  981. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/util.hh +24 -0
  982. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf_ext.bundle +0 -0
  983. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.bundle +0 -0
  984. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.rb +5 -0
  985. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext/version.rb +5 -0
  986. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/helper.rb +18 -0
  987. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/normalization-test.txt +112332 -0
  988. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/test_unf_ext.rb +41 -0
  989. data/vendor/bundle/gems/unf_ext-0.0.7.6/unf_ext.gemspec +42 -0
  990. data/vendor/bundle/gems/webrobots-0.1.2/.document +4 -0
  991. data/vendor/bundle/gems/webrobots-0.1.2/.gitignore +11 -0
  992. data/vendor/bundle/gems/webrobots-0.1.2/.travis.yml +17 -0
  993. data/vendor/bundle/gems/webrobots-0.1.2/Gemfile +4 -0
  994. data/vendor/bundle/gems/webrobots-0.1.2/LICENSE.txt +24 -0
  995. data/vendor/bundle/gems/webrobots-0.1.2/README.rdoc +38 -0
  996. data/vendor/bundle/gems/webrobots-0.1.2/Rakefile +29 -0
  997. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots.rb +213 -0
  998. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/nokogiri.rb +32 -0
  999. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.rb +752 -0
  1000. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.ry +487 -0
  1001. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/version.rb +3 -0
  1002. data/vendor/bundle/gems/webrobots-0.1.2/test/helper.rb +25 -0
  1003. data/vendor/bundle/gems/webrobots-0.1.2/test/simplecov_start.rb +9 -0
  1004. data/vendor/bundle/gems/webrobots-0.1.2/test/test_webrobots.rb +806 -0
  1005. data/vendor/bundle/gems/webrobots-0.1.2/test/vcr_cassettes/major_sites.yml +2006 -0
  1006. data/vendor/bundle/gems/webrobots-0.1.2/webrobots.gemspec +46 -0
  1007. data/vendor/bundle/specifications/connection_pool-2.2.2.gemspec +38 -0
  1008. data/vendor/bundle/specifications/diff-lcs-1.3.gemspec +61 -0
  1009. data/vendor/bundle/specifications/domain_name-0.5.20190701.gemspec +46 -0
  1010. data/vendor/bundle/specifications/http-cookie-1.0.3.gemspec +52 -0
  1011. data/vendor/bundle/specifications/mechanize-2.7.6.gemspec +69 -0
  1012. data/vendor/bundle/specifications/mime-types-3.3.1.gemspec +85 -0
  1013. data/vendor/bundle/specifications/mime-types-data-3.2019.1009.gemspec +60 -0
  1014. data/vendor/bundle/specifications/mini_portile2-2.4.0.gemspec +48 -0
  1015. data/vendor/bundle/specifications/net-http-digest_auth-1.4.1.gemspec +43 -0
  1016. data/vendor/bundle/specifications/net-http-persistent-3.1.0.gemspec +52 -0
  1017. data/vendor/bundle/specifications/nokogiri-1.10.7.gemspec +85 -0
  1018. data/vendor/bundle/specifications/ntlm-http-0.1.1.gemspec +24 -0
  1019. data/vendor/bundle/specifications/rake-12.3.3.gemspec +49 -0
  1020. data/vendor/bundle/specifications/rspec-3.9.0.gemspec +43 -0
  1021. data/vendor/bundle/specifications/rspec-core-3.9.1.gemspec +63 -0
  1022. data/vendor/bundle/specifications/rspec-expectations-3.9.0.gemspec +51 -0
  1023. data/vendor/bundle/specifications/rspec-mocks-3.9.1.gemspec +51 -0
  1024. data/vendor/bundle/specifications/rspec-support-3.9.2.gemspec +39 -0
  1025. data/vendor/bundle/specifications/unf-0.1.4.gemspec +46 -0
  1026. data/vendor/bundle/specifications/unf_ext-0.0.7.6.gemspec +51 -0
  1027. data/vendor/bundle/specifications/webrobots-0.1.2.gemspec +65 -0
  1028. metadata +1100 -0
@@ -0,0 +1,151 @@
1
+ require 'minitest/autorun'
2
+ require 'net/http/persistent'
3
+
4
+ class TestNetHttpPersistentTimedStackMulti < Minitest::Test
5
+
6
+ class Connection
7
+ attr_reader :host
8
+
9
+ def initialize(host)
10
+ @host = host
11
+ end
12
+ end
13
+
14
+ def setup
15
+ @stack = Net::HTTP::Persistent::TimedStackMulti.new { Object.new }
16
+ end
17
+
18
+ def test_empty_eh
19
+ stack = Net::HTTP::Persistent::TimedStackMulti.new(1) { Object.new }
20
+
21
+ refute_empty stack
22
+
23
+ popped = stack.pop
24
+
25
+ assert_empty stack
26
+
27
+ stack.push connection_args: popped
28
+
29
+ refute_empty stack
30
+ end
31
+
32
+ def test_length
33
+ stack = Net::HTTP::Persistent::TimedStackMulti.new(1) { Object.new }
34
+
35
+ assert_equal 1, stack.length
36
+
37
+ popped = stack.pop
38
+
39
+ assert_equal 0, stack.length
40
+
41
+ stack.push connection_args: popped
42
+
43
+ assert_equal 1, stack.length
44
+ end
45
+
46
+ def test_pop
47
+ object = Object.new
48
+ @stack.push object
49
+
50
+ popped = @stack.pop
51
+
52
+ assert_same object, popped
53
+ end
54
+
55
+ def test_pop_empty
56
+ e = assert_raises Timeout::Error do
57
+ @stack.pop timeout: 0
58
+ end
59
+
60
+ assert_equal 'Waited 0 sec', e.message
61
+ end
62
+
63
+ def test_pop_full
64
+ stack = Net::HTTP::Persistent::TimedStackMulti.new(1) { Object.new }
65
+
66
+ popped = stack.pop
67
+
68
+ refute_nil popped
69
+ assert_empty stack
70
+ end
71
+
72
+ def test_pop_wait
73
+ thread = Thread.start do
74
+ @stack.pop
75
+ end
76
+
77
+ Thread.pass while thread.status == 'run'
78
+
79
+ object = Object.new
80
+
81
+ @stack.push object
82
+
83
+ assert_same object, thread.value
84
+ end
85
+
86
+ def test_pop_shutdown
87
+ @stack.shutdown { }
88
+
89
+ assert_raises ConnectionPool::PoolShuttingDownError do
90
+ @stack.pop
91
+ end
92
+ end
93
+
94
+ def test_push
95
+ stack = Net::HTTP::Persistent::TimedStackMulti.new(1) { Object.new }
96
+
97
+ conn = stack.pop
98
+
99
+ stack.push connection_args: conn
100
+
101
+ refute_empty stack
102
+ end
103
+
104
+ def test_push_shutdown
105
+ called = []
106
+
107
+ @stack.shutdown do |object|
108
+ called << object
109
+ end
110
+
111
+ @stack.push connection_args: Object.new
112
+
113
+ refute_empty called
114
+ assert_empty @stack
115
+ end
116
+
117
+ def test_shutdown
118
+ @stack.push connection_args: Object.new
119
+
120
+ called = []
121
+
122
+ @stack.shutdown do |object|
123
+ called << object
124
+ end
125
+
126
+ refute_empty called
127
+ assert_empty @stack
128
+ end
129
+
130
+ def test_pop_recycle
131
+ stack = Net::HTTP::Persistent::TimedStackMulti.new(2) { |host| Connection.new(host) }
132
+
133
+ a_conn = stack.pop connection_args: 'a.example'
134
+ stack.push a_conn, connection_args: 'a.example'
135
+
136
+ b_conn = stack.pop connection_args: 'b.example'
137
+ stack.push b_conn, connection_args: 'b.example'
138
+
139
+ c_conn = stack.pop connection_args: 'c.example'
140
+
141
+ assert_equal 'c.example', c_conn.host
142
+
143
+ stack.push c_conn, connection_args: 'c.example'
144
+
145
+ recreated = stack.pop connection_args: 'a.example'
146
+
147
+ refute_same a_conn, recreated
148
+ end
149
+
150
+ end
151
+
@@ -0,0 +1,1614 @@
1
+ ## Vendored Dependency Licenses
2
+
3
+ Nokogiri ships with some third party dependencies, which are listed
4
+ here along with their licenses.
5
+
6
+ Note that this document is broken into three sections, each of which
7
+ will apply to different platform releases of Nokogiri:
8
+
9
+ 1. default platform release
10
+ 2. `java` platform release
11
+ 3. binary windows platform releases (`x86-mingw32` and `x64-mingw32`)
12
+
13
+ It's encouraged for anyone consuming this file via license-tracking
14
+ software to understand which dependencies are used by your particular
15
+ software, so as not to misinterpret the contents of this file.
16
+
17
+ In particular, I'm sure somebody's lawyer, somewhere, is going to
18
+ freak out that the LGPL appears in this file; and so I'd like to take
19
+ special note that the dependency covered by LGPL, `libiconv`, is only
20
+ being redistributed in the binary Windows platform release. It's not
21
+ present in any non-Windows releases.
22
+
23
+ -----
24
+
25
+ ## default platform release
26
+
27
+ ### libxml2
28
+
29
+ MIT
30
+
31
+ http://xmlsoft.org/
32
+
33
+ Except where otherwise noted in the source code (e.g. the files hash.c,
34
+ list.c and the trio files, which are covered by a similar licence but
35
+ with different Copyright notices) all the files are:
36
+
37
+ Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
38
+
39
+ Permission is hereby granted, free of charge, to any person obtaining a copy
40
+ of this software and associated documentation files (the "Software"), to deal
41
+ in the Software without restriction, including without limitation the rights
42
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
43
+ copies of the Software, and to permit persons to whom the Software is fur-
44
+ nished to do so, subject to the following conditions:
45
+
46
+ The above copyright notice and this permission notice shall be included in
47
+ all copies or substantial portions of the Software.
48
+
49
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
51
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
52
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
54
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
55
+ THE SOFTWARE.
56
+
57
+
58
+ ### libxslt
59
+
60
+ MIT
61
+
62
+ http://xmlsoft.org/libxslt/
63
+
64
+ Licence for libxslt except libexslt
65
+ ----------------------------------------------------------------------
66
+ Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.
67
+
68
+ Permission is hereby granted, free of charge, to any person obtaining a copy
69
+ of this software and associated documentation files (the "Software"), to deal
70
+ in the Software without restriction, including without limitation the rights
71
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
72
+ copies of the Software, and to permit persons to whom the Software is fur-
73
+ nished to do so, subject to the following conditions:
74
+
75
+ The above copyright notice and this permission notice shall be included in
76
+ all copies or substantial portions of the Software.
77
+
78
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
79
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
80
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
81
+ DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
82
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
83
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84
+
85
+ Except as contained in this notice, the name of Daniel Veillard shall not
86
+ be used in advertising or otherwise to promote the sale, use or other deal-
87
+ ings in this Software without prior written authorization from him.
88
+
89
+ ----------------------------------------------------------------------
90
+
91
+ Licence for libexslt
92
+ ----------------------------------------------------------------------
93
+ Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.
94
+ All Rights Reserved.
95
+
96
+ Permission is hereby granted, free of charge, to any person obtaining a copy
97
+ of this software and associated documentation files (the "Software"), to deal
98
+ in the Software without restriction, including without limitation the rights
99
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
100
+ copies of the Software, and to permit persons to whom the Software is fur-
101
+ nished to do so, subject to the following conditions:
102
+
103
+ The above copyright notice and this permission notice shall be included in
104
+ all copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
107
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
108
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
109
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
110
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
111
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
112
+
113
+ Except as contained in this notice, the name of the authors shall not
114
+ be used in advertising or otherwise to promote the sale, use or other deal-
115
+ ings in this Software without prior written authorization from him.
116
+ ----------------------------------------------------------------------
117
+
118
+ ## `java` platform release
119
+
120
+ ### isorelax
121
+
122
+ MIT
123
+
124
+ http://iso-relax.sourceforge.net/
125
+
126
+ Copyright (c) 2001-2002, SourceForge ISO-RELAX Project (ASAMI
127
+ Tomoharu, Daisuke Okajima, Kohsuke Kawaguchi, and MURATA Makoto)
128
+
129
+ Permission is hereby granted, free of charge, to any person obtaining
130
+ a copy of this software and associated documentation files (the
131
+ "Software"), to deal in the Software without restriction, including
132
+ without limitation the rights to use, copy, modify, merge, publish,
133
+ distribute, sublicense, and/or sell copies of the Software, and to
134
+ permit persons to whom the Software is furnished to do so, subject to
135
+ the following conditions:
136
+
137
+ The above copyright notice and this permission notice shall be
138
+ included in all copies or substantial portions of the Software.
139
+
140
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
141
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
142
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
143
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
144
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
145
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
146
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
147
+
148
+
149
+ ### jing
150
+
151
+ BSD-3-Clause
152
+
153
+ http://www.thaiopensource.com/relaxng/jing.html
154
+
155
+ Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
156
+ All rights reserved.
157
+
158
+ Redistribution and use in source and binary forms, with or without
159
+ modification, are permitted provided that the following conditions
160
+ are met:
161
+
162
+ * Redistributions of source code must retain the above copyright
163
+ notice, this list of conditions and the following disclaimer.
164
+
165
+ * Redistributions in binary form must reproduce the above
166
+ copyright notice, this list of conditions and the following
167
+ disclaimer in the documentation and/or other materials provided
168
+ with the distribution.
169
+
170
+ * Neither the name of the Thai Open Source Software Center Ltd nor
171
+ the names of its contributors may be used to endorse or promote
172
+ products derived from this software without specific prior
173
+ written permission.
174
+
175
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
176
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
177
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
178
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
179
+ DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
180
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
181
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
182
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
183
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
184
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
185
+ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
186
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
187
+ SUCH DAMAGE.
188
+
189
+
190
+ ### nekodtd
191
+
192
+ Apache 1.0-derived
193
+
194
+ https://people.apache.org/~andyc/neko/doc/dtd/
195
+
196
+ The CyberNeko Software License, Version 1.0
197
+
198
+ (C) Copyright 2002-2005, Andy Clark. All rights reserved.
199
+
200
+ Redistribution and use in source and binary forms, with or without
201
+ modification, are permitted provided that the following conditions
202
+ are met:
203
+
204
+ 1. Redistributions of source code must retain the above copyright
205
+ notice, this list of conditions and the following disclaimer.
206
+
207
+ 2. Redistributions in binary form must reproduce the above copyright
208
+ notice, this list of conditions and the following disclaimer in
209
+ the documentation and/or other materials provided with the
210
+ distribution.
211
+
212
+ 3. The end-user documentation included with the redistribution,
213
+ if any, must include the following acknowledgment:
214
+ "This product includes software developed by Andy Clark."
215
+ Alternately, this acknowledgment may appear in the software itself,
216
+ if and wherever such third-party acknowledgments normally appear.
217
+
218
+ 4. The names "CyberNeko" and "NekoHTML" must not be used to endorse
219
+ or promote products derived from this software without prior
220
+ written permission. For written permission, please contact
221
+ andyc@cyberneko.net.
222
+
223
+ 5. Products derived from this software may not be called "CyberNeko",
224
+ nor may "CyberNeko" appear in their name, without prior written
225
+ permission of the author.
226
+
227
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
228
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
229
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
230
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS
231
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
232
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
233
+ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
234
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
235
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
236
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
237
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
238
+
239
+ ====================================================================
240
+
241
+ This license is based on the Apache Software License, version 1.1.
242
+
243
+ ### nekohtml
244
+
245
+ Apache 2.0
246
+
247
+ http://nekohtml.sourceforge.net/
248
+
249
+
250
+ Apache License
251
+ Version 2.0, January 2004
252
+ http://www.apache.org/licenses/
253
+
254
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
255
+
256
+ 1. Definitions.
257
+
258
+ "License" shall mean the terms and conditions for use, reproduction,
259
+ and distribution as defined by Sections 1 through 9 of this document.
260
+
261
+ "Licensor" shall mean the copyright owner or entity authorized by
262
+ the copyright owner that is granting the License.
263
+
264
+ "Legal Entity" shall mean the union of the acting entity and all
265
+ other entities that control, are controlled by, or are under common
266
+ control with that entity. For the purposes of this definition,
267
+ "control" means (i) the power, direct or indirect, to cause the
268
+ direction or management of such entity, whether by contract or
269
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
270
+ outstanding shares, or (iii) beneficial ownership of such entity.
271
+
272
+ "You" (or "Your") shall mean an individual or Legal Entity
273
+ exercising permissions granted by this License.
274
+
275
+ "Source" form shall mean the preferred form for making modifications,
276
+ including but not limited to software source code, documentation
277
+ source, and configuration files.
278
+
279
+ "Object" form shall mean any form resulting from mechanical
280
+ transformation or translation of a Source form, including but
281
+ not limited to compiled object code, generated documentation,
282
+ and conversions to other media types.
283
+
284
+ "Work" shall mean the work of authorship, whether in Source or
285
+ Object form, made available under the License, as indicated by a
286
+ copyright notice that is included in or attached to the work
287
+ (an example is provided in the Appendix below).
288
+
289
+ "Derivative Works" shall mean any work, whether in Source or Object
290
+ form, that is based on (or derived from) the Work and for which the
291
+ editorial revisions, annotations, elaborations, or other modifications
292
+ represent, as a whole, an original work of authorship. For the purposes
293
+ of this License, Derivative Works shall not include works that remain
294
+ separable from, or merely link (or bind by name) to the interfaces of,
295
+ the Work and Derivative Works thereof.
296
+
297
+ "Contribution" shall mean any work of authorship, including
298
+ the original version of the Work and any modifications or additions
299
+ to that Work or Derivative Works thereof, that is intentionally
300
+ submitted to Licensor for inclusion in the Work by the copyright owner
301
+ or by an individual or Legal Entity authorized to submit on behalf of
302
+ the copyright owner. For the purposes of this definition, "submitted"
303
+ means any form of electronic, verbal, or written communication sent
304
+ to the Licensor or its representatives, including but not limited to
305
+ communication on electronic mailing lists, source code control systems,
306
+ and issue tracking systems that are managed by, or on behalf of, the
307
+ Licensor for the purpose of discussing and improving the Work, but
308
+ excluding communication that is conspicuously marked or otherwise
309
+ designated in writing by the copyright owner as "Not a Contribution."
310
+
311
+ "Contributor" shall mean Licensor and any individual or Legal Entity
312
+ on behalf of whom a Contribution has been received by Licensor and
313
+ subsequently incorporated within the Work.
314
+
315
+ 2. Grant of Copyright License. Subject to the terms and conditions of
316
+ this License, each Contributor hereby grants to You a perpetual,
317
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
318
+ copyright license to reproduce, prepare Derivative Works of,
319
+ publicly display, publicly perform, sublicense, and distribute the
320
+ Work and such Derivative Works in Source or Object form.
321
+
322
+ 3. Grant of Patent License. Subject to the terms and conditions of
323
+ this License, each Contributor hereby grants to You a perpetual,
324
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
325
+ (except as stated in this section) patent license to make, have made,
326
+ use, offer to sell, sell, import, and otherwise transfer the Work,
327
+ where such license applies only to those patent claims licensable
328
+ by such Contributor that are necessarily infringed by their
329
+ Contribution(s) alone or by combination of their Contribution(s)
330
+ with the Work to which such Contribution(s) was submitted. If You
331
+ institute patent litigation against any entity (including a
332
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
333
+ or a Contribution incorporated within the Work constitutes direct
334
+ or contributory patent infringement, then any patent licenses
335
+ granted to You under this License for that Work shall terminate
336
+ as of the date such litigation is filed.
337
+
338
+ 4. Redistribution. You may reproduce and distribute copies of the
339
+ Work or Derivative Works thereof in any medium, with or without
340
+ modifications, and in Source or Object form, provided that You
341
+ meet the following conditions:
342
+
343
+ (a) You must give any other recipients of the Work or
344
+ Derivative Works a copy of this License; and
345
+
346
+ (b) You must cause any modified files to carry prominent notices
347
+ stating that You changed the files; and
348
+
349
+ (c) You must retain, in the Source form of any Derivative Works
350
+ that You distribute, all copyright, patent, trademark, and
351
+ attribution notices from the Source form of the Work,
352
+ excluding those notices that do not pertain to any part of
353
+ the Derivative Works; and
354
+
355
+ (d) If the Work includes a "NOTICE" text file as part of its
356
+ distribution, then any Derivative Works that You distribute must
357
+ include a readable copy of the attribution notices contained
358
+ within such NOTICE file, excluding those notices that do not
359
+ pertain to any part of the Derivative Works, in at least one
360
+ of the following places: within a NOTICE text file distributed
361
+ as part of the Derivative Works; within the Source form or
362
+ documentation, if provided along with the Derivative Works; or,
363
+ within a display generated by the Derivative Works, if and
364
+ wherever such third-party notices normally appear. The contents
365
+ of the NOTICE file are for informational purposes only and
366
+ do not modify the License. You may add Your own attribution
367
+ notices within Derivative Works that You distribute, alongside
368
+ or as an addendum to the NOTICE text from the Work, provided
369
+ that such additional attribution notices cannot be construed
370
+ as modifying the License.
371
+
372
+ You may add Your own copyright statement to Your modifications and
373
+ may provide additional or different license terms and conditions
374
+ for use, reproduction, or distribution of Your modifications, or
375
+ for any such Derivative Works as a whole, provided Your use,
376
+ reproduction, and distribution of the Work otherwise complies with
377
+ the conditions stated in this License.
378
+
379
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
380
+ any Contribution intentionally submitted for inclusion in the Work
381
+ by You to the Licensor shall be under the terms and conditions of
382
+ this License, without any additional terms or conditions.
383
+ Notwithstanding the above, nothing herein shall supersede or modify
384
+ the terms of any separate license agreement you may have executed
385
+ with Licensor regarding such Contributions.
386
+
387
+ 6. Trademarks. This License does not grant permission to use the trade
388
+ names, trademarks, service marks, or product names of the Licensor,
389
+ except as required for reasonable and customary use in describing the
390
+ origin of the Work and reproducing the content of the NOTICE file.
391
+
392
+ 7. Disclaimer of Warranty. Unless required by applicable law or
393
+ agreed to in writing, Licensor provides the Work (and each
394
+ Contributor provides its Contributions) on an "AS IS" BASIS,
395
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
396
+ implied, including, without limitation, any warranties or conditions
397
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
398
+ PARTICULAR PURPOSE. You are solely responsible for determining the
399
+ appropriateness of using or redistributing the Work and assume any
400
+ risks associated with Your exercise of permissions under this License.
401
+
402
+ 8. Limitation of Liability. In no event and under no legal theory,
403
+ whether in tort (including negligence), contract, or otherwise,
404
+ unless required by applicable law (such as deliberate and grossly
405
+ negligent acts) or agreed to in writing, shall any Contributor be
406
+ liable to You for damages, including any direct, indirect, special,
407
+ incidental, or consequential damages of any character arising as a
408
+ result of this License or out of the use or inability to use the
409
+ Work (including but not limited to damages for loss of goodwill,
410
+ work stoppage, computer failure or malfunction, or any and all
411
+ other commercial damages or losses), even if such Contributor
412
+ has been advised of the possibility of such damages.
413
+
414
+ 9. Accepting Warranty or Additional Liability. While redistributing
415
+ the Work or Derivative Works thereof, You may choose to offer,
416
+ and charge a fee for, acceptance of support, warranty, indemnity,
417
+ or other liability obligations and/or rights consistent with this
418
+ License. However, in accepting such obligations, You may act only
419
+ on Your own behalf and on Your sole responsibility, not on behalf
420
+ of any other Contributor, and only if You agree to indemnify,
421
+ defend, and hold each Contributor harmless for any liability
422
+ incurred by, or claims asserted against, such Contributor by reason
423
+ of your accepting any such warranty or additional liability.
424
+
425
+ END OF TERMS AND CONDITIONS
426
+
427
+ APPENDIX: How to apply the Apache License to your work.
428
+
429
+ To apply the Apache License to your work, attach the following
430
+ boilerplate notice, with the fields enclosed by brackets "[]"
431
+ replaced with your own identifying information. (Don't include
432
+ the brackets!) The text should be enclosed in the appropriate
433
+ comment syntax for the file format. We also recommend that a
434
+ file or class name and description of purpose be included on the
435
+ same "printed page" as the copyright notice for easier
436
+ identification within third-party archives.
437
+
438
+ Copyright [yyyy] [name of copyright owner]
439
+
440
+ Licensed under the Apache License, Version 2.0 (the "License");
441
+ you may not use this file except in compliance with the License.
442
+ You may obtain a copy of the License at
443
+
444
+ http://www.apache.org/licenses/LICENSE-2.0
445
+
446
+ Unless required by applicable law or agreed to in writing, software
447
+ distributed under the License is distributed on an "AS IS" BASIS,
448
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
449
+ See the License for the specific language governing permissions and
450
+ limitations under the License.
451
+
452
+ ### xalan
453
+
454
+ Apache 2.0
455
+
456
+ https://xml.apache.org/xalan-j/
457
+
458
+ covers xalan.jar and serializer.jar
459
+
460
+ Apache License
461
+ Version 2.0, January 2004
462
+ http://www.apache.org/licenses/
463
+
464
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
465
+
466
+ 1. Definitions.
467
+
468
+ "License" shall mean the terms and conditions for use, reproduction,
469
+ and distribution as defined by Sections 1 through 9 of this document.
470
+
471
+ "Licensor" shall mean the copyright owner or entity authorized by
472
+ the copyright owner that is granting the License.
473
+
474
+ "Legal Entity" shall mean the union of the acting entity and all
475
+ other entities that control, are controlled by, or are under common
476
+ control with that entity. For the purposes of this definition,
477
+ "control" means (i) the power, direct or indirect, to cause the
478
+ direction or management of such entity, whether by contract or
479
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
480
+ outstanding shares, or (iii) beneficial ownership of such entity.
481
+
482
+ "You" (or "Your") shall mean an individual or Legal Entity
483
+ exercising permissions granted by this License.
484
+
485
+ "Source" form shall mean the preferred form for making modifications,
486
+ including but not limited to software source code, documentation
487
+ source, and configuration files.
488
+
489
+ "Object" form shall mean any form resulting from mechanical
490
+ transformation or translation of a Source form, including but
491
+ not limited to compiled object code, generated documentation,
492
+ and conversions to other media types.
493
+
494
+ "Work" shall mean the work of authorship, whether in Source or
495
+ Object form, made available under the License, as indicated by a
496
+ copyright notice that is included in or attached to the work
497
+ (an example is provided in the Appendix below).
498
+
499
+ "Derivative Works" shall mean any work, whether in Source or Object
500
+ form, that is based on (or derived from) the Work and for which the
501
+ editorial revisions, annotations, elaborations, or other modifications
502
+ represent, as a whole, an original work of authorship. For the purposes
503
+ of this License, Derivative Works shall not include works that remain
504
+ separable from, or merely link (or bind by name) to the interfaces of,
505
+ the Work and Derivative Works thereof.
506
+
507
+ "Contribution" shall mean any work of authorship, including
508
+ the original version of the Work and any modifications or additions
509
+ to that Work or Derivative Works thereof, that is intentionally
510
+ submitted to Licensor for inclusion in the Work by the copyright owner
511
+ or by an individual or Legal Entity authorized to submit on behalf of
512
+ the copyright owner. For the purposes of this definition, "submitted"
513
+ means any form of electronic, verbal, or written communication sent
514
+ to the Licensor or its representatives, including but not limited to
515
+ communication on electronic mailing lists, source code control systems,
516
+ and issue tracking systems that are managed by, or on behalf of, the
517
+ Licensor for the purpose of discussing and improving the Work, but
518
+ excluding communication that is conspicuously marked or otherwise
519
+ designated in writing by the copyright owner as "Not a Contribution."
520
+
521
+ "Contributor" shall mean Licensor and any individual or Legal Entity
522
+ on behalf of whom a Contribution has been received by Licensor and
523
+ subsequently incorporated within the Work.
524
+
525
+ 2. Grant of Copyright License. Subject to the terms and conditions of
526
+ this License, each Contributor hereby grants to You a perpetual,
527
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
528
+ copyright license to reproduce, prepare Derivative Works of,
529
+ publicly display, publicly perform, sublicense, and distribute the
530
+ Work and such Derivative Works in Source or Object form.
531
+
532
+ 3. Grant of Patent License. Subject to the terms and conditions of
533
+ this License, each Contributor hereby grants to You a perpetual,
534
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
535
+ (except as stated in this section) patent license to make, have made,
536
+ use, offer to sell, sell, import, and otherwise transfer the Work,
537
+ where such license applies only to those patent claims licensable
538
+ by such Contributor that are necessarily infringed by their
539
+ Contribution(s) alone or by combination of their Contribution(s)
540
+ with the Work to which such Contribution(s) was submitted. If You
541
+ institute patent litigation against any entity (including a
542
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
543
+ or a Contribution incorporated within the Work constitutes direct
544
+ or contributory patent infringement, then any patent licenses
545
+ granted to You under this License for that Work shall terminate
546
+ as of the date such litigation is filed.
547
+
548
+ 4. Redistribution. You may reproduce and distribute copies of the
549
+ Work or Derivative Works thereof in any medium, with or without
550
+ modifications, and in Source or Object form, provided that You
551
+ meet the following conditions:
552
+
553
+ (a) You must give any other recipients of the Work or
554
+ Derivative Works a copy of this License; and
555
+
556
+ (b) You must cause any modified files to carry prominent notices
557
+ stating that You changed the files; and
558
+
559
+ (c) You must retain, in the Source form of any Derivative Works
560
+ that You distribute, all copyright, patent, trademark, and
561
+ attribution notices from the Source form of the Work,
562
+ excluding those notices that do not pertain to any part of
563
+ the Derivative Works; and
564
+
565
+ (d) If the Work includes a "NOTICE" text file as part of its
566
+ distribution, then any Derivative Works that You distribute must
567
+ include a readable copy of the attribution notices contained
568
+ within such NOTICE file, excluding those notices that do not
569
+ pertain to any part of the Derivative Works, in at least one
570
+ of the following places: within a NOTICE text file distributed
571
+ as part of the Derivative Works; within the Source form or
572
+ documentation, if provided along with the Derivative Works; or,
573
+ within a display generated by the Derivative Works, if and
574
+ wherever such third-party notices normally appear. The contents
575
+ of the NOTICE file are for informational purposes only and
576
+ do not modify the License. You may add Your own attribution
577
+ notices within Derivative Works that You distribute, alongside
578
+ or as an addendum to the NOTICE text from the Work, provided
579
+ that such additional attribution notices cannot be construed
580
+ as modifying the License.
581
+
582
+ You may add Your own copyright statement to Your modifications and
583
+ may provide additional or different license terms and conditions
584
+ for use, reproduction, or distribution of Your modifications, or
585
+ for any such Derivative Works as a whole, provided Your use,
586
+ reproduction, and distribution of the Work otherwise complies with
587
+ the conditions stated in this License.
588
+
589
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
590
+ any Contribution intentionally submitted for inclusion in the Work
591
+ by You to the Licensor shall be under the terms and conditions of
592
+ this License, without any additional terms or conditions.
593
+ Notwithstanding the above, nothing herein shall supersede or modify
594
+ the terms of any separate license agreement you may have executed
595
+ with Licensor regarding such Contributions.
596
+
597
+ 6. Trademarks. This License does not grant permission to use the trade
598
+ names, trademarks, service marks, or product names of the Licensor,
599
+ except as required for reasonable and customary use in describing the
600
+ origin of the Work and reproducing the content of the NOTICE file.
601
+
602
+ 7. Disclaimer of Warranty. Unless required by applicable law or
603
+ agreed to in writing, Licensor provides the Work (and each
604
+ Contributor provides its Contributions) on an "AS IS" BASIS,
605
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
606
+ implied, including, without limitation, any warranties or conditions
607
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
608
+ PARTICULAR PURPOSE. You are solely responsible for determining the
609
+ appropriateness of using or redistributing the Work and assume any
610
+ risks associated with Your exercise of permissions under this License.
611
+
612
+ 8. Limitation of Liability. In no event and under no legal theory,
613
+ whether in tort (including negligence), contract, or otherwise,
614
+ unless required by applicable law (such as deliberate and grossly
615
+ negligent acts) or agreed to in writing, shall any Contributor be
616
+ liable to You for damages, including any direct, indirect, special,
617
+ incidental, or consequential damages of any character arising as a
618
+ result of this License or out of the use or inability to use the
619
+ Work (including but not limited to damages for loss of goodwill,
620
+ work stoppage, computer failure or malfunction, or any and all
621
+ other commercial damages or losses), even if such Contributor
622
+ has been advised of the possibility of such damages.
623
+
624
+ 9. Accepting Warranty or Additional Liability. While redistributing
625
+ the Work or Derivative Works thereof, You may choose to offer,
626
+ and charge a fee for, acceptance of support, warranty, indemnity,
627
+ or other liability obligations and/or rights consistent with this
628
+ License. However, in accepting such obligations, You may act only
629
+ on Your own behalf and on Your sole responsibility, not on behalf
630
+ of any other Contributor, and only if You agree to indemnify,
631
+ defend, and hold each Contributor harmless for any liability
632
+ incurred by, or claims asserted against, such Contributor by reason
633
+ of your accepting any such warranty or additional liability.
634
+
635
+ END OF TERMS AND CONDITIONS
636
+
637
+ APPENDIX: How to apply the Apache License to your work.
638
+
639
+ To apply the Apache License to your work, attach the following
640
+ boilerplate notice, with the fields enclosed by brackets "[]"
641
+ replaced with your own identifying information. (Don't include
642
+ the brackets!) The text should be enclosed in the appropriate
643
+ comment syntax for the file format. We also recommend that a
644
+ file or class name and description of purpose be included on the
645
+ same "printed page" as the copyright notice for easier
646
+ identification within third-party archives.
647
+
648
+ Copyright [yyyy] [name of copyright owner]
649
+
650
+ Licensed under the Apache License, Version 2.0 (the "License");
651
+ you may not use this file except in compliance with the License.
652
+ You may obtain a copy of the License at
653
+
654
+ http://www.apache.org/licenses/LICENSE-2.0
655
+
656
+ Unless required by applicable law or agreed to in writing, software
657
+ distributed under the License is distributed on an "AS IS" BASIS,
658
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
659
+ See the License for the specific language governing permissions and
660
+ limitations under the License.
661
+
662
+
663
+ ### xerces
664
+
665
+ Apache 2.0
666
+
667
+ https://xerces.apache.org/xerces2-j/
668
+
669
+
670
+ Apache License
671
+ Version 2.0, January 2004
672
+ http://www.apache.org/licenses/
673
+
674
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
675
+
676
+ 1. Definitions.
677
+
678
+ "License" shall mean the terms and conditions for use, reproduction,
679
+ and distribution as defined by Sections 1 through 9 of this document.
680
+
681
+ "Licensor" shall mean the copyright owner or entity authorized by
682
+ the copyright owner that is granting the License.
683
+
684
+ "Legal Entity" shall mean the union of the acting entity and all
685
+ other entities that control, are controlled by, or are under common
686
+ control with that entity. For the purposes of this definition,
687
+ "control" means (i) the power, direct or indirect, to cause the
688
+ direction or management of such entity, whether by contract or
689
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
690
+ outstanding shares, or (iii) beneficial ownership of such entity.
691
+
692
+ "You" (or "Your") shall mean an individual or Legal Entity
693
+ exercising permissions granted by this License.
694
+
695
+ "Source" form shall mean the preferred form for making modifications,
696
+ including but not limited to software source code, documentation
697
+ source, and configuration files.
698
+
699
+ "Object" form shall mean any form resulting from mechanical
700
+ transformation or translation of a Source form, including but
701
+ not limited to compiled object code, generated documentation,
702
+ and conversions to other media types.
703
+
704
+ "Work" shall mean the work of authorship, whether in Source or
705
+ Object form, made available under the License, as indicated by a
706
+ copyright notice that is included in or attached to the work
707
+ (an example is provided in the Appendix below).
708
+
709
+ "Derivative Works" shall mean any work, whether in Source or Object
710
+ form, that is based on (or derived from) the Work and for which the
711
+ editorial revisions, annotations, elaborations, or other modifications
712
+ represent, as a whole, an original work of authorship. For the purposes
713
+ of this License, Derivative Works shall not include works that remain
714
+ separable from, or merely link (or bind by name) to the interfaces of,
715
+ the Work and Derivative Works thereof.
716
+
717
+ "Contribution" shall mean any work of authorship, including
718
+ the original version of the Work and any modifications or additions
719
+ to that Work or Derivative Works thereof, that is intentionally
720
+ submitted to Licensor for inclusion in the Work by the copyright owner
721
+ or by an individual or Legal Entity authorized to submit on behalf of
722
+ the copyright owner. For the purposes of this definition, "submitted"
723
+ means any form of electronic, verbal, or written communication sent
724
+ to the Licensor or its representatives, including but not limited to
725
+ communication on electronic mailing lists, source code control systems,
726
+ and issue tracking systems that are managed by, or on behalf of, the
727
+ Licensor for the purpose of discussing and improving the Work, but
728
+ excluding communication that is conspicuously marked or otherwise
729
+ designated in writing by the copyright owner as "Not a Contribution."
730
+
731
+ "Contributor" shall mean Licensor and any individual or Legal Entity
732
+ on behalf of whom a Contribution has been received by Licensor and
733
+ subsequently incorporated within the Work.
734
+
735
+ 2. Grant of Copyright License. Subject to the terms and conditions of
736
+ this License, each Contributor hereby grants to You a perpetual,
737
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
738
+ copyright license to reproduce, prepare Derivative Works of,
739
+ publicly display, publicly perform, sublicense, and distribute the
740
+ Work and such Derivative Works in Source or Object form.
741
+
742
+ 3. Grant of Patent License. Subject to the terms and conditions of
743
+ this License, each Contributor hereby grants to You a perpetual,
744
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
745
+ (except as stated in this section) patent license to make, have made,
746
+ use, offer to sell, sell, import, and otherwise transfer the Work,
747
+ where such license applies only to those patent claims licensable
748
+ by such Contributor that are necessarily infringed by their
749
+ Contribution(s) alone or by combination of their Contribution(s)
750
+ with the Work to which such Contribution(s) was submitted. If You
751
+ institute patent litigation against any entity (including a
752
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
753
+ or a Contribution incorporated within the Work constitutes direct
754
+ or contributory patent infringement, then any patent licenses
755
+ granted to You under this License for that Work shall terminate
756
+ as of the date such litigation is filed.
757
+
758
+ 4. Redistribution. You may reproduce and distribute copies of the
759
+ Work or Derivative Works thereof in any medium, with or without
760
+ modifications, and in Source or Object form, provided that You
761
+ meet the following conditions:
762
+
763
+ (a) You must give any other recipients of the Work or
764
+ Derivative Works a copy of this License; and
765
+
766
+ (b) You must cause any modified files to carry prominent notices
767
+ stating that You changed the files; and
768
+
769
+ (c) You must retain, in the Source form of any Derivative Works
770
+ that You distribute, all copyright, patent, trademark, and
771
+ attribution notices from the Source form of the Work,
772
+ excluding those notices that do not pertain to any part of
773
+ the Derivative Works; and
774
+
775
+ (d) If the Work includes a "NOTICE" text file as part of its
776
+ distribution, then any Derivative Works that You distribute must
777
+ include a readable copy of the attribution notices contained
778
+ within such NOTICE file, excluding those notices that do not
779
+ pertain to any part of the Derivative Works, in at least one
780
+ of the following places: within a NOTICE text file distributed
781
+ as part of the Derivative Works; within the Source form or
782
+ documentation, if provided along with the Derivative Works; or,
783
+ within a display generated by the Derivative Works, if and
784
+ wherever such third-party notices normally appear. The contents
785
+ of the NOTICE file are for informational purposes only and
786
+ do not modify the License. You may add Your own attribution
787
+ notices within Derivative Works that You distribute, alongside
788
+ or as an addendum to the NOTICE text from the Work, provided
789
+ that such additional attribution notices cannot be construed
790
+ as modifying the License.
791
+
792
+ You may add Your own copyright statement to Your modifications and
793
+ may provide additional or different license terms and conditions
794
+ for use, reproduction, or distribution of Your modifications, or
795
+ for any such Derivative Works as a whole, provided Your use,
796
+ reproduction, and distribution of the Work otherwise complies with
797
+ the conditions stated in this License.
798
+
799
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
800
+ any Contribution intentionally submitted for inclusion in the Work
801
+ by You to the Licensor shall be under the terms and conditions of
802
+ this License, without any additional terms or conditions.
803
+ Notwithstanding the above, nothing herein shall supersede or modify
804
+ the terms of any separate license agreement you may have executed
805
+ with Licensor regarding such Contributions.
806
+
807
+ 6. Trademarks. This License does not grant permission to use the trade
808
+ names, trademarks, service marks, or product names of the Licensor,
809
+ except as required for reasonable and customary use in describing the
810
+ origin of the Work and reproducing the content of the NOTICE file.
811
+
812
+ 7. Disclaimer of Warranty. Unless required by applicable law or
813
+ agreed to in writing, Licensor provides the Work (and each
814
+ Contributor provides its Contributions) on an "AS IS" BASIS,
815
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
816
+ implied, including, without limitation, any warranties or conditions
817
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
818
+ PARTICULAR PURPOSE. You are solely responsible for determining the
819
+ appropriateness of using or redistributing the Work and assume any
820
+ risks associated with Your exercise of permissions under this License.
821
+
822
+ 8. Limitation of Liability. In no event and under no legal theory,
823
+ whether in tort (including negligence), contract, or otherwise,
824
+ unless required by applicable law (such as deliberate and grossly
825
+ negligent acts) or agreed to in writing, shall any Contributor be
826
+ liable to You for damages, including any direct, indirect, special,
827
+ incidental, or consequential damages of any character arising as a
828
+ result of this License or out of the use or inability to use the
829
+ Work (including but not limited to damages for loss of goodwill,
830
+ work stoppage, computer failure or malfunction, or any and all
831
+ other commercial damages or losses), even if such Contributor
832
+ has been advised of the possibility of such damages.
833
+
834
+ 9. Accepting Warranty or Additional Liability. While redistributing
835
+ the Work or Derivative Works thereof, You may choose to offer,
836
+ and charge a fee for, acceptance of support, warranty, indemnity,
837
+ or other liability obligations and/or rights consistent with this
838
+ License. However, in accepting such obligations, You may act only
839
+ on Your own behalf and on Your sole responsibility, not on behalf
840
+ of any other Contributor, and only if You agree to indemnify,
841
+ defend, and hold each Contributor harmless for any liability
842
+ incurred by, or claims asserted against, such Contributor by reason
843
+ of your accepting any such warranty or additional liability.
844
+
845
+ END OF TERMS AND CONDITIONS
846
+
847
+ APPENDIX: How to apply the Apache License to your work.
848
+
849
+ To apply the Apache License to your work, attach the following
850
+ boilerplate notice, with the fields enclosed by brackets "[]"
851
+ replaced with your own identifying information. (Don't include
852
+ the brackets!) The text should be enclosed in the appropriate
853
+ comment syntax for the file format. We also recommend that a
854
+ file or class name and description of purpose be included on the
855
+ same "printed page" as the copyright notice for easier
856
+ identification within third-party archives.
857
+
858
+ Copyright [yyyy] [name of copyright owner]
859
+
860
+ Licensed under the Apache License, Version 2.0 (the "License");
861
+ you may not use this file except in compliance with the License.
862
+ You may obtain a copy of the License at
863
+
864
+ http://www.apache.org/licenses/LICENSE-2.0
865
+
866
+ Unless required by applicable law or agreed to in writing, software
867
+ distributed under the License is distributed on an "AS IS" BASIS,
868
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
869
+ See the License for the specific language governing permissions and
870
+ limitations under the License.
871
+
872
+
873
+ ### xml-apis
874
+
875
+ Apache 2.0
876
+
877
+ https://xerces.apache.org/xml-commons/
878
+
879
+ Unless otherwise noted all files in XML Commons are covered under the
880
+ Apache License Version 2.0. Please read the LICENSE and NOTICE files.
881
+
882
+ XML Commons contains some software and documentation that is covered
883
+ under a number of different licenses. This applies particularly to the
884
+ xml-commons/java/external/ directory. Most files under
885
+ xml-commons/java/external/ are covered under their respective
886
+ LICENSE.*.txt files; see the matching README.*.txt files for
887
+ descriptions.
888
+
889
+
890
+ Apache License
891
+ Version 2.0, January 2004
892
+ http://www.apache.org/licenses/
893
+
894
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
895
+
896
+ 1. Definitions.
897
+
898
+ "License" shall mean the terms and conditions for use, reproduction,
899
+ and distribution as defined by Sections 1 through 9 of this document.
900
+
901
+ "Licensor" shall mean the copyright owner or entity authorized by
902
+ the copyright owner that is granting the License.
903
+
904
+ "Legal Entity" shall mean the union of the acting entity and all
905
+ other entities that control, are controlled by, or are under common
906
+ control with that entity. For the purposes of this definition,
907
+ "control" means (i) the power, direct or indirect, to cause the
908
+ direction or management of such entity, whether by contract or
909
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
910
+ outstanding shares, or (iii) beneficial ownership of such entity.
911
+
912
+ "You" (or "Your") shall mean an individual or Legal Entity
913
+ exercising permissions granted by this License.
914
+
915
+ "Source" form shall mean the preferred form for making modifications,
916
+ including but not limited to software source code, documentation
917
+ source, and configuration files.
918
+
919
+ "Object" form shall mean any form resulting from mechanical
920
+ transformation or translation of a Source form, including but
921
+ not limited to compiled object code, generated documentation,
922
+ and conversions to other media types.
923
+
924
+ "Work" shall mean the work of authorship, whether in Source or
925
+ Object form, made available under the License, as indicated by a
926
+ copyright notice that is included in or attached to the work
927
+ (an example is provided in the Appendix below).
928
+
929
+ "Derivative Works" shall mean any work, whether in Source or Object
930
+ form, that is based on (or derived from) the Work and for which the
931
+ editorial revisions, annotations, elaborations, or other modifications
932
+ represent, as a whole, an original work of authorship. For the purposes
933
+ of this License, Derivative Works shall not include works that remain
934
+ separable from, or merely link (or bind by name) to the interfaces of,
935
+ the Work and Derivative Works thereof.
936
+
937
+ "Contribution" shall mean any work of authorship, including
938
+ the original version of the Work and any modifications or additions
939
+ to that Work or Derivative Works thereof, that is intentionally
940
+ submitted to Licensor for inclusion in the Work by the copyright owner
941
+ or by an individual or Legal Entity authorized to submit on behalf of
942
+ the copyright owner. For the purposes of this definition, "submitted"
943
+ means any form of electronic, verbal, or written communication sent
944
+ to the Licensor or its representatives, including but not limited to
945
+ communication on electronic mailing lists, source code control systems,
946
+ and issue tracking systems that are managed by, or on behalf of, the
947
+ Licensor for the purpose of discussing and improving the Work, but
948
+ excluding communication that is conspicuously marked or otherwise
949
+ designated in writing by the copyright owner as "Not a Contribution."
950
+
951
+ "Contributor" shall mean Licensor and any individual or Legal Entity
952
+ on behalf of whom a Contribution has been received by Licensor and
953
+ subsequently incorporated within the Work.
954
+
955
+ 2. Grant of Copyright License. Subject to the terms and conditions of
956
+ this License, each Contributor hereby grants to You a perpetual,
957
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
958
+ copyright license to reproduce, prepare Derivative Works of,
959
+ publicly display, publicly perform, sublicense, and distribute the
960
+ Work and such Derivative Works in Source or Object form.
961
+
962
+ 3. Grant of Patent License. Subject to the terms and conditions of
963
+ this License, each Contributor hereby grants to You a perpetual,
964
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
965
+ (except as stated in this section) patent license to make, have made,
966
+ use, offer to sell, sell, import, and otherwise transfer the Work,
967
+ where such license applies only to those patent claims licensable
968
+ by such Contributor that are necessarily infringed by their
969
+ Contribution(s) alone or by combination of their Contribution(s)
970
+ with the Work to which such Contribution(s) was submitted. If You
971
+ institute patent litigation against any entity (including a
972
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
973
+ or a Contribution incorporated within the Work constitutes direct
974
+ or contributory patent infringement, then any patent licenses
975
+ granted to You under this License for that Work shall terminate
976
+ as of the date such litigation is filed.
977
+
978
+ 4. Redistribution. You may reproduce and distribute copies of the
979
+ Work or Derivative Works thereof in any medium, with or without
980
+ modifications, and in Source or Object form, provided that You
981
+ meet the following conditions:
982
+
983
+ (a) You must give any other recipients of the Work or
984
+ Derivative Works a copy of this License; and
985
+
986
+ (b) You must cause any modified files to carry prominent notices
987
+ stating that You changed the files; and
988
+
989
+ (c) You must retain, in the Source form of any Derivative Works
990
+ that You distribute, all copyright, patent, trademark, and
991
+ attribution notices from the Source form of the Work,
992
+ excluding those notices that do not pertain to any part of
993
+ the Derivative Works; and
994
+
995
+ (d) If the Work includes a "NOTICE" text file as part of its
996
+ distribution, then any Derivative Works that You distribute must
997
+ include a readable copy of the attribution notices contained
998
+ within such NOTICE file, excluding those notices that do not
999
+ pertain to any part of the Derivative Works, in at least one
1000
+ of the following places: within a NOTICE text file distributed
1001
+ as part of the Derivative Works; within the Source form or
1002
+ documentation, if provided along with the Derivative Works; or,
1003
+ within a display generated by the Derivative Works, if and
1004
+ wherever such third-party notices normally appear. The contents
1005
+ of the NOTICE file are for informational purposes only and
1006
+ do not modify the License. You may add Your own attribution
1007
+ notices within Derivative Works that You distribute, alongside
1008
+ or as an addendum to the NOTICE text from the Work, provided
1009
+ that such additional attribution notices cannot be construed
1010
+ as modifying the License.
1011
+
1012
+ You may add Your own copyright statement to Your modifications and
1013
+ may provide additional or different license terms and conditions
1014
+ for use, reproduction, or distribution of Your modifications, or
1015
+ for any such Derivative Works as a whole, provided Your use,
1016
+ reproduction, and distribution of the Work otherwise complies with
1017
+ the conditions stated in this License.
1018
+
1019
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1020
+ any Contribution intentionally submitted for inclusion in the Work
1021
+ by You to the Licensor shall be under the terms and conditions of
1022
+ this License, without any additional terms or conditions.
1023
+ Notwithstanding the above, nothing herein shall supersede or modify
1024
+ the terms of any separate license agreement you may have executed
1025
+ with Licensor regarding such Contributions.
1026
+
1027
+ 6. Trademarks. This License does not grant permission to use the trade
1028
+ names, trademarks, service marks, or product names of the Licensor,
1029
+ except as required for reasonable and customary use in describing the
1030
+ origin of the Work and reproducing the content of the NOTICE file.
1031
+
1032
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1033
+ agreed to in writing, Licensor provides the Work (and each
1034
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1035
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1036
+ implied, including, without limitation, any warranties or conditions
1037
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1038
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1039
+ appropriateness of using or redistributing the Work and assume any
1040
+ risks associated with Your exercise of permissions under this License.
1041
+
1042
+ 8. Limitation of Liability. In no event and under no legal theory,
1043
+ whether in tort (including negligence), contract, or otherwise,
1044
+ unless required by applicable law (such as deliberate and grossly
1045
+ negligent acts) or agreed to in writing, shall any Contributor be
1046
+ liable to You for damages, including any direct, indirect, special,
1047
+ incidental, or consequential damages of any character arising as a
1048
+ result of this License or out of the use or inability to use the
1049
+ Work (including but not limited to damages for loss of goodwill,
1050
+ work stoppage, computer failure or malfunction, or any and all
1051
+ other commercial damages or losses), even if such Contributor
1052
+ has been advised of the possibility of such damages.
1053
+
1054
+ 9. Accepting Warranty or Additional Liability. While redistributing
1055
+ the Work or Derivative Works thereof, You may choose to offer,
1056
+ and charge a fee for, acceptance of support, warranty, indemnity,
1057
+ or other liability obligations and/or rights consistent with this
1058
+ License. However, in accepting such obligations, You may act only
1059
+ on Your own behalf and on Your sole responsibility, not on behalf
1060
+ of any other Contributor, and only if You agree to indemnify,
1061
+ defend, and hold each Contributor harmless for any liability
1062
+ incurred by, or claims asserted against, such Contributor by reason
1063
+ of your accepting any such warranty or additional liability.
1064
+
1065
+ END OF TERMS AND CONDITIONS
1066
+
1067
+ APPENDIX: How to apply the Apache License to your work.
1068
+
1069
+ To apply the Apache License to your work, attach the following
1070
+ boilerplate notice, with the fields enclosed by brackets "[]"
1071
+ replaced with your own identifying information. (Don't include
1072
+ the brackets!) The text should be enclosed in the appropriate
1073
+ comment syntax for the file format. We also recommend that a
1074
+ file or class name and description of purpose be included on the
1075
+ same "printed page" as the copyright notice for easier
1076
+ identification within third-party archives.
1077
+
1078
+ Copyright [yyyy] [name of copyright owner]
1079
+
1080
+ Licensed under the Apache License, Version 2.0 (the "License");
1081
+ you may not use this file except in compliance with the License.
1082
+ You may obtain a copy of the License at
1083
+
1084
+ http://www.apache.org/licenses/LICENSE-2.0
1085
+
1086
+ Unless required by applicable law or agreed to in writing, software
1087
+ distributed under the License is distributed on an "AS IS" BASIS,
1088
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1089
+ See the License for the specific language governing permissions and
1090
+ limitations under the License.
1091
+
1092
+
1093
+ ## binary windows release
1094
+
1095
+ NOTE: these libraries are redistributed ONLY with the binary
1096
+ cross-compiled Windows platform version of Nokogiri, both x86-mingw32
1097
+ and x64-mingw32.
1098
+
1099
+ ### zlib
1100
+
1101
+ zlib license
1102
+
1103
+ http://www.zlib.net/zlib_license.html
1104
+
1105
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
1106
+
1107
+ This software is provided 'as-is', without any express or implied
1108
+ warranty. In no event will the authors be held liable for any damages
1109
+ arising from the use of this software.
1110
+
1111
+ Permission is granted to anyone to use this software for any purpose,
1112
+ including commercial applications, and to alter it and redistribute it
1113
+ freely, subject to the following restrictions:
1114
+
1115
+ 1. The origin of this software must not be misrepresented; you must not
1116
+ claim that you wrote the original software. If you use this software
1117
+ in a product, an acknowledgment in the product documentation would be
1118
+ appreciated but is not required.
1119
+ 2. Altered source versions must be plainly marked as such, and must not be
1120
+ misrepresented as being the original software.
1121
+ 3. This notice may not be removed or altered from any source distribution.
1122
+
1123
+ Jean-loup Gailly Mark Adler
1124
+ jloup@gzip.org madler@alumni.caltech.edu
1125
+
1126
+
1127
+ ### libiconv
1128
+
1129
+ LGPL
1130
+
1131
+ https://www.gnu.org/software/libiconv/
1132
+
1133
+ GNU LIBRARY GENERAL PUBLIC LICENSE
1134
+ Version 2, June 1991
1135
+
1136
+ Copyright (C) 1991 Free Software Foundation, Inc.
1137
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
1138
+ Everyone is permitted to copy and distribute verbatim copies
1139
+ of this license document, but changing it is not allowed.
1140
+
1141
+ [This is the first released version of the library GPL. It is
1142
+ numbered 2 because it goes with version 2 of the ordinary GPL.]
1143
+
1144
+ Preamble
1145
+
1146
+ The licenses for most software are designed to take away your
1147
+ freedom to share and change it. By contrast, the GNU General Public
1148
+ Licenses are intended to guarantee your freedom to share and change
1149
+ free software--to make sure the software is free for all its users.
1150
+
1151
+ This license, the Library General Public License, applies to some
1152
+ specially designated Free Software Foundation software, and to any
1153
+ other libraries whose authors decide to use it. You can use it for
1154
+ your libraries, too.
1155
+
1156
+ When we speak of free software, we are referring to freedom, not
1157
+ price. Our General Public Licenses are designed to make sure that you
1158
+ have the freedom to distribute copies of free software (and charge for
1159
+ this service if you wish), that you receive source code or can get it
1160
+ if you want it, that you can change the software or use pieces of it
1161
+ in new free programs; and that you know you can do these things.
1162
+
1163
+ To protect your rights, we need to make restrictions that forbid
1164
+ anyone to deny you these rights or to ask you to surrender the rights.
1165
+ These restrictions translate to certain responsibilities for you if
1166
+ you distribute copies of the library, or if you modify it.
1167
+
1168
+ For example, if you distribute copies of the library, whether gratis
1169
+ or for a fee, you must give the recipients all the rights that we gave
1170
+ you. You must make sure that they, too, receive or can get the source
1171
+ code. If you link a program with the library, you must provide
1172
+ complete object files to the recipients so that they can relink them
1173
+ with the library, after making changes to the library and recompiling
1174
+ it. And you must show them these terms so they know their rights.
1175
+
1176
+ Our method of protecting your rights has two steps: (1) copyright
1177
+ the library, and (2) offer you this license which gives you legal
1178
+ permission to copy, distribute and/or modify the library.
1179
+
1180
+ Also, for each distributor's protection, we want to make certain
1181
+ that everyone understands that there is no warranty for this free
1182
+ library. If the library is modified by someone else and passed on, we
1183
+ want its recipients to know that what they have is not the original
1184
+ version, so that any problems introduced by others will not reflect on
1185
+ the original authors' reputations.
1186
+
1187
+ Finally, any free program is threatened constantly by software
1188
+ patents. We wish to avoid the danger that companies distributing free
1189
+ software will individually obtain patent licenses, thus in effect
1190
+ transforming the program into proprietary software. To prevent this,
1191
+ we have made it clear that any patent must be licensed for everyone's
1192
+ free use or not licensed at all.
1193
+
1194
+ Most GNU software, including some libraries, is covered by the ordinary
1195
+ GNU General Public License, which was designed for utility programs. This
1196
+ license, the GNU Library General Public License, applies to certain
1197
+ designated libraries. This license is quite different from the ordinary
1198
+ one; be sure to read it in full, and don't assume that anything in it is
1199
+ the same as in the ordinary license.
1200
+
1201
+ The reason we have a separate public license for some libraries is that
1202
+ they blur the distinction we usually make between modifying or adding to a
1203
+ program and simply using it. Linking a program with a library, without
1204
+ changing the library, is in some sense simply using the library, and is
1205
+ analogous to running a utility program or application program. However, in
1206
+ a textual and legal sense, the linked executable is a combined work, a
1207
+ derivative of the original library, and the ordinary General Public License
1208
+ treats it as such.
1209
+
1210
+ Because of this blurred distinction, using the ordinary General
1211
+ Public License for libraries did not effectively promote software
1212
+ sharing, because most developers did not use the libraries. We
1213
+ concluded that weaker conditions might promote sharing better.
1214
+
1215
+ However, unrestricted linking of non-free programs would deprive the
1216
+ users of those programs of all benefit from the free status of the
1217
+ libraries themselves. This Library General Public License is intended to
1218
+ permit developers of non-free programs to use free libraries, while
1219
+ preserving your freedom as a user of such programs to change the free
1220
+ libraries that are incorporated in them. (We have not seen how to achieve
1221
+ this as regards changes in header files, but we have achieved it as regards
1222
+ changes in the actual functions of the Library.) The hope is that this
1223
+ will lead to faster development of free libraries.
1224
+
1225
+ The precise terms and conditions for copying, distribution and
1226
+ modification follow. Pay close attention to the difference between a
1227
+ "work based on the library" and a "work that uses the library". The
1228
+ former contains code derived from the library, while the latter only
1229
+ works together with the library.
1230
+
1231
+ Note that it is possible for a library to be covered by the ordinary
1232
+ General Public License rather than by this special one.
1233
+
1234
+ GNU LIBRARY GENERAL PUBLIC LICENSE
1235
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1236
+
1237
+ 0. This License Agreement applies to any software library which
1238
+ contains a notice placed by the copyright holder or other authorized
1239
+ party saying it may be distributed under the terms of this Library
1240
+ General Public License (also called "this License"). Each licensee is
1241
+ addressed as "you".
1242
+
1243
+ A "library" means a collection of software functions and/or data
1244
+ prepared so as to be conveniently linked with application programs
1245
+ (which use some of those functions and data) to form executables.
1246
+
1247
+ The "Library", below, refers to any such software library or work
1248
+ which has been distributed under these terms. A "work based on the
1249
+ Library" means either the Library or any derivative work under
1250
+ copyright law: that is to say, a work containing the Library or a
1251
+ portion of it, either verbatim or with modifications and/or translated
1252
+ straightforwardly into another language. (Hereinafter, translation is
1253
+ included without limitation in the term "modification".)
1254
+
1255
+ "Source code" for a work means the preferred form of the work for
1256
+ making modifications to it. For a library, complete source code means
1257
+ all the source code for all modules it contains, plus any associated
1258
+ interface definition files, plus the scripts used to control compilation
1259
+ and installation of the library.
1260
+
1261
+ Activities other than copying, distribution and modification are not
1262
+ covered by this License; they are outside its scope. The act of
1263
+ running a program using the Library is not restricted, and output from
1264
+ such a program is covered only if its contents constitute a work based
1265
+ on the Library (independent of the use of the Library in a tool for
1266
+ writing it). Whether that is true depends on what the Library does
1267
+ and what the program that uses the Library does.
1268
+
1269
+ 1. You may copy and distribute verbatim copies of the Library's
1270
+ complete source code as you receive it, in any medium, provided that
1271
+ you conspicuously and appropriately publish on each copy an
1272
+ appropriate copyright notice and disclaimer of warranty; keep intact
1273
+ all the notices that refer to this License and to the absence of any
1274
+ warranty; and distribute a copy of this License along with the
1275
+ Library.
1276
+
1277
+ You may charge a fee for the physical act of transferring a copy,
1278
+ and you may at your option offer warranty protection in exchange for a
1279
+ fee.
1280
+
1281
+ 2. You may modify your copy or copies of the Library or any portion
1282
+ of it, thus forming a work based on the Library, and copy and
1283
+ distribute such modifications or work under the terms of Section 1
1284
+ above, provided that you also meet all of these conditions:
1285
+
1286
+ a) The modified work must itself be a software library.
1287
+
1288
+ b) You must cause the files modified to carry prominent notices
1289
+ stating that you changed the files and the date of any change.
1290
+
1291
+ c) You must cause the whole of the work to be licensed at no
1292
+ charge to all third parties under the terms of this License.
1293
+
1294
+ d) If a facility in the modified Library refers to a function or a
1295
+ table of data to be supplied by an application program that uses
1296
+ the facility, other than as an argument passed when the facility
1297
+ is invoked, then you must make a good faith effort to ensure that,
1298
+ in the event an application does not supply such function or
1299
+ table, the facility still operates, and performs whatever part of
1300
+ its purpose remains meaningful.
1301
+
1302
+ (For example, a function in a library to compute square roots has
1303
+ a purpose that is entirely well-defined independent of the
1304
+ application. Therefore, Subsection 2d requires that any
1305
+ application-supplied function or table used by this function must
1306
+ be optional: if the application does not supply it, the square
1307
+ root function must still compute square roots.)
1308
+
1309
+ These requirements apply to the modified work as a whole. If
1310
+ identifiable sections of that work are not derived from the Library,
1311
+ and can be reasonably considered independent and separate works in
1312
+ themselves, then this License, and its terms, do not apply to those
1313
+ sections when you distribute them as separate works. But when you
1314
+ distribute the same sections as part of a whole which is a work based
1315
+ on the Library, the distribution of the whole must be on the terms of
1316
+ this License, whose permissions for other licensees extend to the
1317
+ entire whole, and thus to each and every part regardless of who wrote
1318
+ it.
1319
+
1320
+ Thus, it is not the intent of this section to claim rights or contest
1321
+ your rights to work written entirely by you; rather, the intent is to
1322
+ exercise the right to control the distribution of derivative or
1323
+ collective works based on the Library.
1324
+
1325
+ In addition, mere aggregation of another work not based on the Library
1326
+ with the Library (or with a work based on the Library) on a volume of
1327
+ a storage or distribution medium does not bring the other work under
1328
+ the scope of this License.
1329
+
1330
+ 3. You may opt to apply the terms of the ordinary GNU General Public
1331
+ License instead of this License to a given copy of the Library. To do
1332
+ this, you must alter all the notices that refer to this License, so
1333
+ that they refer to the ordinary GNU General Public License, version 2,
1334
+ instead of to this License. (If a newer version than version 2 of the
1335
+ ordinary GNU General Public License has appeared, then you can specify
1336
+ that version instead if you wish.) Do not make any other change in
1337
+ these notices.
1338
+
1339
+ Once this change is made in a given copy, it is irreversible for
1340
+ that copy, so the ordinary GNU General Public License applies to all
1341
+ subsequent copies and derivative works made from that copy.
1342
+
1343
+ This option is useful when you wish to copy part of the code of
1344
+ the Library into a program that is not a library.
1345
+
1346
+ 4. You may copy and distribute the Library (or a portion or
1347
+ derivative of it, under Section 2) in object code or executable form
1348
+ under the terms of Sections 1 and 2 above provided that you accompany
1349
+ it with the complete corresponding machine-readable source code, which
1350
+ must be distributed under the terms of Sections 1 and 2 above on a
1351
+ medium customarily used for software interchange.
1352
+
1353
+ If distribution of object code is made by offering access to copy
1354
+ from a designated place, then offering equivalent access to copy the
1355
+ source code from the same place satisfies the requirement to
1356
+ distribute the source code, even though third parties are not
1357
+ compelled to copy the source along with the object code.
1358
+
1359
+ 5. A program that contains no derivative of any portion of the
1360
+ Library, but is designed to work with the Library by being compiled or
1361
+ linked with it, is called a "work that uses the Library". Such a
1362
+ work, in isolation, is not a derivative work of the Library, and
1363
+ therefore falls outside the scope of this License.
1364
+
1365
+ However, linking a "work that uses the Library" with the Library
1366
+ creates an executable that is a derivative of the Library (because it
1367
+ contains portions of the Library), rather than a "work that uses the
1368
+ library". The executable is therefore covered by this License.
1369
+ Section 6 states terms for distribution of such executables.
1370
+
1371
+ When a "work that uses the Library" uses material from a header file
1372
+ that is part of the Library, the object code for the work may be a
1373
+ derivative work of the Library even though the source code is not.
1374
+ Whether this is true is especially significant if the work can be
1375
+ linked without the Library, or if the work is itself a library. The
1376
+ threshold for this to be true is not precisely defined by law.
1377
+
1378
+ If such an object file uses only numerical parameters, data
1379
+ structure layouts and accessors, and small macros and small inline
1380
+ functions (ten lines or less in length), then the use of the object
1381
+ file is unrestricted, regardless of whether it is legally a derivative
1382
+ work. (Executables containing this object code plus portions of the
1383
+ Library will still fall under Section 6.)
1384
+
1385
+ Otherwise, if the work is a derivative of the Library, you may
1386
+ distribute the object code for the work under the terms of Section 6.
1387
+ Any executables containing that work also fall under Section 6,
1388
+ whether or not they are linked directly with the Library itself.
1389
+
1390
+ 6. As an exception to the Sections above, you may also compile or
1391
+ link a "work that uses the Library" with the Library to produce a
1392
+ work containing portions of the Library, and distribute that work
1393
+ under terms of your choice, provided that the terms permit
1394
+ modification of the work for the customer's own use and reverse
1395
+ engineering for debugging such modifications.
1396
+
1397
+ You must give prominent notice with each copy of the work that the
1398
+ Library is used in it and that the Library and its use are covered by
1399
+ this License. You must supply a copy of this License. If the work
1400
+ during execution displays copyright notices, you must include the
1401
+ copyright notice for the Library among them, as well as a reference
1402
+ directing the user to the copy of this License. Also, you must do one
1403
+ of these things:
1404
+
1405
+ a) Accompany the work with the complete corresponding
1406
+ machine-readable source code for the Library including whatever
1407
+ changes were used in the work (which must be distributed under
1408
+ Sections 1 and 2 above); and, if the work is an executable linked
1409
+ with the Library, with the complete machine-readable "work that
1410
+ uses the Library", as object code and/or source code, so that the
1411
+ user can modify the Library and then relink to produce a modified
1412
+ executable containing the modified Library. (It is understood
1413
+ that the user who changes the contents of definitions files in the
1414
+ Library will not necessarily be able to recompile the application
1415
+ to use the modified definitions.)
1416
+
1417
+ b) Accompany the work with a written offer, valid for at
1418
+ least three years, to give the same user the materials
1419
+ specified in Subsection 6a, above, for a charge no more
1420
+ than the cost of performing this distribution.
1421
+
1422
+ c) If distribution of the work is made by offering access to copy
1423
+ from a designated place, offer equivalent access to copy the above
1424
+ specified materials from the same place.
1425
+
1426
+ d) Verify that the user has already received a copy of these
1427
+ materials or that you have already sent this user a copy.
1428
+
1429
+ For an executable, the required form of the "work that uses the
1430
+ Library" must include any data and utility programs needed for
1431
+ reproducing the executable from it. However, as a special exception,
1432
+ the source code distributed need not include anything that is normally
1433
+ distributed (in either source or binary form) with the major
1434
+ components (compiler, kernel, and so on) of the operating system on
1435
+ which the executable runs, unless that component itself accompanies
1436
+ the executable.
1437
+
1438
+ It may happen that this requirement contradicts the license
1439
+ restrictions of other proprietary libraries that do not normally
1440
+ accompany the operating system. Such a contradiction means you cannot
1441
+ use both them and the Library together in an executable that you
1442
+ distribute.
1443
+
1444
+ 7. You may place library facilities that are a work based on the
1445
+ Library side-by-side in a single library together with other library
1446
+ facilities not covered by this License, and distribute such a combined
1447
+ library, provided that the separate distribution of the work based on
1448
+ the Library and of the other library facilities is otherwise
1449
+ permitted, and provided that you do these two things:
1450
+
1451
+ a) Accompany the combined library with a copy of the same work
1452
+ based on the Library, uncombined with any other library
1453
+ facilities. This must be distributed under the terms of the
1454
+ Sections above.
1455
+
1456
+ b) Give prominent notice with the combined library of the fact
1457
+ that part of it is a work based on the Library, and explaining
1458
+ where to find the accompanying uncombined form of the same work.
1459
+
1460
+ 8. You may not copy, modify, sublicense, link with, or distribute
1461
+ the Library except as expressly provided under this License. Any
1462
+ attempt otherwise to copy, modify, sublicense, link with, or
1463
+ distribute the Library is void, and will automatically terminate your
1464
+ rights under this License. However, parties who have received copies,
1465
+ or rights, from you under this License will not have their licenses
1466
+ terminated so long as such parties remain in full compliance.
1467
+
1468
+ 9. You are not required to accept this License, since you have not
1469
+ signed it. However, nothing else grants you permission to modify or
1470
+ distribute the Library or its derivative works. These actions are
1471
+ prohibited by law if you do not accept this License. Therefore, by
1472
+ modifying or distributing the Library (or any work based on the
1473
+ Library), you indicate your acceptance of this License to do so, and
1474
+ all its terms and conditions for copying, distributing or modifying
1475
+ the Library or works based on it.
1476
+
1477
+ 10. Each time you redistribute the Library (or any work based on the
1478
+ Library), the recipient automatically receives a license from the
1479
+ original licensor to copy, distribute, link with or modify the Library
1480
+ subject to these terms and conditions. You may not impose any further
1481
+ restrictions on the recipients' exercise of the rights granted herein.
1482
+ You are not responsible for enforcing compliance by third parties to
1483
+ this License.
1484
+
1485
+ 11. If, as a consequence of a court judgment or allegation of patent
1486
+ infringement or for any other reason (not limited to patent issues),
1487
+ conditions are imposed on you (whether by court order, agreement or
1488
+ otherwise) that contradict the conditions of this License, they do not
1489
+ excuse you from the conditions of this License. If you cannot
1490
+ distribute so as to satisfy simultaneously your obligations under this
1491
+ License and any other pertinent obligations, then as a consequence you
1492
+ may not distribute the Library at all. For example, if a patent
1493
+ license would not permit royalty-free redistribution of the Library by
1494
+ all those who receive copies directly or indirectly through you, then
1495
+ the only way you could satisfy both it and this License would be to
1496
+ refrain entirely from distribution of the Library.
1497
+
1498
+ If any portion of this section is held invalid or unenforceable under any
1499
+ particular circumstance, the balance of the section is intended to apply,
1500
+ and the section as a whole is intended to apply in other circumstances.
1501
+
1502
+ It is not the purpose of this section to induce you to infringe any
1503
+ patents or other property right claims or to contest validity of any
1504
+ such claims; this section has the sole purpose of protecting the
1505
+ integrity of the free software distribution system which is
1506
+ implemented by public license practices. Many people have made
1507
+ generous contributions to the wide range of software distributed
1508
+ through that system in reliance on consistent application of that
1509
+ system; it is up to the author/donor to decide if he or she is willing
1510
+ to distribute software through any other system and a licensee cannot
1511
+ impose that choice.
1512
+
1513
+ This section is intended to make thoroughly clear what is believed to
1514
+ be a consequence of the rest of this License.
1515
+
1516
+ 12. If the distribution and/or use of the Library is restricted in
1517
+ certain countries either by patents or by copyrighted interfaces, the
1518
+ original copyright holder who places the Library under this License may add
1519
+ an explicit geographical distribution limitation excluding those countries,
1520
+ so that distribution is permitted only in or among countries not thus
1521
+ excluded. In such case, this License incorporates the limitation as if
1522
+ written in the body of this License.
1523
+
1524
+ 13. The Free Software Foundation may publish revised and/or new
1525
+ versions of the Library General Public License from time to time.
1526
+ Such new versions will be similar in spirit to the present version,
1527
+ but may differ in detail to address new problems or concerns.
1528
+
1529
+ Each version is given a distinguishing version number. If the Library
1530
+ specifies a version number of this License which applies to it and
1531
+ "any later version", you have the option of following the terms and
1532
+ conditions either of that version or of any later version published by
1533
+ the Free Software Foundation. If the Library does not specify a
1534
+ license version number, you may choose any version ever published by
1535
+ the Free Software Foundation.
1536
+
1537
+ 14. If you wish to incorporate parts of the Library into other free
1538
+ programs whose distribution conditions are incompatible with these,
1539
+ write to the author to ask for permission. For software which is
1540
+ copyrighted by the Free Software Foundation, write to the Free
1541
+ Software Foundation; we sometimes make exceptions for this. Our
1542
+ decision will be guided by the two goals of preserving the free status
1543
+ of all derivatives of our free software and of promoting the sharing
1544
+ and reuse of software generally.
1545
+
1546
+ NO WARRANTY
1547
+
1548
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
1549
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
1550
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
1551
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
1552
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
1553
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1554
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
1555
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
1556
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1557
+
1558
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
1559
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
1560
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
1561
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
1562
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
1563
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
1564
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
1565
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
1566
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
1567
+ DAMAGES.
1568
+
1569
+ END OF TERMS AND CONDITIONS
1570
+
1571
+ Appendix: How to Apply These Terms to Your New Libraries
1572
+
1573
+ If you develop a new library, and you want it to be of the greatest
1574
+ possible use to the public, we recommend making it free software that
1575
+ everyone can redistribute and change. You can do so by permitting
1576
+ redistribution under these terms (or, alternatively, under the terms of the
1577
+ ordinary General Public License).
1578
+
1579
+ To apply these terms, attach the following notices to the library. It is
1580
+ safest to attach them to the start of each source file to most effectively
1581
+ convey the exclusion of warranty; and each file should have at least the
1582
+ "copyright" line and a pointer to where the full notice is found.
1583
+
1584
+ <one line to give the library's name and a brief idea of what it does.>
1585
+ Copyright (C) <year> <name of author>
1586
+
1587
+ This library is free software; you can redistribute it and/or
1588
+ modify it under the terms of the GNU Library General Public
1589
+ License as published by the Free Software Foundation; either
1590
+ version 2 of the License, or (at your option) any later version.
1591
+
1592
+ This library is distributed in the hope that it will be useful,
1593
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1594
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1595
+ Library General Public License for more details.
1596
+
1597
+ You should have received a copy of the GNU Library General Public
1598
+ License along with this library; if not, write to the Free
1599
+ Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
1600
+ MA 02110-1301, USA
1601
+
1602
+ Also add information on how to contact you by electronic and paper mail.
1603
+
1604
+ You should also get your employer (if you work as a programmer) or your
1605
+ school, if any, to sign a "copyright disclaimer" for the library, if
1606
+ necessary. Here is a sample; alter the names:
1607
+
1608
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
1609
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
1610
+
1611
+ <signature of Ty Coon>, 1 April 1990
1612
+ Ty Coon, President of Vice
1613
+
1614
+ That's all there is to it!