opendmm 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0eb9843e091ce7fb7ac11d92dd4d57d2823eeabb
4
- data.tar.gz: d635a34a6ade9aacc2adfa6c48ec88ffc606ab71
3
+ metadata.gz: 3b3500b9d2c32fd74c26ce6e9c87caf410b2f2ca
4
+ data.tar.gz: 2dec4dad44e5695542ad4981ea80f542e6605364
5
5
  SHA512:
6
- metadata.gz: 4f1a6585dbff1467afe45e93419e3181969dc914a93bdc47c5406b36bb9237b1e51696d12a77a4938d83f31c69eb415546e71092e9e052a010fb9aca13d4e399
7
- data.tar.gz: d366e125b29588550a79a2e675d5b4455a4a97a6828966885ca8a495a79069addd5b93d0d11b22143f43c4c08ce543ad73005c900de89b96cf9798c343a4d801
6
+ metadata.gz: f20063888a1083d27a92ed548391100d6188e2156d8bbbb5e2c098d719a7051e292c7b4a3bd56e9ea4cdde0d5c8c54ba1d07d3dffa17f522b0d7ba4fc77ba331
7
+ data.tar.gz: caf456dc0299ba462d88aacfd654ed4d4d32a43d66a136360f82f90d8c40f997fb687c33b0ac062342b082601feb97ba242c747af1c190d09760acb616eea9e0
data/Rakefile CHANGED
@@ -53,7 +53,7 @@ namespace :maker do
53
53
  base_uri 'example.com'
54
54
 
55
55
  register_product(
56
- /^(EXAM)-?(\d{3})$/i,
56
+ /^(EXAM)-?(\\d{3})$/i,
57
57
  '#\{$1.downcase\}#\{$2\}',
58
58
  )
59
59
 
@@ -62,8 +62,6 @@ private
62
62
  def self.parse_product_html(html)
63
63
  {
64
64
  # actresses: Array
65
- # actress_types: Array
66
- # boobs: String
67
65
  # brand: String
68
66
  # categories: Array
69
67
  # code: String
@@ -83,7 +81,6 @@ def self.parse_product_html(html)
83
81
  # theme: String
84
82
  # thumbnail_image: String
85
83
  # title: String
86
- # __extra: Hash
87
84
  }
88
85
  end
89
86
  CODE
@@ -22,13 +22,14 @@ module OpenDMM
22
22
  # page: String
23
23
  # release_date: String
24
24
  # sample_images: Array
25
+ # scatology: Array
25
26
  # scenes: Array
26
27
  # series: String
27
28
  # subtitle: String
28
29
  # theme: String
29
30
  # thumbnail_image: String
30
31
  # title: String
31
- # __extra: Hash
32
+ # transsexual: Array
32
33
  # }
33
34
 
34
35
  def self.search(name, debug = false)
@@ -12,8 +12,8 @@ def self.parse_product_html(html)
12
12
  {
13
13
  actresses: specs['出演女優'].split,
14
14
  cover_image: html.at_css('div#works_pake_box a#pake')['href'],
15
- directors: specs['監督'].split,
16
15
  description: html.css('p.works_txt').text,
16
+ directors: specs['監督'].split,
17
17
  genres: specs['ジャンル'].split,
18
18
  label: specs['レーベル'],
19
19
  maker: 'Attackers',
@@ -0,0 +1,56 @@
1
+ base_uri 'd-o-c.biz'
2
+
3
+ register_product(
4
+ /^(CRS|FTN|GDW|INF|LNS|NLF|NRS|RDT|RTP|ULT|VVP|YUM)-?(\d{3})$/i,
5
+ '/catalog/#{$1.downcase}-#{$2}.html',
6
+ )
7
+
8
+ private
9
+
10
+ def self.parse_product_html(html)
11
+ specs = parse_specs(html)
12
+ {
13
+ actresses: parse_actresses(specs['女優']),
14
+ # brand: String
15
+ # categories: Array
16
+ # code: String
17
+ cover_image: html.at_css('#single_box > div.entry-content > img')['src'],
18
+ description: specs['商品説明'],
19
+ # directors: Array
20
+ genres: specs['ジャンル'].split('・'),
21
+ label: specs['レーベル'],
22
+ maker: 'DOC',
23
+ movie_length: specs['収録'],
24
+ # page: String
25
+ release_date: specs['発売日'],
26
+ # sample_images: Array
27
+ # scenes: Array
28
+ series: specs['シリーズ'],
29
+ # subtitle: String
30
+ # theme: String
31
+ thumbnail_image: html.at_css('#single_box > div.entry-content > img')['src'],
32
+ title: html.css('#single_box > h1').text,
33
+ }
34
+ end
35
+
36
+ def self.parse_actresses(str)
37
+ names = []
38
+ str.split.each do |piece|
39
+ if piece.length <=3 && names.present? && names[-1].length <= 3
40
+ names[-1] += piece
41
+ else
42
+ names << piece
43
+ end
44
+ end
45
+ names
46
+ end
47
+
48
+ def self.parse_specs(html)
49
+ root = html.css('#single_box > div.entry-content > div')
50
+ groups = root.children.to_a.split do |delimeter|
51
+ delimeter.name == 'br'
52
+ end.map do |group|
53
+ group.map(&:text).join
54
+ end
55
+ Utils.hash_by_split(groups)
56
+ end
@@ -20,12 +20,10 @@ def self.parse_product_html(html)
20
20
  movie_length: specs['収録時間'].text,
21
21
  release_date: specs['発売日'].text,
22
22
  sample_images: html.css('#sample-pic > li > a > img').map { |img| img['src'].gsub(/js(?=-\d+\.jpg$)/, "jl") },
23
+ scatology: specs['スカトロ'].css('a').map(&:text),
23
24
  series: specs['シリーズ'].text.remove(':'),
24
25
  thumbnail_image: html.at_css('div#container-detail > div.pkg-data > div.pkg > a > img')['src'],
25
26
  title: html.xpath('//*[@id="container-detail"]/p[1]').text,
26
- __extra: {
27
- transsexual: specs['ニューハーフ'].css('a').map(&:text),
28
- scatology: specs['スカトロ'].css('a').map(&:text),
29
- },
27
+ transsexual: specs['ニューハーフ'].css('a').map(&:text),
30
28
  }
31
29
  end
@@ -22,7 +22,6 @@ def self.parse_product_html(html)
22
22
  }
23
23
  end
24
24
 
25
- private
26
25
  def self.parse_specs(html)
27
26
  root = html.css('#works > div > div.works-box > div.left-box > dl > dd > p')
28
27
  groups = root.children.to_a.split do |delimeter|
@@ -36,6 +36,5 @@ def self.parse_product_html(html)
36
36
  # theme: String
37
37
  thumbnail_image: html.at_css('div.content_detail_layout_01 img.enlarge_image')['src'],
38
38
  title: html.css('.title_detail_layout h1').text,
39
- # __extra: Hash
40
39
  }
41
40
  end
@@ -1,3 +1,3 @@
1
1
  module OpenDMM
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
@@ -4,10 +4,10 @@
4
4
  ],
5
5
  "code": "ADN-019",
6
6
  "cover_image": "http://attackers.net/images/works/adn019/adn019pl.jpg",
7
+ "description": "予備校の集中講座を受けるために美里夫婦の家に一ヶ月身を寄せることになった夫の弟・研二。美里は、いけない事と思いつつ、研二の青葉を噛んだときのようなほろ苦い体臭に、切なくも心惹かれてしまうのだった。",
7
8
  "directors": [
8
9
  "なぎら健造"
9
10
  ],
10
- "description": "予備校の集中講座を受けるために美里夫婦の家に一ヶ月身を寄せることになった夫の弟・研二。美里は、いけない事と思いつつ、研二の青葉を噛んだときのようなほろ苦い体臭に、切なくも心惹かれてしまうのだった。",
11
11
  "genres": [
12
12
  "強制フェラ・イラマチオ",
13
13
  "パイズリ",
@@ -32,6 +32,7 @@
32
32
  "http://attackers.net/images/works/adn019/adn019jp-11.jpg",
33
33
  "http://attackers.net/images/works/adn019/adn019jp-12.jpg"
34
34
  ],
35
+ "series": "夫には言えない羞恥の性癖",
35
36
  "thumbnail_image": "http://attackers.net/images/works/adn019/adn019pl.jpg",
36
37
  "title": "夫には言えない羞恥の性癖"
37
38
  }
@@ -0,0 +1,18 @@
1
+ {
2
+ "actresses": [
3
+ "小早川玲子"
4
+ ],
5
+ "code": "CRS-056",
6
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2012/10/CRS-056.100.jpg",
7
+ "description": "10月2日発売 平凡な日常。夫との夜のいとなみがなくなった怜子。ある日、風呂場の壊れた換気口を直しに来てくれた夫の友人志戸の体に見せられ欲情して過ちを侵してしまった。志戸は「その日のできごとを夫に黙っている」という条件のもと怜子を性の玩具にしていくのであった。",
8
+ "genres": [
9
+ "人妻"
10
+ ],
11
+ "label": "Cherish",
12
+ "maker": "DOC",
13
+ "movie_length": 7200,
14
+ "page": "http://d-o-c.biz/catalog/crs-056.html",
15
+ "release_date": "2012-10-02",
16
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2012/10/CRS-056.100.jpg",
17
+ "title": "堕ちてゆく人妻 本当はこんな女なの…"
18
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "code": "FTN-002",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2013/06/FTN-002.100.jpg",
4
+ "description": "7月19日発売 「私の妻を寝取って下さい。」寝取られ願望を持つ男の変態的依頼。弊社の仕向けた間男が奥さんにアタックし徐々に「女」の部分を引き出す。やがて二人の距離は縮まり、そして…。",
5
+ "genres": [
6
+ "人妻"
7
+ ],
8
+ "label": "不貞女情",
9
+ "maker": "DOC",
10
+ "movie_length": 7200,
11
+ "page": "http://d-o-c.biz/catalog/ftn-002.html",
12
+ "release_date": "2013-07-19",
13
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2013/06/FTN-002.100.jpg",
14
+ "title": "僕の知らない妻を見たくて… 02"
15
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "actresses": [
3
+ "青木美空"
4
+ ],
5
+ "code": "GDW-006",
6
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2012/05/GDW-006.jpg",
7
+ "description": "素人妻のHなリクエストに応える企画第6段★旦那が会社に出かけたばかりの家に上がり込み、旦那の前では絶対見せないであろう他人のチ●ポを欲しがる姿にこっちが興奮!!大人しそうに見えてスケベな願望を持った素人妻、美空さんの性願望を満たすべく、頑張りました!!",
8
+ "genres": [
9
+ "人妻"
10
+ ],
11
+ "label": "Great.Dream.World",
12
+ "maker": "DOC",
13
+ "movie_length": 7200,
14
+ "page": "http://d-o-c.biz/catalog/gdw-006.html",
15
+ "release_date": "2012-03-13",
16
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2012/05/GDW-006.jpg",
17
+ "title": "妻遊記 06"
18
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "actresses": [
3
+ "小倉ゆず"
4
+ ],
5
+ "code": "INF-003",
6
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2012/05/INF-003.jpg",
7
+ "description": "極上エロボディ娘、小倉ゆずを2時間ノンストップ&ノーカットでいかせっぱ!!ノーカットだからこそわかるリアルな反応!!ガチで感じる臨場感!!天然巨乳を振り乱して泣きながらイキまくる変態ドM娘の痴態をご覧あれ!!",
8
+ "genres": [
9
+ "パイパン",
10
+ "巨乳"
11
+ ],
12
+ "label": "INFINITY",
13
+ "maker": "DOC",
14
+ "movie_length": 6900,
15
+ "page": "http://d-o-c.biz/catalog/inf-003.html",
16
+ "release_date": "2012-02-10",
17
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2012/05/INF-003.jpg",
18
+ "title": "無限絶頂アクメ 03"
19
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "code": "LNS-003",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/LNS-003.100.jpg",
4
+ "description": "6月3日発売 女子校生と自宅でゲームの話しながら適当に口説いてハメまで持ってく。その一部始終を撮影した女子校生セックス盗撮映像第3弾。",
5
+ "genres": [
6
+ "女子校生"
7
+ ],
8
+ "label": "LENS",
9
+ "maker": "DOC",
10
+ "movie_length": 6900,
11
+ "page": "http://d-o-c.biz/catalog/lns-003.html",
12
+ "release_date": "2014-06-03",
13
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/LNS-003.100.jpg",
14
+ "title": "女子校生プ○ステ4 掲示板待ち合わせお持ち帰りSEX"
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "actresses": [
3
+ "野村萌香"
4
+ ],
5
+ "code": "NLF-001",
6
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2012/05/NLF-001.100.jpg",
7
+ "description": "6月1日発売 野村萌香がウェディングドレスを纏い、”萌香ちゃんに会いたい!!”とDOCに応募してきてくれた素人男性のお宅を訪問。一日限定の新婚生活をカラダを張って叶えます★",
8
+ "label": "NEW LIFE",
9
+ "maker": "DOC",
10
+ "movie_length": 7200,
11
+ "page": "http://d-o-c.biz/catalog/nlf-001.html",
12
+ "release_date": "2012-06-01",
13
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2012/05/NLF-001.100.jpg",
14
+ "title": "野村萌香と1日新婚生活"
15
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "code": "NRS-012",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/NRS-012.100.jpg",
4
+ "description": "6月11日発売 北青山に存在するオイルマッサージ店。今日もセレブ妻たちが金に糸目をつけずに高級マッサージをしにくる。だが媚薬効果のあるアロマに包まれた人妻たちは理性を無くし、見知らぬ男の肉の棒に自らしがみつき、旦那の事も忘れてイキ喘ぐのだった…。",
5
+ "genres": [
6
+ "中出し",
7
+ "人妻",
8
+ "巨乳"
9
+ ],
10
+ "label": "ぬめり荘",
11
+ "maker": "DOC",
12
+ "movie_length": 8100,
13
+ "page": "http://d-o-c.biz/catalog/nrs-012.html",
14
+ "release_date": "2014-06-11",
15
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/NRS-012.100.jpg",
16
+ "title": "北青山高級アロマ性感オイルマッサージ 6"
17
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "actresses": [
3
+ "岡本あい"
4
+ ],
5
+ "code": "OPUD-001",
6
+ "cover_image": "http://av-opera.jp/images/works/opud/opud001/opud001pl.jpg",
7
+ "description": "元富士Qバスガイド美女が初スカトロ!バスガイド秘話と衝撃的ハメスカの興奮!エクソシスターズ(糞尿姉妹)第一弾(長女)は元富士Qバスガイド。バスガイド秘話はのけぞり必至。連続マンぺ脱糞塗糞オナニーで洪水失禁、ウンコ歯磨きから狂気のハメスカ、顔面糞ストッキング窒息プレイまで無垢か変態か、女は謎だ。",
8
+ "directors": [
9
+ "豊田薫"
10
+ ],
11
+ "genres": [
12
+ "スカトロ",
13
+ "脱糞"
14
+ ],
15
+ "maker": "Opera",
16
+ "movie_length": 7200,
17
+ "page": "http://av-opera.jp/works/-/detail/=/cid=opud001",
18
+ "release_date": "2005-10-25",
19
+ "sample_images": [
20
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-1.jpg",
21
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-2.jpg",
22
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-3.jpg",
23
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-4.jpg",
24
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-5.jpg",
25
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-6.jpg",
26
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-7.jpg",
27
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-8.jpg",
28
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-9.jpg",
29
+ "http://av-opera.jp/images/works/opud/opud001/opud001jl-10.jpg"
30
+ ],
31
+ "scatology": [
32
+ "自然便",
33
+ "極太一本糞",
34
+ "大量脱糞",
35
+ "食糞",
36
+ "スカハメ"
37
+ ],
38
+ "series": "最臭兵器エクソシスターズ",
39
+ "thumbnail_image": "http://av-opera.jp/images/works/opud/opud001/opud001pm.jpg",
40
+ "title": "最臭兵器 エクソシスターズ 元富士Qバスガイド 狂気の脱糞ツアー"
41
+ }
@@ -35,13 +35,11 @@
35
35
  "series": "最高のシーメール",
36
36
  "thumbnail_image": "http://av-opera.jp/images/works/opud/opud125/opud125pm.jpg",
37
37
  "title": "マ●コ・ペニクリ全員激潮浴びまくり大乱交",
38
- "__extra": {
39
- "transsexual": [
40
- "アリアリ",
41
- "巨根",
42
- "女優共演",
43
- "乱交",
44
- "潮吹き"
45
- ]
46
- }
38
+ "transsexual": [
39
+ "アリアリ",
40
+ "巨根",
41
+ "女優共演",
42
+ "乱交",
43
+ "潮吹き"
44
+ ]
47
45
  }
@@ -0,0 +1,20 @@
1
+ {
2
+ "actresses": [
3
+ "森咲みお",
4
+ "浅倉領花",
5
+ "さとう遥希"
6
+ ],
7
+ "code": "RDT-190",
8
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/RDT-190.100.jpg",
9
+ "description": "6月11日発売 凄まじい…。あの巨乳…。生唾を飲み込んでしまう程、服の上からでもわかる巨乳美女が、目の前に止まった車の助手席に居る…。くそ…。あの巨乳を揉みしだきたい…。欲望の衝動を抑えきれなくなった俺は、後先考えず…",
10
+ "genres": [
11
+ "巨乳"
12
+ ],
13
+ "label": "Realdocument",
14
+ "maker": "DOC",
15
+ "movie_length": 7200,
16
+ "page": "http://d-o-c.biz/catalog/rdt-190.html",
17
+ "release_date": "2014-06-11",
18
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/RDT-190.100.jpg",
19
+ "title": "目の前に止まった車の助手席にいる、すまし顔した女の胸があまりにも大きくて… 3"
20
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "actresses": [
3
+ "長谷川しずく",
4
+ "星川ゆら",
5
+ "鳴海すず",
6
+ "久保田愛梨"
7
+ ],
8
+ "code": "RTP-005",
9
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2013/07/RTP-005.100.jpg",
10
+ "description": "8月1日発売 蒸し暑い、猛暑のとある日。エアコンが壊れ、サウナ状態の家。暑さに耐えきれずに扇風機の前でスカートをまくって蒸れたパンツに風を送る制服姿のあられもない姿…。それを目撃してしまった僕。彼女にバレる…。しまった…。だが彼女のとった行動は…。暑い夏の出来事。",
11
+ "genres": [
12
+ "女子校生"
13
+ ],
14
+ "label": "Realdocument+",
15
+ "maker": "DOC",
16
+ "movie_length": 7500,
17
+ "page": "http://d-o-c.biz/catalog/rtp-005.html",
18
+ "release_date": "2013-08-01",
19
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2013/07/RTP-005.100.jpg",
20
+ "title": "猛暑のある日、家のエアコンが壊れサウナ状態!!暑さに耐えきれずムレムレなスカートの奥のパンツに扇風機を当てて気持ちよさそうにしている制服姿を見ていたら…"
21
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "code": "RTP-025",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/RTP-025.100.jpg",
4
+ "description": "6月3日発売 えっ、まさかの夢のシチュエーション!?僕の家に遊びに来ていた従姉妹のパンチラが妙にイヤラしかったので…イケナイと思いつつもチラチラ覗いていると退屈だったのか?「ナイショだよ」と僕の股間に手を伸ばし…2",
5
+ "label": "Realdocument+",
6
+ "maker": "DOC",
7
+ "movie_length": 7200,
8
+ "page": "http://d-o-c.biz/catalog/rtp-025.html",
9
+ "release_date": "2014-06-03",
10
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/RTP-025.100.jpg",
11
+ "title": "えっ、まさかの夢のシチュエーション!?僕の家に遊びに来ていた従姉妹のパンチラが妙にイヤラしかったので…イケナイと思いつつもチラチラ覗いていると退屈だったのか?「ナイショだよ」と僕の股間に手を伸ばし…2"
12
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "code": "ULT-013",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/ULT-013.100.jpg",
4
+ "description": "6月3日発売 10代限定!ストリートを行き交う美少女たちをナンパして車内に連れ込んでインタビュー!お金上乗せでそれ以上のコトもやっちゃう??噂が噂を呼び第3弾発売★",
5
+ "genres": [
6
+ "女子校生"
7
+ ],
8
+ "label": "ULTRA",
9
+ "maker": "DOC",
10
+ "movie_length": 14400,
11
+ "page": "http://d-o-c.biz/catalog/ult-013.html",
12
+ "release_date": "2014-06-03",
13
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/ULT-013.100.jpg",
14
+ "title": "Teenハンティング vol.03"
15
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "code": "VVP-001",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2014/05/VVP-001.100.jpg",
4
+ "description": "6月3日発売 90年代、深夜番組CMをメインに解禁された「消費者金融CM」。中でも若者達の性欲をくすぐり続けた「武○士ダンスユニット」。あのメンバー達を世に送り出したダンススクールが2014年春、再び開校した。世界No.1ダンサーを夢見る15名の生徒と資金難の経営スタッフ、インストラクター達が繰り広げるダンススクールの物語。",
5
+ "genres": [
6
+ "乱交",
7
+ "女優",
8
+ "巨乳"
9
+ ],
10
+ "label": "VERY VERY PARTY",
11
+ "maker": "DOC",
12
+ "movie_length": 14400,
13
+ "page": "http://d-o-c.biz/catalog/vvp-001.html",
14
+ "release_date": "2014-06-03",
15
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2014/05/VVP-001.100.jpg",
16
+ "title": "LET’S GO!"
17
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "code": "YUM-001",
3
+ "cover_image": "http://d-o-c.biz/wp-content/uploads/2012/05/YUM-001.jpg",
4
+ "description": "通販限定商品!生写真7枚付きの特典商品です。本数限定となりますのでお早めにお求め下さい!!",
5
+ "label": "Yummy!!",
6
+ "maker": "DOC",
7
+ "movie_length": 7200,
8
+ "page": "http://d-o-c.biz/catalog/yum-001.html",
9
+ "release_date": "2012-01-20",
10
+ "thumbnail_image": "http://d-o-c.biz/wp-content/uploads/2012/05/YUM-001.jpg",
11
+ "title": "いいなり家出ペット"
12
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opendmm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jun Zhou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-30 00:00:00.000000000 Z
11
+ date: 2014-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -140,6 +140,7 @@ files:
140
140
  - lib/opendmm/makers/cross.rb
141
141
  - lib/opendmm/makers/dip.rb
142
142
  - lib/opendmm/makers/dmm_collection.rb
143
+ - lib/opendmm/makers/doc.rb
143
144
  - lib/opendmm/makers/ebody.rb
144
145
  - lib/opendmm/makers/ideapocket.rb
145
146
  - lib/opendmm/makers/kawaii.rb
@@ -200,6 +201,7 @@ files:
200
201
  - test/maker_fixtures/CND-062.json
201
202
  - test/maker_fixtures/CRAD-099.json
202
203
  - test/maker_fixtures/CRPD-451.json
204
+ - test/maker_fixtures/CRS-056.json
203
205
  - test/maker_fixtures/CRSS-013.json
204
206
  - test/maker_fixtures/CWM-156.json
205
207
  - test/maker_fixtures/Carib 021511-620.json
@@ -212,9 +214,12 @@ files:
212
214
  - test/maker_fixtures/ESK-232.json
213
215
  - test/maker_fixtures/EZD-369.json
214
216
  - test/maker_fixtures/FSET-399.json
217
+ - test/maker_fixtures/FTN-002.json
218
+ - test/maker_fixtures/GDW-006.json
215
219
  - test/maker_fixtures/HAZ-009.json
216
220
  - test/maker_fixtures/HON-001.json
217
221
  - test/maker_fixtures/IDBD-447.json
222
+ - test/maker_fixtures/INF-003.json
218
223
  - test/maker_fixtures/INU-013.json
219
224
  - test/maker_fixtures/IPSD-041.json
220
225
  - test/maker_fixtures/IPTD-464.json
@@ -231,6 +236,7 @@ files:
231
236
  - test/maker_fixtures/KIRD-147.json
232
237
  - test/maker_fixtures/KISD-042.json
233
238
  - test/maker_fixtures/LLR-005.json
239
+ - test/maker_fixtures/LNS-003.json
234
240
  - test/maker_fixtures/MAS-042.json
235
241
  - test/maker_fixtures/MBD-148.json
236
242
  - test/maker_fixtures/MDC-002.json
@@ -254,10 +260,13 @@ files:
254
260
  - test/maker_fixtures/MMY-010.json
255
261
  - test/maker_fixtures/NAGE-001.json
256
262
  - test/maker_fixtures/NDR-001.json
263
+ - test/maker_fixtures/NLF-001.json
257
264
  - test/maker_fixtures/NOF-003.json
258
265
  - test/maker_fixtures/NPS-130.json
266
+ - test/maker_fixtures/NRS-012.json
259
267
  - test/maker_fixtures/OBA-045.json
260
268
  - test/maker_fixtures/ONSD-570.json
269
+ - test/maker_fixtures/OPUD-001.json
261
270
  - test/maker_fixtures/OPUD-125.json
262
271
  - test/maker_fixtures/OSR-003.json
263
272
  - test/maker_fixtures/PARM-028.json
@@ -274,6 +283,9 @@ files:
274
283
  - test/maker_fixtures/PXD-027.json
275
284
  - test/maker_fixtures/RAW-005.json
276
285
  - test/maker_fixtures/RBD-183.json
286
+ - test/maker_fixtures/RDT-190.json
287
+ - test/maker_fixtures/RTP-005.json
288
+ - test/maker_fixtures/RTP-025.json
277
289
  - test/maker_fixtures/S-Cute 248_hibiki_07.json
278
290
  - test/maker_fixtures/S-Cute 353_rena_01.json
279
291
  - test/maker_fixtures/S-Cute ps5_07_rimu.json
@@ -304,7 +316,9 @@ files:
304
316
  - test/maker_fixtures/TMVI-042.json
305
317
  - test/maker_fixtures/TRD-062.json
306
318
  - test/maker_fixtures/TYOD-232.json
319
+ - test/maker_fixtures/ULT-013.json
307
320
  - test/maker_fixtures/URE-011.json
321
+ - test/maker_fixtures/VVP-001.json
308
322
  - test/maker_fixtures/WA-201.json
309
323
  - test/maker_fixtures/WAT-003.json
310
324
  - test/maker_fixtures/WPC-002.json
@@ -312,6 +326,7 @@ files:
312
326
  - test/maker_fixtures/XND-023.json
313
327
  - test/maker_fixtures/YRH-008.json
314
328
  - test/maker_fixtures/YRZ-009.json
329
+ - test/maker_fixtures/YUM-001.json
315
330
  - test/maker_fixtures/ZEX-068.json
316
331
  - test/mgstage_fixtures/SIRO-1088.json
317
332
  homepage:
@@ -373,6 +388,7 @@ test_files:
373
388
  - test/maker_fixtures/CND-062.json
374
389
  - test/maker_fixtures/CRAD-099.json
375
390
  - test/maker_fixtures/CRPD-451.json
391
+ - test/maker_fixtures/CRS-056.json
376
392
  - test/maker_fixtures/CRSS-013.json
377
393
  - test/maker_fixtures/CWM-156.json
378
394
  - test/maker_fixtures/Carib 021511-620.json
@@ -385,9 +401,12 @@ test_files:
385
401
  - test/maker_fixtures/ESK-232.json
386
402
  - test/maker_fixtures/EZD-369.json
387
403
  - test/maker_fixtures/FSET-399.json
404
+ - test/maker_fixtures/FTN-002.json
405
+ - test/maker_fixtures/GDW-006.json
388
406
  - test/maker_fixtures/HAZ-009.json
389
407
  - test/maker_fixtures/HON-001.json
390
408
  - test/maker_fixtures/IDBD-447.json
409
+ - test/maker_fixtures/INF-003.json
391
410
  - test/maker_fixtures/INU-013.json
392
411
  - test/maker_fixtures/IPSD-041.json
393
412
  - test/maker_fixtures/IPTD-464.json
@@ -404,6 +423,7 @@ test_files:
404
423
  - test/maker_fixtures/KIRD-147.json
405
424
  - test/maker_fixtures/KISD-042.json
406
425
  - test/maker_fixtures/LLR-005.json
426
+ - test/maker_fixtures/LNS-003.json
407
427
  - test/maker_fixtures/MAS-042.json
408
428
  - test/maker_fixtures/MBD-148.json
409
429
  - test/maker_fixtures/MDC-002.json
@@ -427,10 +447,13 @@ test_files:
427
447
  - test/maker_fixtures/MMY-010.json
428
448
  - test/maker_fixtures/NAGE-001.json
429
449
  - test/maker_fixtures/NDR-001.json
450
+ - test/maker_fixtures/NLF-001.json
430
451
  - test/maker_fixtures/NOF-003.json
431
452
  - test/maker_fixtures/NPS-130.json
453
+ - test/maker_fixtures/NRS-012.json
432
454
  - test/maker_fixtures/OBA-045.json
433
455
  - test/maker_fixtures/ONSD-570.json
456
+ - test/maker_fixtures/OPUD-001.json
434
457
  - test/maker_fixtures/OPUD-125.json
435
458
  - test/maker_fixtures/OSR-003.json
436
459
  - test/maker_fixtures/PARM-028.json
@@ -447,6 +470,9 @@ test_files:
447
470
  - test/maker_fixtures/PXD-027.json
448
471
  - test/maker_fixtures/RAW-005.json
449
472
  - test/maker_fixtures/RBD-183.json
473
+ - test/maker_fixtures/RDT-190.json
474
+ - test/maker_fixtures/RTP-005.json
475
+ - test/maker_fixtures/RTP-025.json
450
476
  - test/maker_fixtures/S-Cute 248_hibiki_07.json
451
477
  - test/maker_fixtures/S-Cute 353_rena_01.json
452
478
  - test/maker_fixtures/S-Cute ps5_07_rimu.json
@@ -477,7 +503,9 @@ test_files:
477
503
  - test/maker_fixtures/TMVI-042.json
478
504
  - test/maker_fixtures/TRD-062.json
479
505
  - test/maker_fixtures/TYOD-232.json
506
+ - test/maker_fixtures/ULT-013.json
480
507
  - test/maker_fixtures/URE-011.json
508
+ - test/maker_fixtures/VVP-001.json
481
509
  - test/maker_fixtures/WA-201.json
482
510
  - test/maker_fixtures/WAT-003.json
483
511
  - test/maker_fixtures/WPC-002.json
@@ -485,5 +513,6 @@ test_files:
485
513
  - test/maker_fixtures/XND-023.json
486
514
  - test/maker_fixtures/YRH-008.json
487
515
  - test/maker_fixtures/YRZ-009.json
516
+ - test/maker_fixtures/YUM-001.json
488
517
  - test/maker_fixtures/ZEX-068.json
489
518
  - test/mgstage_fixtures/SIRO-1088.json