webpurify 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +20 -0
- data/lib/web_purify/version.rb +1 -1
- data/lib/webpurify.rb +2 -0
- data/web_purify.gemspec +4 -4
- metadata +5 -43
- data/.gitignore +0 -24
- data/Gemfile +0 -3
- data/spec/fixtures/vcr/WebPurify_ImageFilters/imgaccount/returns_the_number_of_image_submissions_remaining.yml +0 -38
- data/spec/fixtures/vcr/WebPurify_ImageFilters/imgcheck/returns_an_image_ID.yml +0 -38
- data/spec/fixtures/vcr/WebPurify_ImageFilters/imgstatus/returns_the_status_of_image_moderation.yml +0 -74
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/safe_text_returns_false.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_returns_false_by_default.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_when_URLs_are_prohibited_returns_true.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_returns_false_by_default.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_when_phone_numbers_are_prohibited_returns_true.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_returns_false_by_default.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_when_emails_are_prohibited_returns_true.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_profanity_returns_true.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check_count/no_profanities_returns_0.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check_count/one_profanity_returns_1.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/check_count/two_profanities_returns_2.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/replace/safe_text_returns_the_text_with_no_changes.yml +0 -37
- data/spec/fixtures/vcr/WebPurify_TextFilters/replace/text_with_profanity_returns_the_text_with_profanities_replaced_by_symbols.yml +0 -37
- data/spec/fixtures/vcr/WebPurify_TextFilters/return/no_profanities_returns_an_empty_array.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/return/one_profanity_returns_an_array_with_one_profanity.yml +0 -36
- data/spec/fixtures/vcr/WebPurify_TextFilters/return/two_profanities_returns_an_array_with_two_profanities.yml +0 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32d75064f7e6754b23d1d6b3cda4ed3931a46cf1
|
4
|
+
data.tar.gz: 9a2a5eeb8de37c5b4c1a61f5a76254243303c738
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dedb8d0e57c6c1a87d7bf1f6ea091267edd23eb5aac05a761f9adadaf032e0657b98afd743fe2202879bf81f778263a97460d36e56ff9e527296df1b9abcfa2
|
7
|
+
data.tar.gz: ea406de1da6fd7c045b4292c480f5c31af73d6aa04a297bdd34e42b8dd221a1311e67917181ce2ca2b6131519b9bf429304ad78f93f0550cc1bdf9f39f8f76b1
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Miles Zimmerman
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/web_purify/version.rb
CHANGED
data/lib/webpurify.rb
ADDED
data/web_purify.gemspec
CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.add_development_dependency "vcr"
|
20
20
|
s.add_development_dependency "webmock"
|
21
21
|
|
22
|
-
s.files =
|
23
|
-
s.
|
24
|
-
s.
|
22
|
+
s.files = %w(LICENSE README.md web_purify.gemspec)
|
23
|
+
s.files += Dir.glob("lib/**/*.rb")
|
24
|
+
s.test_files = Dir.glob("spec/**/*.rb")
|
25
25
|
s.require_paths = ["lib"]
|
26
|
-
end
|
26
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webpurify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Zimmerman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -73,8 +73,7 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
-
|
77
|
-
- Gemfile
|
76
|
+
- LICENSE
|
78
77
|
- README.md
|
79
78
|
- lib/web_purify.rb
|
80
79
|
- lib/web_purify/client.rb
|
@@ -85,25 +84,7 @@ files:
|
|
85
84
|
- lib/web_purify/methods/whitelist.rb
|
86
85
|
- lib/web_purify/request.rb
|
87
86
|
- lib/web_purify/version.rb
|
88
|
-
-
|
89
|
-
- spec/fixtures/vcr/WebPurify_ImageFilters/imgcheck/returns_an_image_ID.yml
|
90
|
-
- spec/fixtures/vcr/WebPurify_ImageFilters/imgstatus/returns_the_status_of_image_moderation.yml
|
91
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/safe_text_returns_false.yml
|
92
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_returns_false_by_default.yml
|
93
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_when_URLs_are_prohibited_returns_true.yml
|
94
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_returns_false_by_default.yml
|
95
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_when_phone_numbers_are_prohibited_returns_true.yml
|
96
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_returns_false_by_default.yml
|
97
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_when_emails_are_prohibited_returns_true.yml
|
98
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_profanity_returns_true.yml
|
99
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/no_profanities_returns_0.yml
|
100
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/one_profanity_returns_1.yml
|
101
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/two_profanities_returns_2.yml
|
102
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/replace/safe_text_returns_the_text_with_no_changes.yml
|
103
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/replace/text_with_profanity_returns_the_text_with_profanities_replaced_by_symbols.yml
|
104
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/no_profanities_returns_an_empty_array.yml
|
105
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/one_profanity_returns_an_array_with_one_profanity.yml
|
106
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/two_profanities_returns_an_array_with_two_profanities.yml
|
87
|
+
- lib/webpurify.rb
|
107
88
|
- spec/spec_helper.rb
|
108
89
|
- spec/support/vcr.rb
|
109
90
|
- spec/web_purify/methods/image_filters_spec.rb
|
@@ -128,30 +109,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
109
|
version: '0'
|
129
110
|
requirements: []
|
130
111
|
rubyforge_project:
|
131
|
-
rubygems_version: 2.
|
112
|
+
rubygems_version: 2.5.1
|
132
113
|
signing_key:
|
133
114
|
specification_version: 4
|
134
115
|
summary: A RubyGem for interfacing with the WebPurify API.
|
135
116
|
test_files:
|
136
|
-
- spec/fixtures/vcr/WebPurify_ImageFilters/imgaccount/returns_the_number_of_image_submissions_remaining.yml
|
137
|
-
- spec/fixtures/vcr/WebPurify_ImageFilters/imgcheck/returns_an_image_ID.yml
|
138
|
-
- spec/fixtures/vcr/WebPurify_ImageFilters/imgstatus/returns_the_status_of_image_moderation.yml
|
139
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/safe_text_returns_false.yml
|
140
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_returns_false_by_default.yml
|
141
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_when_URLs_are_prohibited_returns_true.yml
|
142
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_returns_false_by_default.yml
|
143
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_phone_number_when_phone_numbers_are_prohibited_returns_true.yml
|
144
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_returns_false_by_default.yml
|
145
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_when_emails_are_prohibited_returns_true.yml
|
146
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_profanity_returns_true.yml
|
147
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/no_profanities_returns_0.yml
|
148
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/one_profanity_returns_1.yml
|
149
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/check_count/two_profanities_returns_2.yml
|
150
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/replace/safe_text_returns_the_text_with_no_changes.yml
|
151
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/replace/text_with_profanity_returns_the_text_with_profanities_replaced_by_symbols.yml
|
152
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/no_profanities_returns_an_empty_array.yml
|
153
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/one_profanity_returns_an_array_with_one_profanity.yml
|
154
|
-
- spec/fixtures/vcr/WebPurify_TextFilters/return/two_profanities_returns_an_array_with_two_profanities.yml
|
155
117
|
- spec/spec_helper.rb
|
156
118
|
- spec/support/vcr.rb
|
157
119
|
- spec/web_purify/methods/image_filters_spec.rb
|
data/.gitignore
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
.bundle
|
4
|
-
.config
|
5
|
-
coverage
|
6
|
-
InstalledFiles
|
7
|
-
lib/bundler/man
|
8
|
-
pkg
|
9
|
-
rdoc
|
10
|
-
spec/reports
|
11
|
-
test/tmp
|
12
|
-
test/version_tmp
|
13
|
-
tmp
|
14
|
-
|
15
|
-
# YARD artifacts
|
16
|
-
.yardoc
|
17
|
-
_yardoc
|
18
|
-
doc/
|
19
|
-
|
20
|
-
test.rb
|
21
|
-
Gemfile.lock
|
22
|
-
.ruby-version
|
23
|
-
.ruby-gemset
|
24
|
-
spec/support/webpurify_api_key.rb
|
data/Gemfile
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://im-api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.imgaccount
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- im-api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Server:
|
24
|
-
- nginx
|
25
|
-
Date:
|
26
|
-
- Tue, 28 Apr 2015 21:55:34 GMT
|
27
|
-
Content-Type:
|
28
|
-
- 'application/json; charset: utf-8'
|
29
|
-
Transfer-Encoding:
|
30
|
-
- chunked
|
31
|
-
Connection:
|
32
|
-
- keep-alive
|
33
|
-
body:
|
34
|
-
encoding: UTF-8
|
35
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.imgaccount","format":"rest","remaining":"96","api_key":"<WEBPURIFY_API_KEY>"}}'
|
36
|
-
http_version:
|
37
|
-
recorded_at: Tue, 28 Apr 2015 21:55:04 GMT
|
38
|
-
recorded_with: VCR 2.9.3
|
@@ -1,38 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://im-api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&imgurl=http://www.example.com/test.jpg&method=webpurify.live.imgcheck
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- im-api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Server:
|
24
|
-
- nginx
|
25
|
-
Date:
|
26
|
-
- Tue, 28 Apr 2015 20:13:38 GMT
|
27
|
-
Content-Type:
|
28
|
-
- 'application/json; charset: utf-8'
|
29
|
-
Transfer-Encoding:
|
30
|
-
- chunked
|
31
|
-
Connection:
|
32
|
-
- keep-alive
|
33
|
-
body:
|
34
|
-
encoding: UTF-8
|
35
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.imgcheck","format":"rest","imgid":"a1c9800a4f4a27dd88055fa7529d5101","status":"pending","api_key":"<WEBPURIFY_API_KEY>"}}'
|
36
|
-
http_version:
|
37
|
-
recorded_at: Tue, 28 Apr 2015 20:13:08 GMT
|
38
|
-
recorded_with: VCR 2.9.3
|
data/spec/fixtures/vcr/WebPurify_ImageFilters/imgstatus/returns_the_status_of_image_moderation.yml
DELETED
@@ -1,74 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://im-api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&imgurl=http://www.example.com/test.jpg&method=webpurify.live.imgcheck
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- im-api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Server:
|
24
|
-
- nginx
|
25
|
-
Date:
|
26
|
-
- Tue, 28 Apr 2015 21:46:03 GMT
|
27
|
-
Content-Type:
|
28
|
-
- 'application/json; charset: utf-8'
|
29
|
-
Transfer-Encoding:
|
30
|
-
- chunked
|
31
|
-
Connection:
|
32
|
-
- keep-alive
|
33
|
-
body:
|
34
|
-
encoding: UTF-8
|
35
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.imgcheck","format":"rest","imgid":"d334790fbc44e4b1d95a4fdbeb2f9d6f","status":"pending","api_key":"<WEBPURIFY_API_KEY>"}}'
|
36
|
-
http_version:
|
37
|
-
recorded_at: Tue, 28 Apr 2015 21:45:33 GMT
|
38
|
-
- request:
|
39
|
-
method: get
|
40
|
-
uri: http://im-api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&imgid=d334790fbc44e4b1d95a4fdbeb2f9d6f&method=webpurify.live.imgstatus
|
41
|
-
body:
|
42
|
-
encoding: US-ASCII
|
43
|
-
string: ''
|
44
|
-
headers:
|
45
|
-
Accept-Encoding:
|
46
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
47
|
-
Accept:
|
48
|
-
- "*/*"
|
49
|
-
User-Agent:
|
50
|
-
- Ruby
|
51
|
-
Host:
|
52
|
-
- im-api1.webpurify.com
|
53
|
-
response:
|
54
|
-
status:
|
55
|
-
code: 200
|
56
|
-
message: OK
|
57
|
-
headers:
|
58
|
-
Server:
|
59
|
-
- nginx
|
60
|
-
Date:
|
61
|
-
- Tue, 28 Apr 2015 21:46:03 GMT
|
62
|
-
Content-Type:
|
63
|
-
- 'application/json; charset: utf-8'
|
64
|
-
Transfer-Encoding:
|
65
|
-
- chunked
|
66
|
-
Connection:
|
67
|
-
- keep-alive
|
68
|
-
body:
|
69
|
-
encoding: UTF-8
|
70
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.imgstatus","format":"rest","imgid":"d334790fbc44e4b1d95a4fdbeb2f9d6f","sdate":"2015-04-28
|
71
|
-
14:46:27","mdate":"","status":"pending","api_key":"<WEBPURIFY_API_KEY>"}}'
|
72
|
-
http_version:
|
73
|
-
recorded_at: Tue, 28 Apr 2015 21:45:33 GMT
|
74
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&text=safe%20text
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:29:03 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:27:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_a_URL_returns_false_by_default.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&text=text%20with%20www.example.com
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:31:53 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:31:03 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&slink=1&text=text%20with%20www.example.com
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:31:38 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"1","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:31:03 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&text=text%20with%20555-555-5555
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:35:37 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:34:25 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&sphone=1&text=text%20with%20555-555-5555
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:35:14 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"1","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:34:25 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
data/spec/fixtures/vcr/WebPurify_TextFilters/check/text_with_an_email_returns_false_by_default.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&text=text%20with%20name@example.com
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:30:40 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:29:50 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&semail=1&text=text%20with%20name@example.com
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:30:26 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"1","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:29:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.check&text=text%20with%20damn
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Mon, 27 Apr 2015 22:29:03 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '142'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.check","format":"rest","found":"1","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Mon, 27 Apr 2015 22:27:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.checkcount&text=safe%20text
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 14:33:26 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '147'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.checkcount","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 14:32:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.checkcount&text=text%20with%20damn
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 14:33:26 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '147'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.checkcount","format":"rest","found":"1","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 14:32:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.checkcount&text=text%20with%20damn%20and%20hell
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 14:34:04 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '147'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.checkcount","format":"rest","found":"2","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 14:32:51 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
data/spec/fixtures/vcr/WebPurify_TextFilters/replace/safe_text_returns_the_text_with_no_changes.yml
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.replace&replacesymbol=*&text=safe%20text
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 14:45:43 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '163'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.replace","format":"rest","found":"0","text":"safe
|
34
|
-
text","api_key":"<WEBPURIFY_API_KEY>"}}'
|
35
|
-
http_version:
|
36
|
-
recorded_at: Tue, 28 Apr 2015 14:44:53 GMT
|
37
|
-
recorded_with: VCR 2.9.3
|
@@ -1,37 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.replace&replacesymbol=*&text=text%20with%20damn%20and%20hell
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 15:04:27 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '177'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.replace","format":"rest","found":"2","text":"text
|
34
|
-
with **** and ****","api_key":"<WEBPURIFY_API_KEY>"}}'
|
35
|
-
http_version:
|
36
|
-
recorded_at: Tue, 28 Apr 2015 15:03:14 GMT
|
37
|
-
recorded_with: VCR 2.9.3
|
data/spec/fixtures/vcr/WebPurify_TextFilters/return/no_profanities_returns_an_empty_array.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.return&text=safe%20text
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 15:04:05 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '143'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.return","format":"rest","found":"0","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 15:03:29 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.return&text=text%20with%20damn
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 15:04:15 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '162'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.return","format":"rest","found":"1","expletive":"damn","api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 15:03:30 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|
@@ -1,36 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://api1.webpurify.com/services/rest/?api_key=<WEBPURIFY_API_KEY>&format=json&method=webpurify.live.return&text=text%20with%20damn%20and%20hell
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept-Encoding:
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
-
Accept:
|
13
|
-
- "*/*"
|
14
|
-
User-Agent:
|
15
|
-
- Ruby
|
16
|
-
Host:
|
17
|
-
- api1.webpurify.com
|
18
|
-
response:
|
19
|
-
status:
|
20
|
-
code: 200
|
21
|
-
message: OK
|
22
|
-
headers:
|
23
|
-
Content-Type:
|
24
|
-
- application/json; charset=utf-8
|
25
|
-
X-Powered-By:
|
26
|
-
- HPHP
|
27
|
-
Date:
|
28
|
-
- Tue, 28 Apr 2015 15:04:43 GMT
|
29
|
-
Content-Length:
|
30
|
-
- '171'
|
31
|
-
body:
|
32
|
-
encoding: UTF-8
|
33
|
-
string: '{"rsp":{"@attributes":{"stat":"ok"},"method":"webpurify.live.return","format":"rest","found":"2","expletive":["hell","damn"],"api_key":"<WEBPURIFY_API_KEY>"}}'
|
34
|
-
http_version:
|
35
|
-
recorded_at: Tue, 28 Apr 2015 15:03:30 GMT
|
36
|
-
recorded_with: VCR 2.9.3
|