sportdb-readers 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sportdb/readers/match_reader.rb +2 -0
- data/lib/sportdb/readers/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa4225ef65ba9a0bddadba178cae48f142b2894d
|
4
|
+
data.tar.gz: '0966b042258895e134ce4236c1cf211588fd42d5'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79eec4198136a2368667f49cf0b782551cca03f1d5cfd7e93ad6cd35f818589e8b3e6e35f9c3516cc441cd454da54516377fb1f04100b14b930aac2e275e441c
|
7
|
+
data.tar.gz: 3f599edf0c5aab6234c0bed6c8e73156b6ee9c844d944fb019aa906861abff067398dc2b0316e00aea1ed3545494aa9cfeb6cae0eea0465039503dc6476f5369
|
@@ -48,6 +48,8 @@ class MatchReaderV2 ## todo/check: rename to MatchReaderV2 (use plural?) why?
|
|
48
48
|
pp round_recs
|
49
49
|
|
50
50
|
round_recs.each do |round_rec|
|
51
|
+
## quick hack: if pos missing fill with dummy 999 for now
|
52
|
+
round_rec.pos = 999 if round_rec.pos.nil?
|
51
53
|
round = Sync::Round.find_or_create( round_rec, event: event ) ## check: use/rename to EventRound why? why not?
|
52
54
|
end
|
53
55
|
match_recs.each do |match_rec|
|