food_fish_parser 0.3.2 → 0.3.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bd634b53ff1c9253aeae0c7a8a5ffe05a09b0e2546bf2d3152b822b170e16b3
|
4
|
+
data.tar.gz: 4e7f032271d6c2a5998a2ac1e5cabc2e785abadf3571c8a70c8d4f3d72d71a5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2da62d88749bf00439cb908554117046dc3a318d5d67957c6626371733ee9119dfc72a5436abac7473471afad76108cb2f21271b5e3967b69843b72df0137092
|
7
|
+
data.tar.gz: d52c5d78d813915c9ede9dea753b26181d8e17c3d61f2931203b83b306237ce1585d8a2c117918f0377d52ea1c28a5936a1dae46f9146deff1aaa7fa218d8b9b
|
@@ -33,15 +33,15 @@ module FoodFishParser::Strict::Grammar
|
|
33
33
|
rule root_anywhere
|
34
34
|
(
|
35
35
|
( ( !fish_with_info !word_sep . )+ word_sep )*
|
36
|
-
( fish_with_info ( ( ( !fish_with_info !word_sep . )*
|
36
|
+
( fish_with_info ( ( word_sep ( !fish_with_info !word_sep . )* )+ fish_with_info )* ) !char /
|
37
37
|
( ( !fish_names_both !word_sep . )+ word_sep )*
|
38
|
-
( fish_names_both ( ( ( !fish_names_both !word_sep . )*
|
38
|
+
( fish_names_both ( ( word_sep ( !fish_names_both !word_sep . )* )+ fish_names_both )* ) !char /
|
39
39
|
( ( !fish_names_latin !word_sep . )+ word_sep )*
|
40
|
-
( fish_names_latin ( ( ( !fish_names_latin !word_sep . )*
|
40
|
+
( fish_names_latin ( ( word_sep ( !fish_names_latin !word_sep . )* )+ fish_names_latin )* ) !char /
|
41
41
|
( ( !fish_only_info !word_sep . )+ word_sep )*
|
42
|
-
( fish_only_info ( ( ( !fish_only_info !word_sep . )*
|
42
|
+
( fish_only_info ( ( word_sep ( !fish_only_info !word_sep . )* )+ fish_only_info )* ) !char /
|
43
43
|
( ( !fish_names_nl !word_sep . )+ word_sep )*
|
44
|
-
( fish_names_nl ( ( ( !fish_names_nl !word_sep . )*
|
44
|
+
( fish_names_nl ( ( word_sep ( !fish_names_nl !word_sep . )* )+ fish_names_nl )* ) !char
|
45
45
|
)
|
46
46
|
<RootNode>
|
47
47
|
end
|