food_fish_parser 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e62ff1b5674b515de29ce7932d47749823921fee28ed45209b533509597c9a13
4
- data.tar.gz: 90f118ab2a0a7855844440864b5abc3b021ce2a1a8b633d4a0e9e1edc0083ce7
3
+ metadata.gz: 6d6a475f2afe2c1cda09b5dae983ffcf7230c2ebacf30732d9f1e500bf378ed1
4
+ data.tar.gz: 5c6564b67669f8914daa6d1576fa6c5d9d7d489dde713b5e81079ca79261d313
5
5
  SHA512:
6
- metadata.gz: 9d287a003d701781aec0fb948c66936270b822a01a26836f87f58e8d56f78bb7d4ae2ad9ba37142a422aa727cd13363327376c255154dd4b4fa6e85999f3d8bb
7
- data.tar.gz: 6dd1481df66f6169404fce2ab52bd61acfcae11a5328a53cc811f6aa094ce363686eb417977e54212dc11207c38012f7be3ad10ef27498a216515822b9a94b42
6
+ metadata.gz: f90c09d90c12a81c3d4039b7a2b513d694e1b92f4d535269d4779e2ef3516c2f0eaa4d53cc27097e398a53d433250be0f184d6e9d1d251bddd058d02603a2067
7
+ data.tar.gz: a698ed12b6d132dead0c1f818c6ead17fe55c26eada7174f1b262d70331f9c27f7a36883081a19e5be31eb6010d392f95eba690cd43f3827372f8ffdc8c0edbf
@@ -32,11 +32,16 @@ module FoodFishParser::Strict::Grammar
32
32
  # Note that this can be a much more expensive operation.
33
33
  rule root_anywhere
34
34
  (
35
- ( !fish_with_info . )* ( fish_with_info ( ( !fish_with_info . )* fish_with_info )* ) ( !fish_with_info . )* /
36
- ( !fish_names_both . )* ( fish_names_both ( ( !fish_names_both . )+ fish_names_both )* ) ( !fish_names_both . )* /
37
- ( !fish_names_latin . )* ( fish_names_latin ( ( !fish_names_latin . )+ fish_names_latin )* ) ( !fish_names_latin . )* /
38
- ( !fish_only_info . )* ( fish_only_info ( ( !fish_only_info . )+ fish_only_info )* ) ( !fish_only_info . )* /
39
- ( !fish_names_nl . )* ( fish_names_nl ( ( !fish_names_nl . )+ fish_names_nl )* ) ( !fish_names_nl . )*
35
+ ( ( !fish_with_info !word_sep . )+ word_sep )*
36
+ ( fish_with_info ( ( ( !fish_with_info !word_sep . )* word_sep )+ fish_with_info )* ) /
37
+ ( ( !fish_names_both !word_sep . )+ word_sep )*
38
+ ( fish_names_both ( ( ( !fish_names_both !word_sep . )* word_sep )+ fish_names_both )* ) /
39
+ ( ( !fish_names_latin !word_sep . )+ word_sep )*
40
+ ( fish_names_latin ( ( ( !fish_names_latin !word_sep . )* word_sep )+ fish_names_latin )* ) /
41
+ ( ( !fish_only_info !word_sep . )+ word_sep )*
42
+ ( fish_only_info ( ( ( !fish_only_info !word_sep . )* word_sep )+ fish_only_info )* ) /
43
+ ( ( !fish_names_nl !word_sep . )+ word_sep )*
44
+ ( fish_names_nl ( ( ( !fish_names_nl !word_sep . )* word_sep )+ fish_names_nl )* )
40
45
  )
41
46
  <RootNode>
42
47
  end
@@ -1,4 +1,4 @@
1
1
  module FoodFishParser
2
- VERSION = '0.3.1'
3
- VERSION_DATE = '2020-03-19'
2
+ VERSION = '0.3.2'
3
+ VERSION_DATE = '2020-03-20'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: food_fish_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - wvengen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-19 00:00:00.000000000 Z
11
+ date: 2020-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: treetop