sportdb-exporters 0.1.0 → 0.1.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a289ee01d984f64cf52241e61b4f03a6311bd922c557bbe942d8a55bd9bd7e11
|
4
|
+
data.tar.gz: 9fc920af6bf8c39a832121daa1c7daddd4af8b846180a345cb88e1b612f309bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84a5a93c6791c3ef677cc3ea699502f40cc313734f87cecd2bd1f5b5d6612761ddde0e6f706e4709e611ccff8e202682bb02fc6c5b07f1fd6de3ebea3667288a
|
7
|
+
data.tar.gz: 8c9ccf5dbc761ce3d9d4b87d7eff7295084a20f49b5d5b981b124d11534a3267b5e16763916e143340af1c64b69096e29d787ecaec4c6c21924a00da981fdda4
|
data/CHANGELOG.md
CHANGED
@@ -103,7 +103,7 @@ def self.export_copa( league_key, out_root: )
|
|
103
103
|
event.rounds.each do |round|
|
104
104
|
matches = []
|
105
105
|
round.matches.each do |game|
|
106
|
-
m = { num: game.pos, ## use id - why? why not?
|
106
|
+
m = { num: game.num || game.pos, ## use id - why? why not?
|
107
107
|
date: game.date.strftime( '%Y-%m-%d'),
|
108
108
|
time: game.time, ## note: time is stored as string!!!
|
109
109
|
team1: {
|
@@ -103,7 +103,7 @@ def self.export_euro( league_key, out_root: )
|
|
103
103
|
event.rounds.each do |round|
|
104
104
|
matches = []
|
105
105
|
round.matches.each do |game|
|
106
|
-
m = { num: game.pos, ## use id - why? why not?
|
106
|
+
m = { num: game.num || game.pos, ## use id - why? why not?
|
107
107
|
date: game.date.strftime( '%Y-%m-%d'),
|
108
108
|
time: game.time, ## note: time is stored as string!!!
|
109
109
|
team1: {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sportdb-exporters
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerald Bauer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rdoc
|