fbup 0.1.1 → 0.1.2
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/CHANGELOG.md +1 -1
- data/config/openfootball.csv +2 -2
- data/lib/fbup/main.rb +2 -1
- data/lib/fbup/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33923b42a018912296afcb27db14743f78423e51544fbe92824e2e82517e3d76
|
4
|
+
data.tar.gz: 6bad9339c925d0422c7bd0f32993ea5974027d30ace711a8a6c81cf9cdf9fbd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81044d7cb605d472b002aab5c9ba181b51f80f9333d62c59ca09318c1f49884eb55f6744217d83e7acda2ea9a4bdfca0100afa9a483bd8f7047b5d992b5ad6fd
|
7
|
+
data.tar.gz: 2a9cf3a2fdbe49b3a27c5aafa8e8ba2471461e6c4f7ca3b7e4dde39fec782a59155cb37096e591459fa8b3640ee6d21451f8dc758fd1cd198baed9f5fceffd4b
|
data/CHANGELOG.md
CHANGED
data/config/openfootball.csv
CHANGED
@@ -98,7 +98,7 @@ nir, europe/northern-ireland,
|
|
98
98
|
|
99
99
|
|
100
100
|
|
101
|
-
euro, euro,
|
101
|
+
euro, euro, ## add custom flag - why? why not?
|
102
102
|
|
103
103
|
|
104
104
|
|
@@ -150,4 +150,4 @@ concacaf.champs, world/north-america/champions-league,
|
|
150
150
|
au, world/pacific/australia,
|
151
151
|
|
152
152
|
|
153
|
-
world, worldcup,
|
153
|
+
world, worldcup, ## add custom flag - why? why not?
|
data/lib/fbup/main.rb
CHANGED
@@ -174,7 +174,8 @@ datasets.each do |league_key, seasons|
|
|
174
174
|
|
175
175
|
|
176
176
|
## build
|
177
|
-
txt = if
|
177
|
+
txt = if opts[:v1]
|
178
|
+
## todo - change upstream build to build_v1
|
178
179
|
SportDb::TxtMatchWriter.build( matches )
|
179
180
|
else
|
180
181
|
SportDb::TxtMatchWriter.build_v2( matches )
|
data/lib/fbup/version.rb
CHANGED