fappu 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/Gemfile +14 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +64 -0
  6. data/Rakefile +6 -0
  7. data/fappu.gemspec +27 -0
  8. data/fixtures/cassettes/Fappu_Manga/The_manga_is_Right_now_while_cleaning_the_pool_/_download_url/returns_the_download_link.yml +53 -0
  9. data/fixtures/cassettes/Fappu_Manga/The_manga_is_Right_now_while_cleaning_the_pool_/_related/behaves_like_a_manga_collection/.yml +103 -0
  10. data/fixtures/cassettes/Fappu_Manga/The_manga_is_Right_now_while_cleaning_the_pool_/_related/behaves_like_a_manga_collection/returns_an_array_of_Mangas.yml +103 -0
  11. data/fixtures/cassettes/Fappu_Manga/The_manga_is_Right_now_while_cleaning_the_pool_/_related/should_include_related_manga_related_to_pool_sex.yml +103 -0
  12. data/fixtures/cassettes/Fappu_Tag/_list/.yml +273 -0
  13. data/fixtures/cassettes/Fappu_Tag/_list/should_return_an_array_of_tag_objects.yml +273 -0
  14. data/fixtures/cassettes/connection.yml +203 -0
  15. data/fixtures/cassettes/heck.yml +203 -0
  16. data/fixtures/cassettes/manga.yml +221 -0
  17. data/fixtures/cassettes/manga_read_pool_sex.yml +58 -0
  18. data/fixtures/cassettes/pool_cleaning_comments.yml +107 -0
  19. data/fixtures/cassettes/pool_cleaning_top_comments.yml +107 -0
  20. data/fixtures/cassettes/related_pool_sex_manga.yml +103 -0
  21. data/fixtures/cassettes/search_tagged_netorare.yml +96 -0
  22. data/fixtures/cassettes/search_term_sao.yml +98 -0
  23. data/index.html +0 -0
  24. data/lib/fappu.rb +11 -0
  25. data/lib/fappu/comment.rb +27 -0
  26. data/lib/fappu/connection.rb +21 -0
  27. data/lib/fappu/manga.rb +106 -0
  28. data/lib/fappu/page.rb +29 -0
  29. data/lib/fappu/search.rb +105 -0
  30. data/lib/fappu/tag.rb +33 -0
  31. data/lib/fappu/version.rb +3 -0
  32. data/spec/lib/fappu/connection_spec.rb +23 -0
  33. data/spec/lib/fappu/manga_spec.rb +49 -0
  34. data/spec/lib/fappu/page_spec.rb +18 -0
  35. data/spec/lib/fappu/search_spec.rb +149 -0
  36. data/spec/lib/fappu/tag_spec.rb +14 -0
  37. data/spec/lib/fappu_spec.rb +4 -0
  38. data/spec/shared_examples.rb +10 -0
  39. data/spec/spec_helper.rb +24 -0
  40. metadata +146 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 840fccf3b6ffd9354b26db2beceb38d4131f47e7
4
+ data.tar.gz: 17d4acf287d2ebdb9cd1221082490abb27f3e4c2
5
+ SHA512:
6
+ metadata.gz: 09bb52c5d28f4119aa442c2b6c5b549e146a2fced82378232bec3b2512a4f7f1fa853cafd515e1b7e0e5899576308ffa79fed68efe3bf3574dcc5871008e148f
7
+ data.tar.gz: 6bd92bf928d157714cd56b22a3005151d1810db3eae016d0c243220c1336ffee377988314a30f6625a03e0367a36b1528128383256782605a4c4d71dc6d0781f
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fappu.gemspec
4
+ gemspec
5
+
6
+ gem 'rspec', '~> 3.1.0.pre', git: 'git://github.com/rspec/rspec.git'
7
+ gem 'rspec-mocks', '~> 3.1.0.pre', git: 'git://github.com/rspec/rspec-mocks.git'
8
+ gem 'rspec-support', '~> 3.1.0.pre', git: 'git://github.com/rspec/rspec-support.git'
9
+ gem 'rspec-core', '~> 3.1.0.pre', git: 'git://github.com/rspec/rspec-core.git'
10
+ gem 'rspec-expectations', '~> 3.1.0.pre', git: 'git://github.com/rspec/rspec-expectations.git'
11
+ gem 'rspec-collection_matchers', git: 'git://github.com/rspec/rspec-collection_matchers.git'
12
+
13
+
14
+ gem 'pry'
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Buddy Magsipoc
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,64 @@
1
+ # Fappu
2
+
3
+ A gem that pulls data from api.fakku.net
4
+
5
+ Fakku's API docs can be found at [https://developers.fakku.net/documentation](https://developers.fakku.net/documentation)
6
+
7
+ ## Usage
8
+
9
+
10
+ ### Search
11
+
12
+ Search for mangas tagged by a specific `tagname`
13
+
14
+ Fappu::Search.tagged(tag) #ex. Fappu::Search.tagged('Netorare')
15
+
16
+ Search for Mangas by keywords
17
+
18
+ Fappu::Search.terms(search_terms) #ex. Fappu::Search.terms('Sword art online')
19
+
20
+ To get the latest manga
21
+
22
+ Fappu::Search.latest
23
+
24
+ To get a list of the most favorited manga
25
+
26
+ Fappu::Search.favorites
27
+
28
+ To get a list of the most popular/read manga
29
+
30
+ Fappu::Search.popular
31
+
32
+ And to get the list of the most popular manga
33
+
34
+ Fappu::manga.controversial
35
+
36
+
37
+ ### Manga
38
+
39
+ Aside from their attributes, Manga instances respond to the following
40
+
41
+ - top_comments
42
+ - download
43
+ - pages
44
+ - related
45
+
46
+ ### Tags
47
+
48
+ To get a list of available tags
49
+
50
+ Fappu::Tag.list
51
+
52
+ ### Contributing
53
+
54
+ 1. Fork it ( https://github.com/[my-github-username]/fappu/fork )
55
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
56
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
57
+ 4. Push to the branch (`git push origin my-new-feature`)
58
+ 5. Create a new Pull Request
59
+
60
+ ---
61
+
62
+ [twitter/keikun17](https://www.twitter.com/keikun17)
63
+
64
+ Released under the \*whatever\* license.
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new('spec')
6
+ task :default => :spec
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fappu/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "fappu"
8
+ spec.version = Fappu::VERSION
9
+ spec.authors = ["Buddy Magsipoc"]
10
+ spec.email = ["keikun17@gmail.com"]
11
+ spec.summary = "FAKKU ruby client"
12
+ spec.description = "Gem to access the FAKKU API"
13
+ spec.homepage = "https://github.com/keikun17/fappu"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ # spec.add_development_dependency "rspec", "~> 3.1.0.pre" ## Leave this
24
+ # commented out and use the one in Gemspec for now until 3.1 comes out
25
+ spec.add_development_dependency "vcr", "~> 2.9.0"
26
+ spec.add_development_dependency "webmock"
27
+ end
@@ -0,0 +1,53 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.fakku.net/manga/right-now-while-cleaning-the-pool/download
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
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Tue, 12 Aug 2014 06:44:55 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=d5798a7ad53cda8e8f7c56b4e9f2328501407825895026; expires=Mon, 23-Dec-2019
33
+ 23:50:00 GMT; path=/; domain=.fakku.net; HttpOnly
34
+ Access-Control-Allow-Origin:
35
+ - '*'
36
+ X-Varnish:
37
+ - '900662907'
38
+ Age:
39
+ - '0'
40
+ Via:
41
+ - 1.1 varnish
42
+ X-Cache:
43
+ - MISS
44
+ Dicks:
45
+ - PH
46
+ Cf-Ray:
47
+ - 158ab503e4330bb1-HKG
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"downloads":[{"download_type":"ss","download_url":"http:\/\/www.sendspace.com\/file\/d5gd5v","download_info":null,"download_count":0,"download_time":1398732730,"download_poster":"Jacob","download_poster_url":"http:\/\/www.fakku.net\/users\/jacob"}],"total":1}'
51
+ http_version:
52
+ recorded_at: Tue, 12 Aug 2014 06:44:54 GMT
53
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,103 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.fakku.net/manga/right-now-while-cleaning-the-pool/related
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
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Tue, 12 Aug 2014 07:24:39 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=d75dbc18bd4ab62f508b798ec2995dbc21407828279220; expires=Mon, 23-Dec-2019
33
+ 23:50:00 GMT; path=/; domain=.fakku.net; HttpOnly
34
+ Access-Control-Allow-Origin:
35
+ - '*'
36
+ X-Varnish:
37
+ - 901060252 901059759
38
+ Age:
39
+ - '2'
40
+ Via:
41
+ - 1.1 varnish
42
+ X-Cache:
43
+ - HIT
44
+ Dicks:
45
+ - PH
46
+ Cf-Ray:
47
+ - 158aef392d7a0bc3-HKG
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"related":[{"content_name":"Before the Pool Opens","content_url":"http:\/\/www.fakku.net\/manga\/before-the-pool-opens-english","content_description":"While
51
+ cleaning the school pool, Rio teases her friend Shunpei a bit too much.","content_language":"english","content_category":"manga","content_date":1322693342,"content_filesize":11,"content_favorites":1963,"content_comments":59,"content_pages":24,"content_poster":"Kizlan","content_poster_url":"http:\/\/www.fakku.net\/users\/kizlan","content_tags":[{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Kizlan","attribute_link":"\/translators\/kizlan"}],"content_series":[{"attribute":"Original
52
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Sahashi
53
+ Renya","attribute_link":"\/artists\/sahashi-renya"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/018.thumb.jpg"}},{"content_name":"A
54
+ Gargoyle at the Treasure Chest","content_url":"http:\/\/www.fakku.net\/manga\/a-gargoyle-at-the-treasure-chest-english","content_description":"A
55
+ boy treasure hunting in a dungeon is lost and discovers a treasure but the
56
+ chest is guarded by a gargoyle, well one thing of course leads to another.","content_language":"english","content_category":"manga","content_date":1368929794,"content_filesize":17,"content_favorites":3048,"content_comments":106,"content_pages":19,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Dark
57
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Monster Girl","attribute_link":"\/tags\/monstergirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
58
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
59
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Horitomo","attribute_link":"\/artists\/horitomo"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/003.thumb.jpg"}},{"content_name":"Arterna
60
+ 01","content_url":"http:\/\/www.fakku.net\/doujinshi\/arterna-01-english","content_description":"No
61
+ description has been written.","content_language":"english","content_category":"doujinshi","content_date":1234464425,"content_filesize":4,"content_favorites":225,"content_comments":27,"content_pages":27,"content_poster":"Anonymous","content_poster_url":"http:\/\/www.fakku.net\/users\/anonymous","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Pettanko","attribute_link":"\/tags\/pettanko"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"FAKKU","attribute_link":"\/translators\/fakku"}],"content_series":[{"attribute":"The
62
+ Melancholy of Haruhi Suzumiya","attribute_link":"\/series\/the-melancholy-of-haruhi-suzumiya"}],"content_artists":[{"attribute":"Hapoi-Dokoro","attribute_link":"\/artists\/hapoi-dokoro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/018.thumb.jpg"}},{"content_name":"The
63
+ Ghost Behind My Back? Little Monster''s Counterattack Part 2 (CH. 7)","content_url":"http:\/\/www.fakku.net\/manga\/the-ghost-behind-my-back-little-monsters-counterattack-part-2-ch-7-english","content_description":"The
64
+ vacation continues and Mayu wants in on the \"fun,\" too...","content_language":"english","content_category":"manga","content_date":1394818331,"content_filesize":36064200,"content_favorites":779,"content_comments":53,"content_pages":27,"content_poster":"LustyLady00","content_poster_url":"http:\/\/www.fakku.net\/users\/lustylady00","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Incest","attribute_link":"\/tags\/incest"},{"attribute":"Random","attribute_link":"\/tags\/random"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
65
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
66
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Katsura
67
+ Yoshihiro","attribute_link":"\/artists\/katsura-yoshihiro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/002.thumb.jpg"}},{"content_name":"I''ll
68
+ let you do it on the pool-side","content_url":"http:\/\/www.fakku.net\/manga\/ill-let-you-do-it-on-the-pool-side-english","content_description":"One
69
+ door closes, another one opens! ;-)<br>Visit us at <a href=\"http:\/\/mumeitl.com\"
70
+ target=\"_blank\">MumeiTL.com<\/a>!<br>\r\nDL-Link: <a href=\"http:\/\/depositfiles.com\/files\/difak2m3b\"
71
+ target=\"_blank\">http:\/\/depositfiles.com\/files\/difak2m3b<\/a>","content_language":"english","content_category":"manga","content_date":1351697552,"content_filesize":5,"content_favorites":2024,"content_comments":52,"content_pages":13,"content_poster":"mrmuk","content_poster_url":"http:\/\/www.fakku.net\/users\/mrmuk","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Mumei
72
+ Translations","attribute_link":"\/translators\/mumei-translations"}],"content_series":[{"attribute":"Original
73
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Shinbayagi","attribute_link":"\/artists\/shinbayagi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Summer
74
+ Time Sexy Girl","content_url":"http:\/\/www.fakku.net\/doujinshi\/summer-time-sexy-girl-english","content_description":"The
75
+ first part is full color and features consensual sex. The second part features
76
+ schoolgirl cosplay and an old man raping Azusa.","content_language":"english","content_category":"doujinshi","content_date":1253664298,"content_filesize":12,"content_favorites":933,"content_comments":42,"content_pages":23,"content_poster":"Shadow","content_poster_url":"http:\/\/www.fakku.net\/users\/shadow","content_tags":[{"attribute":"Color","attribute_link":"\/tags\/color"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"redCoMet","attribute_link":"\/translators\/redcomet"}],"content_series":[{"attribute":"The
77
+ iDOLM@STER","attribute_link":"\/series\/the-idolmaster"}],"content_artists":[{"attribute":"TakayaKi","attribute_link":"\/artists\/takayaki"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/007.thumb.jpg"}},{"content_name":"Osanana
78
+ Chichi","content_url":"http:\/\/www.fakku.net\/manga\/osanana-chichi-english","content_description":"Child
79
+ hood who have grown up together, one friend happen to grow faster than expected,
80
+ how will the other friend deal with it.","content_language":"english","content_category":"manga","content_date":1342938019,"content_filesize":10,"content_favorites":2507,"content_comments":95,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"},{"attribute":"Osananajimi","attribute_link":"\/tags\/osananajimi"}],"content_translators":[{"attribute":"The
81
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
82
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Bosshi","attribute_link":"\/artists\/bosshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Two
83
+ Piecies","content_url":"http:\/\/www.fakku.net\/manga\/two-piecies-english","content_description":"Parents
84
+ remarry, boy and girl become step brother and step sister, they dont like
85
+ the idea and decide to not be brother and sister.","content_language":"english","content_category":"manga","content_date":1348624472,"content_filesize":11,"content_favorites":3005,"content_comments":72,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Random","attribute_link":"\/tags\/random"}],"content_translators":[{"attribute":"The
86
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
87
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Takemasa
88
+ Takeshi","attribute_link":"\/artists\/takemasa-takeshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/013.thumb.jpg"}},{"content_name":"I''ll
89
+ Make You a Miko","content_url":"http:\/\/www.fakku.net\/manga\/ill-make-you-a-miko-english","content_description":"Class
90
+ rep decides she want to be a miko shrine maiden over winter break and one
91
+ thing leads to another and her and the son of the shrine make winter break
92
+ memories","content_language":"english","content_category":"manga","content_date":1356421257,"content_filesize":8,"content_favorites":1167,"content_comments":33,"content_pages":17,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"}],"content_translators":[{"attribute":"The
93
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
94
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Miyakawa
95
+ Hajime","attribute_link":"\/artists\/miyakawa-hajime"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Girls
96
+ Lacrosse Club Chapter 4","content_url":"http:\/\/www.fakku.net\/manga\/girls-lacrosse-club-chapter-4-english","content_description":"We
97
+ got Tan Girl now, commissioned by Starfox","content_language":"english","content_category":"manga","content_date":1373952196,"content_filesize":32073200,"content_favorites":2754,"content_comments":144,"content_pages":35,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Paizuri","attribute_link":"\/tags\/paizuri"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Teacher","attribute_link":"\/tags\/teacher"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Dark
98
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Tanlines","attribute_link":"\/tags\/tanlines"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
99
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Girls
100
+ Lacrosse Club","attribute_link":"\/series\/girls-lacrosse-club"}],"content_artists":[{"attribute":"Distance","attribute_link":"\/artists\/distance"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/006.thumb.jpg"}}],"total":11459,"page":1,"pages":1146}'
101
+ http_version:
102
+ recorded_at: Tue, 12 Aug 2014 07:24:37 GMT
103
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,103 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.fakku.net/manga/right-now-while-cleaning-the-pool/related
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
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Tue, 12 Aug 2014 07:24:42 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=d80eb6662f3d2a9621c4c4ed9e838fd691407828281636; expires=Mon, 23-Dec-2019
33
+ 23:50:00 GMT; path=/; domain=.fakku.net; HttpOnly
34
+ Access-Control-Allow-Origin:
35
+ - '*'
36
+ X-Varnish:
37
+ - 901060694 901059759
38
+ Age:
39
+ - '5'
40
+ Via:
41
+ - 1.1 varnish
42
+ X-Cache:
43
+ - HIT
44
+ Dicks:
45
+ - PH
46
+ Cf-Ray:
47
+ - 158aef483e9d0bb1-HKG
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"related":[{"content_name":"Before the Pool Opens","content_url":"http:\/\/www.fakku.net\/manga\/before-the-pool-opens-english","content_description":"While
51
+ cleaning the school pool, Rio teases her friend Shunpei a bit too much.","content_language":"english","content_category":"manga","content_date":1322693342,"content_filesize":11,"content_favorites":1963,"content_comments":59,"content_pages":24,"content_poster":"Kizlan","content_poster_url":"http:\/\/www.fakku.net\/users\/kizlan","content_tags":[{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Kizlan","attribute_link":"\/translators\/kizlan"}],"content_series":[{"attribute":"Original
52
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Sahashi
53
+ Renya","attribute_link":"\/artists\/sahashi-renya"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/018.thumb.jpg"}},{"content_name":"A
54
+ Gargoyle at the Treasure Chest","content_url":"http:\/\/www.fakku.net\/manga\/a-gargoyle-at-the-treasure-chest-english","content_description":"A
55
+ boy treasure hunting in a dungeon is lost and discovers a treasure but the
56
+ chest is guarded by a gargoyle, well one thing of course leads to another.","content_language":"english","content_category":"manga","content_date":1368929794,"content_filesize":17,"content_favorites":3048,"content_comments":106,"content_pages":19,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Dark
57
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Monster Girl","attribute_link":"\/tags\/monstergirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
58
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
59
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Horitomo","attribute_link":"\/artists\/horitomo"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/003.thumb.jpg"}},{"content_name":"Arterna
60
+ 01","content_url":"http:\/\/www.fakku.net\/doujinshi\/arterna-01-english","content_description":"No
61
+ description has been written.","content_language":"english","content_category":"doujinshi","content_date":1234464425,"content_filesize":4,"content_favorites":225,"content_comments":27,"content_pages":27,"content_poster":"Anonymous","content_poster_url":"http:\/\/www.fakku.net\/users\/anonymous","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Pettanko","attribute_link":"\/tags\/pettanko"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"FAKKU","attribute_link":"\/translators\/fakku"}],"content_series":[{"attribute":"The
62
+ Melancholy of Haruhi Suzumiya","attribute_link":"\/series\/the-melancholy-of-haruhi-suzumiya"}],"content_artists":[{"attribute":"Hapoi-Dokoro","attribute_link":"\/artists\/hapoi-dokoro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/018.thumb.jpg"}},{"content_name":"The
63
+ Ghost Behind My Back? Little Monster''s Counterattack Part 2 (CH. 7)","content_url":"http:\/\/www.fakku.net\/manga\/the-ghost-behind-my-back-little-monsters-counterattack-part-2-ch-7-english","content_description":"The
64
+ vacation continues and Mayu wants in on the \"fun,\" too...","content_language":"english","content_category":"manga","content_date":1394818331,"content_filesize":36064200,"content_favorites":779,"content_comments":53,"content_pages":27,"content_poster":"LustyLady00","content_poster_url":"http:\/\/www.fakku.net\/users\/lustylady00","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Incest","attribute_link":"\/tags\/incest"},{"attribute":"Random","attribute_link":"\/tags\/random"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
65
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
66
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Katsura
67
+ Yoshihiro","attribute_link":"\/artists\/katsura-yoshihiro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/002.thumb.jpg"}},{"content_name":"I''ll
68
+ let you do it on the pool-side","content_url":"http:\/\/www.fakku.net\/manga\/ill-let-you-do-it-on-the-pool-side-english","content_description":"One
69
+ door closes, another one opens! ;-)<br>Visit us at <a href=\"http:\/\/mumeitl.com\"
70
+ target=\"_blank\">MumeiTL.com<\/a>!<br>\r\nDL-Link: <a href=\"http:\/\/depositfiles.com\/files\/difak2m3b\"
71
+ target=\"_blank\">http:\/\/depositfiles.com\/files\/difak2m3b<\/a>","content_language":"english","content_category":"manga","content_date":1351697552,"content_filesize":5,"content_favorites":2024,"content_comments":52,"content_pages":13,"content_poster":"mrmuk","content_poster_url":"http:\/\/www.fakku.net\/users\/mrmuk","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Mumei
72
+ Translations","attribute_link":"\/translators\/mumei-translations"}],"content_series":[{"attribute":"Original
73
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Shinbayagi","attribute_link":"\/artists\/shinbayagi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Summer
74
+ Time Sexy Girl","content_url":"http:\/\/www.fakku.net\/doujinshi\/summer-time-sexy-girl-english","content_description":"The
75
+ first part is full color and features consensual sex. The second part features
76
+ schoolgirl cosplay and an old man raping Azusa.","content_language":"english","content_category":"doujinshi","content_date":1253664298,"content_filesize":12,"content_favorites":933,"content_comments":42,"content_pages":23,"content_poster":"Shadow","content_poster_url":"http:\/\/www.fakku.net\/users\/shadow","content_tags":[{"attribute":"Color","attribute_link":"\/tags\/color"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"redCoMet","attribute_link":"\/translators\/redcomet"}],"content_series":[{"attribute":"The
77
+ iDOLM@STER","attribute_link":"\/series\/the-idolmaster"}],"content_artists":[{"attribute":"TakayaKi","attribute_link":"\/artists\/takayaki"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/007.thumb.jpg"}},{"content_name":"Osanana
78
+ Chichi","content_url":"http:\/\/www.fakku.net\/manga\/osanana-chichi-english","content_description":"Child
79
+ hood who have grown up together, one friend happen to grow faster than expected,
80
+ how will the other friend deal with it.","content_language":"english","content_category":"manga","content_date":1342938019,"content_filesize":10,"content_favorites":2507,"content_comments":95,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"},{"attribute":"Osananajimi","attribute_link":"\/tags\/osananajimi"}],"content_translators":[{"attribute":"The
81
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
82
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Bosshi","attribute_link":"\/artists\/bosshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Two
83
+ Piecies","content_url":"http:\/\/www.fakku.net\/manga\/two-piecies-english","content_description":"Parents
84
+ remarry, boy and girl become step brother and step sister, they dont like
85
+ the idea and decide to not be brother and sister.","content_language":"english","content_category":"manga","content_date":1348624472,"content_filesize":11,"content_favorites":3005,"content_comments":72,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Random","attribute_link":"\/tags\/random"}],"content_translators":[{"attribute":"The
86
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
87
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Takemasa
88
+ Takeshi","attribute_link":"\/artists\/takemasa-takeshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/013.thumb.jpg"}},{"content_name":"I''ll
89
+ Make You a Miko","content_url":"http:\/\/www.fakku.net\/manga\/ill-make-you-a-miko-english","content_description":"Class
90
+ rep decides she want to be a miko shrine maiden over winter break and one
91
+ thing leads to another and her and the son of the shrine make winter break
92
+ memories","content_language":"english","content_category":"manga","content_date":1356421257,"content_filesize":8,"content_favorites":1167,"content_comments":33,"content_pages":17,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"}],"content_translators":[{"attribute":"The
93
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
94
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Miyakawa
95
+ Hajime","attribute_link":"\/artists\/miyakawa-hajime"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Girls
96
+ Lacrosse Club Chapter 4","content_url":"http:\/\/www.fakku.net\/manga\/girls-lacrosse-club-chapter-4-english","content_description":"We
97
+ got Tan Girl now, commissioned by Starfox","content_language":"english","content_category":"manga","content_date":1373952196,"content_filesize":32073200,"content_favorites":2754,"content_comments":144,"content_pages":35,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Paizuri","attribute_link":"\/tags\/paizuri"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Teacher","attribute_link":"\/tags\/teacher"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Dark
98
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Tanlines","attribute_link":"\/tags\/tanlines"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
99
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Girls
100
+ Lacrosse Club","attribute_link":"\/series\/girls-lacrosse-club"}],"content_artists":[{"attribute":"Distance","attribute_link":"\/artists\/distance"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/006.thumb.jpg"}}],"total":11459,"page":1,"pages":1146}'
101
+ http_version:
102
+ recorded_at: Tue, 12 Aug 2014 07:24:40 GMT
103
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,103 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.fakku.net/manga/right-now-while-cleaning-the-pool/related
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
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - cloudflare-nginx
23
+ Date:
24
+ - Tue, 12 Aug 2014 07:24:37 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - __cfduid=d933b8d4758952a1a97cead4a89f2900d1407828277019; expires=Mon, 23-Dec-2019
33
+ 23:50:00 GMT; path=/; domain=.fakku.net; HttpOnly
34
+ Access-Control-Allow-Origin:
35
+ - '*'
36
+ X-Varnish:
37
+ - '901059759'
38
+ Age:
39
+ - '0'
40
+ Via:
41
+ - 1.1 varnish
42
+ X-Cache:
43
+ - MISS
44
+ Dicks:
45
+ - PH
46
+ Cf-Ray:
47
+ - 158aef2b54a10ba5-HKG
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"related":[{"content_name":"Before the Pool Opens","content_url":"http:\/\/www.fakku.net\/manga\/before-the-pool-opens-english","content_description":"While
51
+ cleaning the school pool, Rio teases her friend Shunpei a bit too much.","content_language":"english","content_category":"manga","content_date":1322693342,"content_filesize":11,"content_favorites":1963,"content_comments":59,"content_pages":24,"content_poster":"Kizlan","content_poster_url":"http:\/\/www.fakku.net\/users\/kizlan","content_tags":[{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Kizlan","attribute_link":"\/translators\/kizlan"}],"content_series":[{"attribute":"Original
52
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Sahashi
53
+ Renya","attribute_link":"\/artists\/sahashi-renya"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/b\/beforethepoolopens_e\/thumbs\/018.thumb.jpg"}},{"content_name":"A
54
+ Gargoyle at the Treasure Chest","content_url":"http:\/\/www.fakku.net\/manga\/a-gargoyle-at-the-treasure-chest-english","content_description":"A
55
+ boy treasure hunting in a dungeon is lost and discovers a treasure but the
56
+ chest is guarded by a gargoyle, well one thing of course leads to another.","content_language":"english","content_category":"manga","content_date":1368929794,"content_filesize":17,"content_favorites":3048,"content_comments":106,"content_pages":19,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Dark
57
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Monster Girl","attribute_link":"\/tags\/monstergirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
58
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
59
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Horitomo","attribute_link":"\/artists\/horitomo"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/agargoyleatthetreasurechest_e\/thumbs\/003.thumb.jpg"}},{"content_name":"Arterna
60
+ 01","content_url":"http:\/\/www.fakku.net\/doujinshi\/arterna-01-english","content_description":"No
61
+ description has been written.","content_language":"english","content_category":"doujinshi","content_date":1234464425,"content_filesize":4,"content_favorites":225,"content_comments":27,"content_pages":27,"content_poster":"Anonymous","content_poster_url":"http:\/\/www.fakku.net\/users\/anonymous","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Pettanko","attribute_link":"\/tags\/pettanko"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"FAKKU","attribute_link":"\/translators\/fakku"}],"content_series":[{"attribute":"The
62
+ Melancholy of Haruhi Suzumiya","attribute_link":"\/series\/the-melancholy-of-haruhi-suzumiya"}],"content_artists":[{"attribute":"Hapoi-Dokoro","attribute_link":"\/artists\/hapoi-dokoro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/a\/arterna_e\/thumbs\/018.thumb.jpg"}},{"content_name":"The
63
+ Ghost Behind My Back? Little Monster''s Counterattack Part 2 (CH. 7)","content_url":"http:\/\/www.fakku.net\/manga\/the-ghost-behind-my-back-little-monsters-counterattack-part-2-ch-7-english","content_description":"The
64
+ vacation continues and Mayu wants in on the \"fun,\" too...","content_language":"english","content_category":"manga","content_date":1394818331,"content_filesize":36064200,"content_favorites":779,"content_comments":53,"content_pages":27,"content_poster":"LustyLady00","content_poster_url":"http:\/\/www.fakku.net\/users\/lustylady00","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Incest","attribute_link":"\/tags\/incest"},{"attribute":"Random","attribute_link":"\/tags\/random"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
65
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
66
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Katsura
67
+ Yoshihiro","attribute_link":"\/artists\/katsura-yoshihiro"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/[Katsura_Yoshihiro]_Original_Work_-_The_Ghost_Behind_My_Back_Little_Monsters_Counterattack_Part_2_CH._7_\/thumbs\/002.thumb.jpg"}},{"content_name":"I''ll
68
+ let you do it on the pool-side","content_url":"http:\/\/www.fakku.net\/manga\/ill-let-you-do-it-on-the-pool-side-english","content_description":"One
69
+ door closes, another one opens! ;-)<br>Visit us at <a href=\"http:\/\/mumeitl.com\"
70
+ target=\"_blank\">MumeiTL.com<\/a>!<br>\r\nDL-Link: <a href=\"http:\/\/depositfiles.com\/files\/difak2m3b\"
71
+ target=\"_blank\">http:\/\/depositfiles.com\/files\/difak2m3b<\/a>","content_language":"english","content_category":"manga","content_date":1351697552,"content_filesize":5,"content_favorites":2024,"content_comments":52,"content_pages":13,"content_poster":"mrmuk","content_poster_url":"http:\/\/www.fakku.net\/users\/mrmuk","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"Mumei
72
+ Translations","attribute_link":"\/translators\/mumei-translations"}],"content_series":[{"attribute":"Original
73
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Shinbayagi","attribute_link":"\/artists\/shinbayagi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illletyoudoitonthepoolside_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Summer
74
+ Time Sexy Girl","content_url":"http:\/\/www.fakku.net\/doujinshi\/summer-time-sexy-girl-english","content_description":"The
75
+ first part is full color and features consensual sex. The second part features
76
+ schoolgirl cosplay and an old man raping Azusa.","content_language":"english","content_category":"doujinshi","content_date":1253664298,"content_filesize":12,"content_favorites":933,"content_comments":42,"content_pages":23,"content_poster":"Shadow","content_poster_url":"http:\/\/www.fakku.net\/users\/shadow","content_tags":[{"attribute":"Color","attribute_link":"\/tags\/color"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Mizugi","attribute_link":"\/tags\/mizugi"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Forced","attribute_link":"\/tags\/forced"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"redCoMet","attribute_link":"\/translators\/redcomet"}],"content_series":[{"attribute":"The
77
+ iDOLM@STER","attribute_link":"\/series\/the-idolmaster"}],"content_artists":[{"attribute":"TakayaKi","attribute_link":"\/artists\/takayaki"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/s\/summertimesexygirl_e\/thumbs\/007.thumb.jpg"}},{"content_name":"Osanana
78
+ Chichi","content_url":"http:\/\/www.fakku.net\/manga\/osanana-chichi-english","content_description":"Child
79
+ hood who have grown up together, one friend happen to grow faster than expected,
80
+ how will the other friend deal with it.","content_language":"english","content_category":"manga","content_date":1342938019,"content_filesize":10,"content_favorites":2507,"content_comments":95,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"},{"attribute":"Osananajimi","attribute_link":"\/tags\/osananajimi"}],"content_translators":[{"attribute":"The
81
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
82
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Bosshi","attribute_link":"\/artists\/bosshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/o\/osananachichi_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Two
83
+ Piecies","content_url":"http:\/\/www.fakku.net\/manga\/two-piecies-english","content_description":"Parents
84
+ remarry, boy and girl become step brother and step sister, they dont like
85
+ the idea and decide to not be brother and sister.","content_language":"english","content_category":"manga","content_date":1348624472,"content_filesize":11,"content_favorites":3005,"content_comments":72,"content_pages":21,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Random","attribute_link":"\/tags\/random"}],"content_translators":[{"attribute":"The
86
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
87
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Takemasa
88
+ Takeshi","attribute_link":"\/artists\/takemasa-takeshi"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/t\/twopiecies_e\/thumbs\/013.thumb.jpg"}},{"content_name":"I''ll
89
+ Make You a Miko","content_url":"http:\/\/www.fakku.net\/manga\/ill-make-you-a-miko-english","content_description":"Class
90
+ rep decides she want to be a miko shrine maiden over winter break and one
91
+ thing leads to another and her and the son of the shrine make winter break
92
+ memories","content_language":"english","content_category":"manga","content_date":1356421257,"content_filesize":8,"content_favorites":1167,"content_comments":33,"content_pages":17,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"}],"content_translators":[{"attribute":"The
93
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Original
94
+ Work","attribute_link":"\/series\/original-work"}],"content_artists":[{"attribute":"Miyakawa
95
+ Hajime","attribute_link":"\/artists\/miyakawa-hajime"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/001.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/i\/illmakeyouamiko_e\/thumbs\/010.thumb.jpg"}},{"content_name":"Girls
96
+ Lacrosse Club Chapter 4","content_url":"http:\/\/www.fakku.net\/manga\/girls-lacrosse-club-chapter-4-english","content_description":"We
97
+ got Tan Girl now, commissioned by Starfox","content_language":"english","content_category":"manga","content_date":1373952196,"content_filesize":32073200,"content_favorites":2754,"content_comments":144,"content_pages":35,"content_poster":"njmanga","content_poster_url":"http:\/\/www.fakku.net\/users\/njmanga","content_tags":[{"attribute":"Paizuri","attribute_link":"\/tags\/paizuri"},{"attribute":"Vanilla","attribute_link":"\/tags\/vanilla"},{"attribute":"Oral","attribute_link":"\/tags\/oral"},{"attribute":"Teacher","attribute_link":"\/tags\/teacher"},{"attribute":"Oppai","attribute_link":"\/tags\/oppai"},{"attribute":"Schoolgirl","attribute_link":"\/tags\/schoolgirl"},{"attribute":"Dark
98
+ Skin","attribute_link":"\/tags\/darkskin"},{"attribute":"Tanlines","attribute_link":"\/tags\/tanlines"},{"attribute":"Hentai","attribute_link":"\/tags\/hentai"}],"content_translators":[{"attribute":"The
99
+ Lusty Lady Project","attribute_link":"\/translators\/the-lusty-lady-project"}],"content_series":[{"attribute":"Girls
100
+ Lacrosse Club","attribute_link":"\/series\/girls-lacrosse-club"}],"content_artists":[{"attribute":"Distance","attribute_link":"\/artists\/distance"}],"content_images":{"cover":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/002.thumb.jpg","sample":"https:\/\/t.fakku.net\/images\/manga\/g\/Girls_Lacrosse_Club_Chapter_4_English\/thumbs\/006.thumb.jpg"}}],"total":11459,"page":1,"pages":1146}'
101
+ http_version:
102
+ recorded_at: Tue, 12 Aug 2014 07:24:35 GMT
103
+ recorded_with: VCR 2.9.2