sportdb-parser 0.6.2 → 0.6.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85526406c8cd97a5b4e8580e64597b60f2046f4667a97080434238e067be2788
4
- data.tar.gz: dcd5e6aaa854654974644c026fb99545c31ef2d5929d0518d8418630b5d6ea76
3
+ metadata.gz: d1dd9f29584bb09508c0fb6ad253a84ff299c7f33650d27195abbc679c1e893f
4
+ data.tar.gz: 6af07bc6f008e1b6c53cd796253f66bd68f2f28299a750896be83176bae7d085
5
5
  SHA512:
6
- metadata.gz: fc086846a66d2657d3debae5562fe20fbd2327741c8af1485972dfd0b8f46b3c649c0345ba173f2d3f40622bd4bddecc7ea0072d4d129bc5dc542554c539ebab
7
- data.tar.gz: c0c4653cb40cb89e8086b6dc00ed853c62abf75fc18972cf98230a779cd8a7f73d797098ec53c2e942e6271c00c9d11a1da8f6975704141cbfbba599ec741098
6
+ metadata.gz: f8adae46063426008e23f01ef3d625a3477c01a827b942edadddfad7e774e8689de3545c1c6ae8e32d0fa43b2bfbf5c9dc9962947c97be79ab325a41a7896c48
7
+ data.tar.gz: e0b843c9b2eee0ebfec203889ed5ea90f94eb22f80ca0df58d8865f05dd08f4d4bc3547b59f0fbe00e323a09df9c13289954ddea34bf437cad6d196c29a2e436
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 0.6.2
1
+ ### 0.6.3
2
2
  ### 0.0.1 / 2024-07-12
3
3
 
4
4
  * Everything is new. First release.
@@ -132,14 +132,16 @@ RE = Regexp.union( PROP_KEY_RE, ## start with prop key (match will/should swit
132
132
  TIME_RE,
133
133
  DURATION_RE, # note - duration MUST match before date
134
134
  DATE_RE,
135
- WDAY_RE, # allow standalone weekday name (e.g. Mo/Tu/etc.) - why? why not?
136
135
  SCORE_MORE_RE,
137
136
  SCORE_RE, ## note basic score e.g. 1-1 must go after SCORE_MORE_RE!!!
138
137
  BASICS_RE,
139
138
  MINUTE_RE,
140
139
  MINUTE_NA_RE, ## note - add/allow not/available (n/a,na) minutes hack for now
141
140
  GOAL_OG_RE, GOAL_PEN_RE,
142
- TEXT_RE )
141
+ TEXT_RE,
142
+ WDAY_RE, # allow standalone weekday name (e.g. Mo/Tu/etc.) - why? why not?
143
+ # note - wday MUST be after text e.g. Sun Ke 68' is Sun Ke (NOT Sun) etc.
144
+ )
143
145
 
144
146
 
145
147
  end # class Lexer
@@ -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 = 6
7
- PATCH = 2
7
+ PATCH = 3
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.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer