football-to-sqlite 0.2.0 → 0.2.1
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/football-to-sqlite.rb +2 -2
- data/lib/football-to-sqlite/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: fb6f117b1afa6ec60f93af0c69e36e295ffaa625
|
4
|
+
data.tar.gz: 8c0d21e035208b96f748c7095450b1a90d31ba1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3957556be8ed234284b402177c2b1c7c8c84cb56e30afad1ec7b9c7906b33b3fa83dcbdc464474ec8636cec57918a0dcdbd64f94fe86dc80a36836302125f6c9
|
7
|
+
data.tar.gz: baadc2d7480f698b752bcc9b471fa2edffb52ea2e7f59cdcbd25ca241e785f9f34f6c17f2e4f2d7b699a2026d18cf46500073fa43f84867612c44bdf5dab6e1a
|
data/lib/football-to-sqlite.rb
CHANGED
@@ -62,7 +62,7 @@ def run( args )
|
|
62
62
|
args.each do |arg|
|
63
63
|
puts "reading #{arg}..."
|
64
64
|
## note: only support reading matchfiles for now (NOT zips & dirs or clubs & leagues etc.)
|
65
|
-
|
65
|
+
SportDb.read_match( arg )
|
66
66
|
end
|
67
67
|
|
68
68
|
## todo: check if stdin is always utf-8 or such?
|
@@ -73,7 +73,7 @@ def run( args )
|
|
73
73
|
puts "[------------->>>"
|
74
74
|
puts txt
|
75
75
|
puts "<<<-------------]"
|
76
|
-
|
76
|
+
SportDb.parse_match( txt )
|
77
77
|
puts "encoding: #{txt.encoding}"
|
78
78
|
end
|
79
79
|
|