httparty-responsibly 0.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +18 -0
  3. data/.gitignore +13 -0
  4. data/.rubocop.yml +92 -0
  5. data/.rubocop_todo.yml +124 -0
  6. data/.simplecov +1 -0
  7. data/.travis.yml +11 -0
  8. data/CONTRIBUTING.md +23 -0
  9. data/Changelog.md +509 -0
  10. data/Gemfile +24 -0
  11. data/Guardfile +16 -0
  12. data/MIT-LICENSE +20 -0
  13. data/README.md +78 -0
  14. data/Rakefile +10 -0
  15. data/bin/httparty +123 -0
  16. data/cucumber.yml +1 -0
  17. data/docs/README.md +106 -0
  18. data/examples/README.md +86 -0
  19. data/examples/aaws.rb +32 -0
  20. data/examples/basic.rb +28 -0
  21. data/examples/body_stream.rb +14 -0
  22. data/examples/crack.rb +19 -0
  23. data/examples/custom_parsers.rb +68 -0
  24. data/examples/delicious.rb +37 -0
  25. data/examples/google.rb +16 -0
  26. data/examples/headers_and_user_agents.rb +10 -0
  27. data/examples/logging.rb +36 -0
  28. data/examples/microsoft_graph.rb +52 -0
  29. data/examples/multipart.rb +22 -0
  30. data/examples/nokogiri_html_parser.rb +19 -0
  31. data/examples/peer_cert.rb +9 -0
  32. data/examples/rescue_json.rb +17 -0
  33. data/examples/rubyurl.rb +14 -0
  34. data/examples/stackexchange.rb +24 -0
  35. data/examples/stream_download.rb +26 -0
  36. data/examples/tripit_sign_in.rb +44 -0
  37. data/examples/twitter.rb +31 -0
  38. data/examples/whoismyrep.rb +10 -0
  39. data/httparty-responsibly.gemspec +27 -0
  40. data/lib/httparty.rb +668 -0
  41. data/lib/httparty/connection_adapter.rb +254 -0
  42. data/lib/httparty/cookie_hash.rb +21 -0
  43. data/lib/httparty/exceptions.rb +33 -0
  44. data/lib/httparty/hash_conversions.rb +69 -0
  45. data/lib/httparty/headers_processor.rb +30 -0
  46. data/lib/httparty/logger/apache_formatter.rb +45 -0
  47. data/lib/httparty/logger/curl_formatter.rb +91 -0
  48. data/lib/httparty/logger/logger.rb +28 -0
  49. data/lib/httparty/logger/logstash_formatter.rb +59 -0
  50. data/lib/httparty/module_inheritable_attributes.rb +56 -0
  51. data/lib/httparty/net_digest_auth.rb +136 -0
  52. data/lib/httparty/parser.rb +150 -0
  53. data/lib/httparty/request.rb +386 -0
  54. data/lib/httparty/request/body.rb +84 -0
  55. data/lib/httparty/request/multipart_boundary.rb +11 -0
  56. data/lib/httparty/response.rb +140 -0
  57. data/lib/httparty/response/headers.rb +33 -0
  58. data/lib/httparty/response_fragment.rb +19 -0
  59. data/lib/httparty/text_encoder.rb +70 -0
  60. data/lib/httparty/utils.rb +11 -0
  61. data/lib/httparty/version.rb +3 -0
  62. data/script/release +42 -0
  63. data/website/css/common.css +47 -0
  64. data/website/index.html +73 -0
  65. metadata +138 -0
metadata ADDED
@@ -0,0 +1,138 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: httparty-responsibly
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.17.1
5
+ platform: ruby
6
+ authors:
7
+ - John Nunemaker
8
+ - Sandro Turriate
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2019-12-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: multi_xml
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: 0.5.2
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: 0.5.2
28
+ - !ruby/object:Gem::Dependency
29
+ name: mime-types
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '3.0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '3.0'
42
+ description: An up-to-date fork of jnunemaker's httparty, without the post-install
43
+ nonsense.
44
+ email:
45
+ - nunemaker@gmail.com
46
+ - james@denness.org
47
+ executables:
48
+ - httparty
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - ".editorconfig"
53
+ - ".gitignore"
54
+ - ".rubocop.yml"
55
+ - ".rubocop_todo.yml"
56
+ - ".simplecov"
57
+ - ".travis.yml"
58
+ - CONTRIBUTING.md
59
+ - Changelog.md
60
+ - Gemfile
61
+ - Guardfile
62
+ - MIT-LICENSE
63
+ - README.md
64
+ - Rakefile
65
+ - bin/httparty
66
+ - cucumber.yml
67
+ - docs/README.md
68
+ - examples/README.md
69
+ - examples/aaws.rb
70
+ - examples/basic.rb
71
+ - examples/body_stream.rb
72
+ - examples/crack.rb
73
+ - examples/custom_parsers.rb
74
+ - examples/delicious.rb
75
+ - examples/google.rb
76
+ - examples/headers_and_user_agents.rb
77
+ - examples/logging.rb
78
+ - examples/microsoft_graph.rb
79
+ - examples/multipart.rb
80
+ - examples/nokogiri_html_parser.rb
81
+ - examples/peer_cert.rb
82
+ - examples/rescue_json.rb
83
+ - examples/rubyurl.rb
84
+ - examples/stackexchange.rb
85
+ - examples/stream_download.rb
86
+ - examples/tripit_sign_in.rb
87
+ - examples/twitter.rb
88
+ - examples/whoismyrep.rb
89
+ - httparty-responsibly.gemspec
90
+ - lib/httparty.rb
91
+ - lib/httparty/connection_adapter.rb
92
+ - lib/httparty/cookie_hash.rb
93
+ - lib/httparty/exceptions.rb
94
+ - lib/httparty/hash_conversions.rb
95
+ - lib/httparty/headers_processor.rb
96
+ - lib/httparty/logger/apache_formatter.rb
97
+ - lib/httparty/logger/curl_formatter.rb
98
+ - lib/httparty/logger/logger.rb
99
+ - lib/httparty/logger/logstash_formatter.rb
100
+ - lib/httparty/module_inheritable_attributes.rb
101
+ - lib/httparty/net_digest_auth.rb
102
+ - lib/httparty/parser.rb
103
+ - lib/httparty/request.rb
104
+ - lib/httparty/request/body.rb
105
+ - lib/httparty/request/multipart_boundary.rb
106
+ - lib/httparty/response.rb
107
+ - lib/httparty/response/headers.rb
108
+ - lib/httparty/response_fragment.rb
109
+ - lib/httparty/text_encoder.rb
110
+ - lib/httparty/utils.rb
111
+ - lib/httparty/version.rb
112
+ - script/release
113
+ - website/css/common.css
114
+ - website/index.html
115
+ homepage: https://github.com/scarybot/httparty-responsibly
116
+ licenses:
117
+ - MIT
118
+ metadata: {}
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: 2.0.0
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ requirements: []
134
+ rubygems_version: 3.0.3
135
+ signing_key:
136
+ specification_version: 4
137
+ summary: An up-to-date fork of jnunemaker's httparty, without the post-install nonsense.
138
+ test_files: []