opendmm 0.3.21 → 0.3.22
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.
- checksums.yaml +4 -4
- data/lib/opendmm.rb +1 -1
- data/lib/opendmm/makers/caribbeanpr.rb +33 -0
- data/lib/opendmm/makers/ten_musume.rb +33 -0
- data/lib/opendmm/{makers → makers_broken}/high_scene.rb +0 -0
- data/lib/opendmm/{makers → makers_broken}/ideapocket.rb +0 -0
- data/lib/opendmm/{makers → makers_broken}/premium.rb +0 -0
- data/lib/opendmm/{makers → makers_broken}/to_satsu.rb +0 -0
- data/lib/opendmm/{search_engines → search_engines_broken}/mgstage.rb +0 -0
- data/lib/opendmm/version.rb +1 -1
- data/test/av_entertainments_fixtures/MKBD-S40.json +2 -1
- data/test/av_entertainments_fixtures/SKYHD-108.json +2 -1
- data/test/av_entertainments_fixtures/sky107.json +2 -1
- data/test/fixture_test.rb +1 -1
- data/test/maker_fixtures/10musume 082914_01.json +22 -0
- data/test/maker_fixtures/Caribpr 082914_940.json +31 -0
- data/test/maker_fixtures/Perfect-G 481yuuka.json +2 -3
- data/test/{maker_fixtures → maker_fixtures_broken}/CLUB-003.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/HIGH-107.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/IDBD-447.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/IPSD-041.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/IPTD-464.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/IPTD-629.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/IPZ-005.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PBD-134.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PGD-306.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PJD-085.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PTV-001.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PXD-024.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/PXD-027.json +0 -0
- data/test/{maker_fixtures → maker_fixtures_broken}/SUPD-065.json +0 -0
- data/test/{mgstage_fixtures → mgstage_fixtures_broken}/011OAM-002.json +0 -0
- data/test/{mgstage_fixtures → mgstage_fixtures_broken}/SIRO-1088.json +0 -0
- data/test/{mgstage_fixtures → mgstage_fixtures_broken}/siro1088.json +0 -0
- metadata +47 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae3c8fc39727cb62c8865836452764b1d5929fef
|
4
|
+
data.tar.gz: 7b4b8d74d91ac5d21aa065048b504e012516a451
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36bcd2782091d028a7a655cb0558137ff2032ea62bd3213451787d9fe6ac410c59042f096f64a07ca88b1bf2ac28f86439ff8d527503ee513e972cb55b9579ef
|
7
|
+
data.tar.gz: 9d0d9c41dfc02823af86715921f462e2f08b51e1c344e1d59f430fa9ce329561dce23ebff115b151f5b9602bf9abe56b48b92418942d30168c26111133eb7476
|
data/lib/opendmm.rb
CHANGED
@@ -0,0 +1,33 @@
|
|
1
|
+
base_uri 'www.caribbeancompr.com'
|
2
|
+
|
3
|
+
register_product(
|
4
|
+
/^Caribpr ?(\d{6})[-_](\d{3})$/i,
|
5
|
+
'/moviepages/#{$1}_#{$2}/index.html',
|
6
|
+
'Caribpr #{$1}_#{$2}',
|
7
|
+
)
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def self.parse_product_html(html)
|
12
|
+
specs = Utils.hash_by_split(html.css('div.main-content-movieinfo > div.movie-info > dl').map(&:text))
|
13
|
+
{
|
14
|
+
actresses: specs['出演'].split,
|
15
|
+
# brand: String
|
16
|
+
categories: specs['カテゴリー'].split,
|
17
|
+
cover_image: './images/l_l.jpg',
|
18
|
+
description: html.css('div.main-content-movieinfo > div.movie-comment').text,
|
19
|
+
# directors: Array
|
20
|
+
# genres: Array
|
21
|
+
# label: String
|
22
|
+
maker: specs['スタジオ'],
|
23
|
+
movie_length: specs['再生時間'],
|
24
|
+
release_date: specs['配信日'],
|
25
|
+
sample_images: html.css('div.detail-content.detail-content-gallery > ul > li > div > a').map { |a| a['href'] }.reject{ |uri| uri =~ /\/member\// },
|
26
|
+
# scenes: Array
|
27
|
+
series: specs['シリーズ'],
|
28
|
+
# subtitle: String
|
29
|
+
# theme: String
|
30
|
+
thumbnail_image: './images/main_b.jpg',
|
31
|
+
title: html.css('div.main-content-movieinfo > div.video-detail > span > h1').text,
|
32
|
+
}
|
33
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
base_uri 'www.10musume.com'
|
2
|
+
|
3
|
+
register_product(
|
4
|
+
/^10musume ?(\d{6})[-_](\d{2})$/i,
|
5
|
+
'/moviepages/#{$1}_#{$2}/index.html',
|
6
|
+
'10musume #{$1}_#{$2}',
|
7
|
+
)
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def self.parse_product_html(html)
|
12
|
+
specs = Utils.hash_by_split(html.xpath('//*[@id="info"]/div[1]/ul/li').map(&:text))
|
13
|
+
{
|
14
|
+
actresses: specs['名前'].split,
|
15
|
+
# brand: String
|
16
|
+
categories: specs['カテゴリー'].try(:split),
|
17
|
+
cover_image: './images/str.jpg',
|
18
|
+
# description: String
|
19
|
+
# directors: Array
|
20
|
+
# genres: Array
|
21
|
+
# label: String
|
22
|
+
maker: '10musume',
|
23
|
+
movie_length: specs['時間'],
|
24
|
+
release_date: specs['更新日'],
|
25
|
+
sample_images: html.css('table#gallery a').map { |a| a['href'] },
|
26
|
+
# scenes: Array
|
27
|
+
# series: String
|
28
|
+
# subtitle: String
|
29
|
+
# theme: String
|
30
|
+
thumbnail_image: './images/list1.jpg',
|
31
|
+
title: specs['タイトル'],
|
32
|
+
}
|
33
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/opendmm/version.rb
CHANGED
data/test/fixture_test.rb
CHANGED
@@ -59,7 +59,7 @@ end
|
|
59
59
|
{ 'maker' => 'OpenDMM::Maker',
|
60
60
|
'dmm' => 'OpenDMM::SearchEngine::Dmm',
|
61
61
|
'jav_library' => 'OpenDMM::SearchEngine::JavLibrary',
|
62
|
-
'mgstage' => 'OpenDMM::SearchEngine::Mgstage',
|
62
|
+
# 'mgstage' => 'OpenDMM::SearchEngine::Mgstage',
|
63
63
|
'av_entertainments' => 'OpenDMM::SearchEngine::AvEntertainments' }.each do |category, klass|
|
64
64
|
Dir[File.dirname(__FILE__) + "/#{category}_fixtures/*.json"].each do |file|
|
65
65
|
name = File.basename(file, '.json')
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"actresses": [
|
3
|
+
"木山里美"
|
4
|
+
],
|
5
|
+
"categories": [
|
6
|
+
"色白",
|
7
|
+
"生ハメ",
|
8
|
+
"ふつう"
|
9
|
+
],
|
10
|
+
"code": "10musume 082914_01",
|
11
|
+
"cover_image": "http://www.10musume.com/moviepages/082914_01/images/str.jpg",
|
12
|
+
"maker": "10musume",
|
13
|
+
"movie_length": 4109,
|
14
|
+
"page": "http://www.10musume.com/moviepages/082914_01/index.html",
|
15
|
+
"release_date": "2014-08-28",
|
16
|
+
"sample_images": [
|
17
|
+
"http://www.10musume.com/moviepages/082914_01/images/g_b006.jpg",
|
18
|
+
"http://www.10musume.com/moviepages/082914_01/images/g_b010.jpg"
|
19
|
+
],
|
20
|
+
"thumbnail_image": "http://www.10musume.com/moviepages/082914_01/images/list1.jpg",
|
21
|
+
"title": "浴衣×ノーパン初エッチ!"
|
22
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"actresses": [
|
3
|
+
"中島京子"
|
4
|
+
],
|
5
|
+
"categories": [
|
6
|
+
"AV女優",
|
7
|
+
"美乳",
|
8
|
+
"中出し",
|
9
|
+
"バイブ",
|
10
|
+
"フェラチオ",
|
11
|
+
"クンニ",
|
12
|
+
"生はめ",
|
13
|
+
"AV女優",
|
14
|
+
"熟女/人妻",
|
15
|
+
"美尻"
|
16
|
+
],
|
17
|
+
"code": "Caribpr 082914_940",
|
18
|
+
"cover_image": "http://www.caribbeancompr.com/moviepages/082914_940/images/l_l.jpg",
|
19
|
+
"description": "卑猥な極上美熟女、中島京子がなんとカリビアンコムプレミアム初光臨!!1983年3月12日生まれ。身長152cm、スリーサイズはB:84cm W:58cm H:86cmとスレンダーボディをキープ。デビューから10年、再デビューを経て年を重ねてはいるもののその艶やかな肌と抜群のスタイルは今でも顕在です!そんな彼女が夫の粗チンを忘れさせる、デカ黒巨根の虜に!?巨根黒人との初めてのセックスに予想以上の快感を感じてしまったようで・・・。極太チンポにうっとりねっとりと舌をはわせ、奥まで突き上げる腰使いに狂喜する!羞恥心や罪悪感を忘れて、目くるめく狂おしい快感に流され獣のように乱れ狂う人妻京子を是非ご堪能くださいませ。",
|
20
|
+
"maker": "MUGEN エンターテイメント",
|
21
|
+
"movie_length": 7279,
|
22
|
+
"page": "http://www.caribbeancompr.com/moviepages/082914_940/index.html",
|
23
|
+
"sample_images": [
|
24
|
+
"http://www.caribbeancompr.com/moviepages/082914_940/images/l/001.jpg",
|
25
|
+
"http://www.caribbeancompr.com/moviepages/082914_940/images/l/002.jpg",
|
26
|
+
"http://www.caribbeancompr.com/moviepages/082914_940/images/l/003.jpg"
|
27
|
+
],
|
28
|
+
"series": "ラフォーレ ガール",
|
29
|
+
"thumbnail_image": "http://www.caribbeancompr.com/moviepages/082914_940/images/main_b.jpg",
|
30
|
+
"title": "ラフォーレ ガール Vol.28"
|
31
|
+
}
|
@@ -6,13 +6,12 @@
|
|
6
6
|
"cover_image": "http://www.g-area.com/img/main/481yuuka_320_180.jpg",
|
7
7
|
"description": "自分の事を能天気と言い放つ自由奔放な専門学生。Hにはかなり貪欲で生理期間が終わってすぐ駆けつけて来たそうw。ハズカシ照れ照れでしたがキスですぐに欲情し、言葉責めで濡れ濡れなパイパン。スパンキング、ローター、目隠しバイブ、電マ、潮吹きと幾度も絶頂を繰り返し、征服したかと思いましたが、フェラチオでS的責めを展開されます。挿入になるとM丸出し雌犬ファック。責め受けの攻防戦を激しく繰り返した末に大量顔射!…顔に出されるのはお好みではなかったようです。",
|
8
8
|
"maker": "Perfect-G",
|
9
|
-
"movie_length":
|
9
|
+
"movie_length": 6201,
|
10
10
|
"page": "http://www.g-area.org/sample_pg/481yuuka/spgallery.php",
|
11
11
|
"sample_images": [
|
12
12
|
"http://www.g-area.com/img/sub/481yuuka1_150_84.jpg",
|
13
13
|
"http://www.g-area.com/img/sub/481yuuka2_150_84.jpg",
|
14
|
-
"http://www.g-area.com/img/sub/481yuuka3_150_84.jpg"
|
15
|
-
"http://www.g-area.com/img/sub/481yuuka4_150_84.jpg"
|
14
|
+
"http://www.g-area.com/img/sub/481yuuka3_150_84.jpg"
|
16
15
|
],
|
17
16
|
"thumbnail_image": "http://www.g-area.com/img/main/481yuuka_320_180.jpg",
|
18
17
|
"title": "ゆうか"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
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.3.
|
4
|
+
version: 0.3.22
|
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-
|
11
|
+
date: 2014-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -137,6 +137,7 @@ files:
|
|
137
137
|
- lib/opendmm/makers/bijin_majo.rb
|
138
138
|
- lib/opendmm/makers/candy.rb
|
139
139
|
- lib/opendmm/makers/caribbean.rb
|
140
|
+
- lib/opendmm/makers/caribbeanpr.rb
|
140
141
|
- lib/opendmm/makers/cross.rb
|
141
142
|
- lib/opendmm/makers/das.rb
|
142
143
|
- lib/opendmm/makers/dip.rb
|
@@ -144,8 +145,6 @@ files:
|
|
144
145
|
- lib/opendmm/makers/doc.rb
|
145
146
|
- lib/opendmm/makers/ebody.rb
|
146
147
|
- lib/opendmm/makers/g_area.rb
|
147
|
-
- lib/opendmm/makers/high_scene.rb
|
148
|
-
- lib/opendmm/makers/ideapocket.rb
|
149
148
|
- lib/opendmm/makers/kawaii.rb
|
150
149
|
- lib/opendmm/makers/kira_kira.rb
|
151
150
|
- lib/opendmm/makers/madonna.rb
|
@@ -154,21 +153,24 @@ files:
|
|
154
153
|
- lib/opendmm/makers/one_pondo.rb
|
155
154
|
- lib/opendmm/makers/opera.rb
|
156
155
|
- lib/opendmm/makers/oppai.rb
|
157
|
-
- lib/opendmm/makers/premium.rb
|
158
156
|
- lib/opendmm/makers/prestige.rb
|
159
157
|
- lib/opendmm/makers/ran_maru.rb
|
160
158
|
- lib/opendmm/makers/s1.rb
|
161
159
|
- lib/opendmm/makers/s_cute.rb
|
162
160
|
- lib/opendmm/makers/sod.rb
|
163
161
|
- lib/opendmm/makers/tameikegoro.rb
|
164
|
-
- lib/opendmm/makers/
|
162
|
+
- lib/opendmm/makers/ten_musume.rb
|
165
163
|
- lib/opendmm/makers/tokyo_247.rb
|
166
164
|
- lib/opendmm/makers/waap.rb
|
165
|
+
- lib/opendmm/makers_broken/high_scene.rb
|
166
|
+
- lib/opendmm/makers_broken/ideapocket.rb
|
167
|
+
- lib/opendmm/makers_broken/premium.rb
|
168
|
+
- lib/opendmm/makers_broken/to_satsu.rb
|
167
169
|
- lib/opendmm/search_engine.rb
|
168
170
|
- lib/opendmm/search_engines/av_entertainments.rb
|
169
171
|
- lib/opendmm/search_engines/dmm.rb
|
170
172
|
- lib/opendmm/search_engines/jav_library.rb
|
171
|
-
- lib/opendmm/
|
173
|
+
- lib/opendmm/search_engines_broken/mgstage.rb
|
172
174
|
- lib/opendmm/site.rb
|
173
175
|
- lib/opendmm/utils.rb
|
174
176
|
- lib/opendmm/version.rb
|
@@ -188,6 +190,7 @@ files:
|
|
188
190
|
- test/jav_library_fixtures/XV-100.json
|
189
191
|
- test/jav_library_fixtures/XV-1000.json
|
190
192
|
- test/jav_library_fixtures/xv100.json
|
193
|
+
- test/maker_fixtures/10musume 082914_01.json
|
191
194
|
- test/maker_fixtures/1pondo 011111_006.json
|
192
195
|
- test/maker_fixtures/1pondo 022506_835.json
|
193
196
|
- test/maker_fixtures/352_kokona_02.json
|
@@ -221,7 +224,6 @@ files:
|
|
221
224
|
- test/maker_fixtures/CEN-033.json
|
222
225
|
- test/maker_fixtures/CHN-008.json
|
223
226
|
- test/maker_fixtures/CHS-015.json
|
224
|
-
- test/maker_fixtures/CLUB-003.json
|
225
227
|
- test/maker_fixtures/CND-012.json
|
226
228
|
- test/maker_fixtures/CND-062.json
|
227
229
|
- test/maker_fixtures/CRAD-099.json
|
@@ -230,6 +232,7 @@ files:
|
|
230
232
|
- test/maker_fixtures/CRSS-013.json
|
231
233
|
- test/maker_fixtures/CWM-156.json
|
232
234
|
- test/maker_fixtures/Carib 021511-620.json
|
235
|
+
- test/maker_fixtures/Caribpr 082914_940.json
|
233
236
|
- test/maker_fixtures/DASD-001.json
|
234
237
|
- test/maker_fixtures/DAZD-001.json
|
235
238
|
- test/maker_fixtures/DCOL-017.json
|
@@ -245,15 +248,9 @@ files:
|
|
245
248
|
- test/maker_fixtures/FTN-002.json
|
246
249
|
- test/maker_fixtures/GDW-006.json
|
247
250
|
- test/maker_fixtures/HAZ-009.json
|
248
|
-
- test/maker_fixtures/HIGH-107.json
|
249
251
|
- test/maker_fixtures/HON-001.json
|
250
|
-
- test/maker_fixtures/IDBD-447.json
|
251
252
|
- test/maker_fixtures/INF-003.json
|
252
253
|
- test/maker_fixtures/INU-013.json
|
253
|
-
- test/maker_fixtures/IPSD-041.json
|
254
|
-
- test/maker_fixtures/IPTD-464.json
|
255
|
-
- test/maker_fixtures/IPTD-629.json
|
256
|
-
- test/maker_fixtures/IPZ-005.json
|
257
254
|
- test/maker_fixtures/JBD-153.json
|
258
255
|
- test/maker_fixtures/JBS-004.json
|
259
256
|
- test/maker_fixtures/JOB-010.json
|
@@ -301,9 +298,6 @@ files:
|
|
301
298
|
- test/maker_fixtures/OPUD-125.json
|
302
299
|
- test/maker_fixtures/OSR-003.json
|
303
300
|
- test/maker_fixtures/PARM-028.json
|
304
|
-
- test/maker_fixtures/PBD-134.json
|
305
|
-
- test/maker_fixtures/PGD-306.json
|
306
|
-
- test/maker_fixtures/PJD-085.json
|
307
301
|
- test/maker_fixtures/PLA-001.json
|
308
302
|
- test/maker_fixtures/PPB-008.json
|
309
303
|
- test/maker_fixtures/PPP-001.json
|
@@ -311,9 +305,6 @@ files:
|
|
311
305
|
- test/maker_fixtures/PPSD-028.json
|
312
306
|
- test/maker_fixtures/PPT-004.json
|
313
307
|
- test/maker_fixtures/PTS-230.json
|
314
|
-
- test/maker_fixtures/PTV-001.json
|
315
|
-
- test/maker_fixtures/PXD-024.json
|
316
|
-
- test/maker_fixtures/PXD-027.json
|
317
308
|
- test/maker_fixtures/Perfect-G 430mei.json
|
318
309
|
- test/maker_fixtures/Perfect-G 481yuuka.json
|
319
310
|
- test/maker_fixtures/Perfect-G Docle yoriko2.json
|
@@ -348,7 +339,6 @@ files:
|
|
348
339
|
- test/maker_fixtures/SRS-015.json
|
349
340
|
- test/maker_fixtures/SSPD-077.json
|
350
341
|
- test/maker_fixtures/STAR-359.json
|
351
|
-
- test/maker_fixtures/SUPD-065.json
|
352
342
|
- test/maker_fixtures/TDT-018.json
|
353
343
|
- test/maker_fixtures/TMAM-034.json
|
354
344
|
- test/maker_fixtures/TMCY-039.json
|
@@ -371,9 +361,23 @@ files:
|
|
371
361
|
- test/maker_fixtures/YRZ-009.json
|
372
362
|
- test/maker_fixtures/YUM-001.json
|
373
363
|
- test/maker_fixtures/ZEX-068.json
|
374
|
-
- test/
|
375
|
-
- test/
|
376
|
-
- test/
|
364
|
+
- test/maker_fixtures_broken/CLUB-003.json
|
365
|
+
- test/maker_fixtures_broken/HIGH-107.json
|
366
|
+
- test/maker_fixtures_broken/IDBD-447.json
|
367
|
+
- test/maker_fixtures_broken/IPSD-041.json
|
368
|
+
- test/maker_fixtures_broken/IPTD-464.json
|
369
|
+
- test/maker_fixtures_broken/IPTD-629.json
|
370
|
+
- test/maker_fixtures_broken/IPZ-005.json
|
371
|
+
- test/maker_fixtures_broken/PBD-134.json
|
372
|
+
- test/maker_fixtures_broken/PGD-306.json
|
373
|
+
- test/maker_fixtures_broken/PJD-085.json
|
374
|
+
- test/maker_fixtures_broken/PTV-001.json
|
375
|
+
- test/maker_fixtures_broken/PXD-024.json
|
376
|
+
- test/maker_fixtures_broken/PXD-027.json
|
377
|
+
- test/maker_fixtures_broken/SUPD-065.json
|
378
|
+
- test/mgstage_fixtures_broken/011OAM-002.json
|
379
|
+
- test/mgstage_fixtures_broken/SIRO-1088.json
|
380
|
+
- test/mgstage_fixtures_broken/siro1088.json
|
377
381
|
homepage:
|
378
382
|
licenses:
|
379
383
|
- MIT
|
@@ -414,6 +418,7 @@ test_files:
|
|
414
418
|
- test/jav_library_fixtures/XV-100.json
|
415
419
|
- test/jav_library_fixtures/XV-1000.json
|
416
420
|
- test/jav_library_fixtures/xv100.json
|
421
|
+
- test/maker_fixtures/10musume 082914_01.json
|
417
422
|
- test/maker_fixtures/1pondo 011111_006.json
|
418
423
|
- test/maker_fixtures/1pondo 022506_835.json
|
419
424
|
- test/maker_fixtures/352_kokona_02.json
|
@@ -447,7 +452,6 @@ test_files:
|
|
447
452
|
- test/maker_fixtures/CEN-033.json
|
448
453
|
- test/maker_fixtures/CHN-008.json
|
449
454
|
- test/maker_fixtures/CHS-015.json
|
450
|
-
- test/maker_fixtures/CLUB-003.json
|
451
455
|
- test/maker_fixtures/CND-012.json
|
452
456
|
- test/maker_fixtures/CND-062.json
|
453
457
|
- test/maker_fixtures/CRAD-099.json
|
@@ -456,6 +460,7 @@ test_files:
|
|
456
460
|
- test/maker_fixtures/CRSS-013.json
|
457
461
|
- test/maker_fixtures/CWM-156.json
|
458
462
|
- test/maker_fixtures/Carib 021511-620.json
|
463
|
+
- test/maker_fixtures/Caribpr 082914_940.json
|
459
464
|
- test/maker_fixtures/DASD-001.json
|
460
465
|
- test/maker_fixtures/DAZD-001.json
|
461
466
|
- test/maker_fixtures/DCOL-017.json
|
@@ -471,15 +476,9 @@ test_files:
|
|
471
476
|
- test/maker_fixtures/FTN-002.json
|
472
477
|
- test/maker_fixtures/GDW-006.json
|
473
478
|
- test/maker_fixtures/HAZ-009.json
|
474
|
-
- test/maker_fixtures/HIGH-107.json
|
475
479
|
- test/maker_fixtures/HON-001.json
|
476
|
-
- test/maker_fixtures/IDBD-447.json
|
477
480
|
- test/maker_fixtures/INF-003.json
|
478
481
|
- test/maker_fixtures/INU-013.json
|
479
|
-
- test/maker_fixtures/IPSD-041.json
|
480
|
-
- test/maker_fixtures/IPTD-464.json
|
481
|
-
- test/maker_fixtures/IPTD-629.json
|
482
|
-
- test/maker_fixtures/IPZ-005.json
|
483
482
|
- test/maker_fixtures/JBD-153.json
|
484
483
|
- test/maker_fixtures/JBS-004.json
|
485
484
|
- test/maker_fixtures/JOB-010.json
|
@@ -527,9 +526,6 @@ test_files:
|
|
527
526
|
- test/maker_fixtures/OPUD-125.json
|
528
527
|
- test/maker_fixtures/OSR-003.json
|
529
528
|
- test/maker_fixtures/PARM-028.json
|
530
|
-
- test/maker_fixtures/PBD-134.json
|
531
|
-
- test/maker_fixtures/PGD-306.json
|
532
|
-
- test/maker_fixtures/PJD-085.json
|
533
529
|
- test/maker_fixtures/PLA-001.json
|
534
530
|
- test/maker_fixtures/PPB-008.json
|
535
531
|
- test/maker_fixtures/PPP-001.json
|
@@ -537,9 +533,6 @@ test_files:
|
|
537
533
|
- test/maker_fixtures/PPSD-028.json
|
538
534
|
- test/maker_fixtures/PPT-004.json
|
539
535
|
- test/maker_fixtures/PTS-230.json
|
540
|
-
- test/maker_fixtures/PTV-001.json
|
541
|
-
- test/maker_fixtures/PXD-024.json
|
542
|
-
- test/maker_fixtures/PXD-027.json
|
543
536
|
- test/maker_fixtures/Perfect-G 430mei.json
|
544
537
|
- test/maker_fixtures/Perfect-G 481yuuka.json
|
545
538
|
- test/maker_fixtures/Perfect-G Docle yoriko2.json
|
@@ -574,7 +567,6 @@ test_files:
|
|
574
567
|
- test/maker_fixtures/SRS-015.json
|
575
568
|
- test/maker_fixtures/SSPD-077.json
|
576
569
|
- test/maker_fixtures/STAR-359.json
|
577
|
-
- test/maker_fixtures/SUPD-065.json
|
578
570
|
- test/maker_fixtures/TDT-018.json
|
579
571
|
- test/maker_fixtures/TMAM-034.json
|
580
572
|
- test/maker_fixtures/TMCY-039.json
|
@@ -597,6 +589,20 @@ test_files:
|
|
597
589
|
- test/maker_fixtures/YRZ-009.json
|
598
590
|
- test/maker_fixtures/YUM-001.json
|
599
591
|
- test/maker_fixtures/ZEX-068.json
|
600
|
-
- test/
|
601
|
-
- test/
|
602
|
-
- test/
|
592
|
+
- test/maker_fixtures_broken/CLUB-003.json
|
593
|
+
- test/maker_fixtures_broken/HIGH-107.json
|
594
|
+
- test/maker_fixtures_broken/IDBD-447.json
|
595
|
+
- test/maker_fixtures_broken/IPSD-041.json
|
596
|
+
- test/maker_fixtures_broken/IPTD-464.json
|
597
|
+
- test/maker_fixtures_broken/IPTD-629.json
|
598
|
+
- test/maker_fixtures_broken/IPZ-005.json
|
599
|
+
- test/maker_fixtures_broken/PBD-134.json
|
600
|
+
- test/maker_fixtures_broken/PGD-306.json
|
601
|
+
- test/maker_fixtures_broken/PJD-085.json
|
602
|
+
- test/maker_fixtures_broken/PTV-001.json
|
603
|
+
- test/maker_fixtures_broken/PXD-024.json
|
604
|
+
- test/maker_fixtures_broken/PXD-027.json
|
605
|
+
- test/maker_fixtures_broken/SUPD-065.json
|
606
|
+
- test/mgstage_fixtures_broken/011OAM-002.json
|
607
|
+
- test/mgstage_fixtures_broken/SIRO-1088.json
|
608
|
+
- test/mgstage_fixtures_broken/siro1088.json
|