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 +4 -4
 - data/lib/food_fish_parser/strict/grammar/root.treetop +10 -5
 - data/lib/food_fish_parser/version.rb +2 -2
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 6d6a475f2afe2c1cda09b5dae983ffcf7230c2ebacf30732d9f1e500bf378ed1
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 5c6564b67669f8914daa6d1576fa6c5d9d7d489dde713b5e81079ca79261d313
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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 
     | 
    
         
            -
                    (  
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
                    (  
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
                    (  
     | 
| 
      
 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
         
     | 
    
        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. 
     | 
| 
      
 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- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2020-03-20 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: treetop
         
     |