sportdb-parser 0.3.7 → 0.3.8

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: 6323a39fa903163b57c2416f732be300590217e6818ffbb782c30af06bf52052
4
- data.tar.gz: 6491846e993a62bd815853acca1a4790ee2210aec5ab804c788332280f91d861
3
+ metadata.gz: eadc79627364072a1d05801fec096aca27e914f214639c4bbe6bbffca2acab0d
4
+ data.tar.gz: f052a6d668246082d9fbcc5b90c71b440048080dc423f9428a4560591e797080
5
5
  SHA512:
6
- metadata.gz: 70ea59920f73fef1255a4bcd07c3e58571b5ad5a21a35d3775183ca254dfd64d048106066d6cbb53b65692bdb523a08a7d0e2c210e2ef6ee68be1efd2287677b
7
- data.tar.gz: a2d61dc09cc2cfdbe3669d7e4376594d63440a50b09c5adc1dfa4e4c3ce983374d5157db1c84a6b44425d4068b041041d7650071f50a1de2f652cc2ab022edc9
6
+ metadata.gz: 394f74c596ad1a624d626757972911eee7e0b009df66d5cac7ed1508cb3b056ece6f7fbc1d3c310468d5d065ae22ba18a28d7f8992f333767f20279eb5ce2f78
7
+ data.tar.gz: ecaa4a25b3552e69013dea0cc9c87a91b3409cd02e86302f4387e658de6cdfadba2c82c7c31935d4f7c62aaab187a25ce6e85f9dc4239faa346838f5be8dce7b
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 0.3.7
1
+ ### 0.3.8
2
2
 
3
3
  ### 0.0.1 / 2024-07-12
4
4
 
data/config/rounds_de.txt CHANGED
@@ -2,9 +2,27 @@
2
2
  # rounds in deutsch (de) / german
3
3
 
4
4
  Vorrunde
5
+ 1. Vorrunde
6
+ 2. Vorrunde
5
7
  Gruppenphase
8
+ Ligaphase
9
+ Spiele # in 2017/uy.1.txt -- double check if missing something
10
+ # in 1960-61/it.1.txt
6
11
 
7
12
 
13
+ Zwischenrunde
14
+
15
+ Sechzehntelfinale
16
+ Platzierungsspiel
17
+
18
+ Qualifikation
19
+ Qual. 3. Runde
20
+
21
+ 2. Aufstieg Halbfinale
22
+ 2. Aufstieg Finale
23
+
24
+ Playoff-Runde
25
+ Relegation
8
26
  Aufstieg
9
27
  Endrunde
10
28
  Aufstiegsrunde
@@ -20,10 +38,56 @@ Entscheidung Zone B
20
38
  2. Aufstieg 3. Phase
21
39
  Direkter Aufstieg
22
40
  Direkter Abstieg
41
+ 3. Platz
23
42
  5. Platz
24
43
  7. Platz
25
44
  9. Platz
26
45
  11. Platz
27
46
 
47
+ 5.-8. Platz Playoffs
48
+ 9.-12. Platz Playoffs
49
+ 13.-16. Platz Playoffs
50
+
51
+
52
+ Entscheidung 1. Runde
53
+ Entscheidung 2. Runde
54
+
55
+
28
56
  Zwischenrunde Gr. B ## move to group_de - why? why not?
57
+ 1. Runde Gruppe 1
58
+ 1. Runde Gruppe 2
59
+
60
+
61
+ ### todo/fix
62
+ ### move to group - why? why not?
63
+ Gruppe 1
64
+ Gruppe 2
65
+ Gruppe 3
66
+ Gruppe 4
67
+ Gruppe 5
68
+ Gruppe 6
69
+ Gruppe 7
70
+ Gruppe 8
71
+ Gruppe 9
72
+ Gruppe 10
73
+ Gruppe 11
74
+ Gruppe 12
75
+ Gruppe 13
76
+ Gruppe 14
77
+ Gruppe 15
78
+ Gruppe 16
79
+
80
+
81
+ Gruppe A
82
+ Gruppe B
83
+ Gruppe C
84
+ Gruppe D
85
+ Gruppe E
86
+ Gruppe F
87
+ Gruppe G
88
+ Gruppe H
89
+ Gruppe I
90
+ Gruppe J
91
+ Gruppe K
92
+ Gruppe L
29
93
 
data/config/rounds_en.txt CHANGED
@@ -10,3 +10,6 @@ Conference Semifinals
10
10
  Conference Finals
11
11
  Wildcard
12
12
 
13
+ Elimination Final
14
+ Quadrangular
15
+
data/config/rounds_es.txt CHANGED
@@ -7,3 +7,13 @@ Reclasificación
7
7
 
8
8
  Preclasificación Nacional B
9
9
 
10
+ Final Segunda Ronda
11
+ Gran Final
12
+
13
+ Interzone
14
+ Zone A
15
+ Zona B
16
+
17
+ Final de Grupos
18
+ Repechaje
19
+
@@ -12,3 +12,7 @@ Tussenronde
12
12
  Replay achtste finale
13
13
  Replay kwartfinale
14
14
 
15
+ Replay 1e ronde
16
+ Replay 2e ronde
17
+ Replay halve finale
18
+ Replay finale
@@ -47,6 +47,10 @@ TEXT_RE = %r{
47
47
  [ ]? ## make space optional too - why? why not?
48
48
  ## yes - eg. 1st, 2nd, 5th etc.
49
49
  \p{L}+
50
+ |
51
+ ## opt 3 - add weirdo case
52
+ ## e.g. 5.-8. Platz Playoffs - keep - why? why not?
53
+ \d+\.-\d+\. [ ]? \p{L}+
50
54
  )
51
55
 
52
56
  (?:(?: (?:[ ]
@@ -4,7 +4,7 @@ module SportDb
4
4
  module Parser
5
5
  MAJOR = 0 ## todo: namespace inside version or something - why? why not??
6
6
  MINOR = 3
7
- PATCH = 7
7
+ PATCH = 8
8
8
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
9
 
10
10
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sportdb-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer