sportdb-parser 0.6.5 → 0.6.7

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: 7cb697dbecb7802a9701c60527bb67125dc7ac550b6c5c80f67044e51683eb15
4
- data.tar.gz: d53cc9c126b93a4702b2c633daf863a3e4d4b63397f7c5ac60bd0646ab1d2da9
3
+ metadata.gz: 366948a35eecdf2ea0b1e83e48a4ae53b399f5f91436c066e8b3328fb3d9dda4
4
+ data.tar.gz: 8fba19e829e8d81873f4a263c5d0b2a1db27095fddebb90233a0d075c2ec7ea4
5
5
  SHA512:
6
- metadata.gz: 341aa9f1b25259db42452f28bd69f5643ecb5a3b45755a88565aac2b7a2842bc34d8d2a53e7d3b7a4b96c15c199c000167f4e94e608486a4ae9fefa9756bc7a0
7
- data.tar.gz: d983116b79d9f361e136ef989ac02041ea735cfda42614f0ff08f5fd43899d7deebc135a82c020ff6dc7c9c6cf6ee413bbff7cdc9f65e41a682b3bf5cb5b082f
6
+ metadata.gz: d4cc2627f892ab128df8cbccab77117dd97b85ac9b9900f0434f4ada02fdad1ba7a19cf6055aeb7a88fe1dce477190bfa8b028276837e30546bce0656ba4f901
7
+ data.tar.gz: 671f21e8bdb895223504e2b8776905d169c7ba97086cf843ebcc6e361a074eaad4c2fa62c6296328e265bae511eb4c4574bbdfd3d76ce92649212547898f726a
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 0.6.5
1
+ ### 0.6.7
2
2
  ### 0.0.1 / 2024-07-12
3
3
 
4
4
  * Everything is new. First release.
@@ -707,6 +707,11 @@ def _tokenize_line( line )
707
707
  end
708
708
 
709
709
 
710
+ if @re == GOAL_RE ### ALWAYS switch back to top level mode
711
+ puts " LEAVE GOAL_RE MODE, BACK TO TOP_LEVEL/RE" if debug?
712
+ @re = RE
713
+ end
714
+
710
715
  ##
711
716
  ## if in prop mode continue if last token is [,-]
712
717
  ## otherwise change back to "standard" mode
@@ -725,11 +730,6 @@ def _tokenize_line( line )
725
730
  end
726
731
  end
727
732
 
728
-
729
- if @re == GOAL_RE ### ALWAYS switch back to top level mode
730
- puts " LEAVE GOAL_RE MODE, BACK TO TOP_LEVEL/RE" if debug?
731
- @re = RE
732
- end
733
733
 
734
734
  [tokens,errors]
735
735
  end