depager 0.2.3 → 0.3.0.b20250423
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 +7 -0
 - data/.rubocop.yml +44 -0
 - data/.simplecov +5 -0
 - data/Gemfile +12 -0
 - data/LICENSE.gpl +339 -0
 - data/Manifest.txt +73 -0
 - data/README.en +7 -21
 - data/README.ja +19 -99
 - data/Rakefile +31 -0
 - data/bin/depager +7 -45
 - data/examples/action_pl0d/pl0d.action.dr +421 -0
 - data/examples/action_pl0d/test.pl0ds +48 -0
 - data/examples/c89/c89.dr +493 -496
 - data/examples/c89/test.c89 +10 -10
 - data/examples/extension/astdf.rb +9 -0
 - data/examples/extension/atree.dr +55 -0
 - data/examples/{sample_calc → extension}/calc.atree.dr +42 -43
 - data/examples/{sample_calc/calc.action.dr → extension/calc.simple_action.dr} +33 -33
 - data/examples/extension/paction.dr +16 -15
 - data/examples/extension/pactiontest.dr +14 -14
 - data/examples/extension/simple_action.rb +46 -0
 - data/examples/pl0d/pl0ds.dr +337 -334
 - data/examples/pl0d/test.pl0ds +33 -33
 - data/examples/rie_calc/calc.rie.dr +57 -0
 - data/examples/rie_calc/test.calc +4 -0
 - data/examples/rie_dcuse/dcuse.rie.dr +71 -0
 - data/examples/rie_dcuse/test.dcuse +1 -0
 - data/examples/rie_pl0/orig_ex/exerrdg.pl0 +44 -0
 - data/examples/rie_pl0/orig_ex/exerrm.pl0 +19 -0
 - data/examples/rie_pl0/orig_ex/exerrmre.pl0 +20 -0
 - data/examples/rie_pl0/orig_ex/exerrtok.pl0 +18 -0
 - data/examples/rie_pl0/orig_ex/exmdg.pl0 +40 -0
 - data/examples/rie_pl0/orig_ex/exmdgwwl.pl0 +43 -0
 - data/examples/rie_pl0/orig_ex/exmrw.pl0 +22 -0
 - data/examples/rie_pl0/orig_ex/exmwwl.pl0 +18 -0
 - data/examples/rie_pl0/orig_ex/exnorw.pl0 +17 -0
 - data/examples/rie_pl0/pl0.rie.dr +450 -0
 - data/examples/rie_pl0/test.pl0 +10 -0
 - data/examples/slex_test/divreg.slex.dr +29 -29
 - data/examples/slex_test/ljoin.slex.dr +36 -36
 - data/examples/slex_test/test.divreg +1 -1
 - data/examples/slex_test/test.ljoin +3 -3
 - data/examples/{sample_calc/calc.nvaction.dr → tiny_calc/calc.action.dr} +33 -33
 - data/examples/{sample_calc → tiny_calc}/calc.ast.action.dr +76 -66
 - data/examples/{sample_calc → tiny_calc}/calc.ast.dr +67 -55
 - data/examples/tiny_calc/calc.cst.dr +50 -0
 - data/examples/{sample_calc → tiny_calc}/calc.dr +43 -43
 - data/examples/{sample_calc → tiny_calc}/calc.lex.dr +29 -29
 - data/examples/{sample_calc/calc_prec.nvaction.dr → tiny_calc/calc_prec.action.dr} +31 -31
 - data/lib/depager/cli.rb +44 -0
 - data/lib/depager/grammar.rb +253 -291
 - data/lib/depager/lr.rb +589 -579
 - data/lib/depager/parser.rb +269 -277
 - data/lib/depager/plugins/_rie_debug.rb +63 -0
 - data/lib/depager/plugins/action.rb +47 -0
 - data/lib/depager/plugins/ast.dr +367 -0
 - data/lib/depager/plugins/ast.rb +1329 -0
 - data/lib/depager/{ruby/plugins → plugins}/cst.dr +174 -180
 - data/lib/depager/plugins/cst.rb +591 -0
 - data/lib/depager/{ruby/plugins → plugins}/lex.dr +85 -89
 - data/lib/depager/plugins/lex.rb +313 -0
 - data/lib/depager/plugins/rie.dr +725 -0
 - data/lib/depager/plugins/rie.rb +1614 -0
 - data/lib/depager/{ruby/plugins → plugins}/slex.dr +201 -200
 - data/lib/depager/plugins/slex.rb +769 -0
 - data/lib/depager/plugins/srp.rb +46 -0
 - data/lib/depager/ruby/templates/extension_lalr_master.erb +40 -51
 - data/lib/depager/ruby/templates/extension_lalr_slave.erb +113 -107
 - data/lib/depager/ruby/templates/single_lalr_parser.erb +124 -117
 - data/lib/depager/utils.rb +158 -318
 - data/lib/depager/version.rb +3 -3
 - data/lib/depager.rb +572 -670
 - metadata +77 -80
 - data/ChangeLog +0 -16
 - data/data/depager/pre-setup.rb +0 -3
 - data/examples/c89/c89.tab.rb +0 -7127
 - data/examples/pl0d/pl0ds.tab.rb +0 -2698
 - data/examples/sample_calc/calc.action.tab.rb +0 -457
 - data/examples/sample_calc/calc.ast.action.tab.rb +0 -749
 - data/examples/sample_calc/calc.ast.tab.rb +0 -665
 - data/examples/sample_calc/calc.astdf.dr +0 -54
 - data/examples/sample_calc/calc.astdf.tab.rb +0 -672
 - data/examples/sample_calc/calc.atree.tab.rb +0 -451
 - data/examples/sample_calc/calc.cst.dr +0 -45
 - data/examples/sample_calc/calc.cst.tab.rb +0 -644
 - data/examples/sample_calc/calc.lex.tab.rb +0 -374
 - data/examples/sample_calc/calc.nvaction.tab.rb +0 -465
 - data/examples/sample_calc/calc.tab.rb +0 -365
 - data/examples/sample_calc/calc_prec.nvaction.tab.rb +0 -431
 - data/examples/slex_test/divreg.slex.tab.rb +0 -303
 - data/examples/slex_test/ljoin.slex.tab.rb +0 -370
 - data/lib/depager/ruby/plugins/_ast_tmpl.rb +0 -73
 - data/lib/depager/ruby/plugins/action.rb +0 -43
 - data/lib/depager/ruby/plugins/ast.dr +0 -269
 - data/lib/depager/ruby/plugins/ast.rb +0 -1308
 - data/lib/depager/ruby/plugins/astdf.rb +0 -6
 - data/lib/depager/ruby/plugins/atree.dr +0 -55
 - data/lib/depager/ruby/plugins/atree.rb +0 -347
 - data/lib/depager/ruby/plugins/cst.rb +0 -626
 - data/lib/depager/ruby/plugins/lex.rb +0 -336
 - data/lib/depager/ruby/plugins/nvaction.rb +0 -19
 - data/lib/depager/ruby/plugins/slex.rb +0 -817
 - data/lib/depager/ruby/plugins/srp.rb +0 -51
 - data/lib/depager/ruby/templates/simple.erb +0 -23
 - data/setup.rb +0 -1585
 - /data/examples/{sample_calc → tiny_calc}/test.calc +0 -0
 
    
        metadata
    CHANGED
    
    | 
         @@ -1,119 +1,116 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            --- !ruby/object:Gem::Specification 
     | 
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: depager
         
     | 
| 
       3 
     | 
    
         
            -
            version: !ruby/object:Gem::Version 
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.3.0.b20250423
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
     | 
    
         
            -
            authors: 
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - maita
         
     | 
| 
       8 
     | 
    
         
            -
            autorequire: 
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
            date: 2008-11-24 00:00:00 +09:00
         
     | 
| 
       13 
     | 
    
         
            -
            default_executable: 
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2025-04-23 00:00:00.000000000 Z
         
     | 
| 
       14 
12 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
13 
     | 
    
         
             
            description: A self extensible parser generator.
         
     | 
| 
       17 
     | 
    
         
            -
            email: 
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
      
 14 
     | 
    
         
            +
            email:
         
     | 
| 
      
 15 
     | 
    
         
            +
            - maita@fujiyama.slis.tsukuba.ac.jp
         
     | 
| 
      
 16 
     | 
    
         
            +
            executables:
         
     | 
| 
       19 
17 
     | 
    
         
             
            - depager
         
     | 
| 
       20 
18 
     | 
    
         
             
            extensions: []
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
19 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            -  
     | 
| 
      
 20 
     | 
    
         
            +
            files:
         
     | 
| 
      
 21 
     | 
    
         
            +
            - ".rubocop.yml"
         
     | 
| 
      
 22 
     | 
    
         
            +
            - ".simplecov"
         
     | 
| 
      
 23 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 24 
     | 
    
         
            +
            - LICENSE.gpl
         
     | 
| 
      
 25 
     | 
    
         
            +
            - Manifest.txt
         
     | 
| 
       26 
26 
     | 
    
         
             
            - README.en
         
     | 
| 
       27 
27 
     | 
    
         
             
            - README.ja
         
     | 
| 
      
 28 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
       28 
29 
     | 
    
         
             
            - bin/depager
         
     | 
| 
       29 
30 
     | 
    
         
             
            - data/depager/misc/depager-mode.el
         
     | 
| 
       30 
     | 
    
         
            -
            -  
     | 
| 
      
 31 
     | 
    
         
            +
            - examples/action_pl0d/pl0d.action.dr
         
     | 
| 
      
 32 
     | 
    
         
            +
            - examples/action_pl0d/test.pl0ds
         
     | 
| 
       31 
33 
     | 
    
         
             
            - examples/c89/c89.dr
         
     | 
| 
       32 
     | 
    
         
            -
            - examples/c89/c89.tab.rb
         
     | 
| 
       33 
34 
     | 
    
         
             
            - examples/c89/test.c89
         
     | 
| 
      
 35 
     | 
    
         
            +
            - examples/extension/astdf.rb
         
     | 
| 
      
 36 
     | 
    
         
            +
            - examples/extension/atree.dr
         
     | 
| 
      
 37 
     | 
    
         
            +
            - examples/extension/calc.atree.dr
         
     | 
| 
      
 38 
     | 
    
         
            +
            - examples/extension/calc.simple_action.dr
         
     | 
| 
       34 
39 
     | 
    
         
             
            - examples/extension/paction.dr
         
     | 
| 
       35 
40 
     | 
    
         
             
            - examples/extension/pactiontest.dr
         
     | 
| 
      
 41 
     | 
    
         
            +
            - examples/extension/simple_action.rb
         
     | 
| 
       36 
42 
     | 
    
         
             
            - examples/pl0d/pl0ds.dr
         
     | 
| 
       37 
     | 
    
         
            -
            - examples/pl0d/pl0ds.tab.rb
         
     | 
| 
       38 
43 
     | 
    
         
             
            - examples/pl0d/test.pl0ds
         
     | 
| 
       39 
     | 
    
         
            -
            - examples/ 
     | 
| 
       40 
     | 
    
         
            -
            - examples/ 
     | 
| 
       41 
     | 
    
         
            -
            - examples/ 
     | 
| 
       42 
     | 
    
         
            -
            - examples/ 
     | 
| 
       43 
     | 
    
         
            -
            - examples/ 
     | 
| 
       44 
     | 
    
         
            -
            - examples/ 
     | 
| 
       45 
     | 
    
         
            -
            - examples/ 
     | 
| 
       46 
     | 
    
         
            -
            - examples/ 
     | 
| 
       47 
     | 
    
         
            -
            - examples/ 
     | 
| 
       48 
     | 
    
         
            -
            - examples/ 
     | 
| 
       49 
     | 
    
         
            -
            - examples/ 
     | 
| 
       50 
     | 
    
         
            -
            - examples/ 
     | 
| 
       51 
     | 
    
         
            -
            - examples/ 
     | 
| 
       52 
     | 
    
         
            -
            - examples/ 
     | 
| 
       53 
     | 
    
         
            -
            - examples/ 
     | 
| 
       54 
     | 
    
         
            -
            - examples/sample_calc/calc.nvaction.dr
         
     | 
| 
       55 
     | 
    
         
            -
            - examples/sample_calc/calc.nvaction.tab.rb
         
     | 
| 
       56 
     | 
    
         
            -
            - examples/sample_calc/calc.tab.rb
         
     | 
| 
       57 
     | 
    
         
            -
            - examples/sample_calc/calc_prec.nvaction.dr
         
     | 
| 
       58 
     | 
    
         
            -
            - examples/sample_calc/calc_prec.nvaction.tab.rb
         
     | 
| 
       59 
     | 
    
         
            -
            - examples/sample_calc/test.calc
         
     | 
| 
      
 44 
     | 
    
         
            +
            - examples/rie_calc/calc.rie.dr
         
     | 
| 
      
 45 
     | 
    
         
            +
            - examples/rie_calc/test.calc
         
     | 
| 
      
 46 
     | 
    
         
            +
            - examples/rie_dcuse/dcuse.rie.dr
         
     | 
| 
      
 47 
     | 
    
         
            +
            - examples/rie_dcuse/test.dcuse
         
     | 
| 
      
 48 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exerrdg.pl0
         
     | 
| 
      
 49 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exerrm.pl0
         
     | 
| 
      
 50 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exerrmre.pl0
         
     | 
| 
      
 51 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exerrtok.pl0
         
     | 
| 
      
 52 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exmdg.pl0
         
     | 
| 
      
 53 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exmdgwwl.pl0
         
     | 
| 
      
 54 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exmrw.pl0
         
     | 
| 
      
 55 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exmwwl.pl0
         
     | 
| 
      
 56 
     | 
    
         
            +
            - examples/rie_pl0/orig_ex/exnorw.pl0
         
     | 
| 
      
 57 
     | 
    
         
            +
            - examples/rie_pl0/pl0.rie.dr
         
     | 
| 
      
 58 
     | 
    
         
            +
            - examples/rie_pl0/test.pl0
         
     | 
| 
       60 
59 
     | 
    
         
             
            - examples/slex_test/divreg.slex.dr
         
     | 
| 
       61 
     | 
    
         
            -
            - examples/slex_test/divreg.slex.tab.rb
         
     | 
| 
       62 
60 
     | 
    
         
             
            - examples/slex_test/ljoin.slex.dr
         
     | 
| 
       63 
     | 
    
         
            -
            - examples/slex_test/ljoin.slex.tab.rb
         
     | 
| 
       64 
61 
     | 
    
         
             
            - examples/slex_test/test.divreg
         
     | 
| 
       65 
62 
     | 
    
         
             
            - examples/slex_test/test.ljoin
         
     | 
| 
      
 63 
     | 
    
         
            +
            - examples/tiny_calc/calc.action.dr
         
     | 
| 
      
 64 
     | 
    
         
            +
            - examples/tiny_calc/calc.ast.action.dr
         
     | 
| 
      
 65 
     | 
    
         
            +
            - examples/tiny_calc/calc.ast.dr
         
     | 
| 
      
 66 
     | 
    
         
            +
            - examples/tiny_calc/calc.cst.dr
         
     | 
| 
      
 67 
     | 
    
         
            +
            - examples/tiny_calc/calc.dr
         
     | 
| 
      
 68 
     | 
    
         
            +
            - examples/tiny_calc/calc.lex.dr
         
     | 
| 
      
 69 
     | 
    
         
            +
            - examples/tiny_calc/calc_prec.action.dr
         
     | 
| 
      
 70 
     | 
    
         
            +
            - examples/tiny_calc/test.calc
         
     | 
| 
       66 
71 
     | 
    
         
             
            - lib/depager.rb
         
     | 
| 
      
 72 
     | 
    
         
            +
            - lib/depager/cli.rb
         
     | 
| 
       67 
73 
     | 
    
         
             
            - lib/depager/grammar.rb
         
     | 
| 
       68 
74 
     | 
    
         
             
            - lib/depager/lr.rb
         
     | 
| 
       69 
75 
     | 
    
         
             
            - lib/depager/parser.rb
         
     | 
| 
       70 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       71 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       72 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       73 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       74 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       75 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       76 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       77 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       78 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       79 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       80 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       81 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       82 
     | 
    
         
            -
            - lib/depager/ 
     | 
| 
       83 
     | 
    
         
            -
            - lib/depager/ruby/plugins/slex.rb
         
     | 
| 
       84 
     | 
    
         
            -
            - lib/depager/ruby/plugins/srp.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/depager/plugins/_rie_debug.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/depager/plugins/action.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - lib/depager/plugins/ast.dr
         
     | 
| 
      
 79 
     | 
    
         
            +
            - lib/depager/plugins/ast.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - lib/depager/plugins/cst.dr
         
     | 
| 
      
 81 
     | 
    
         
            +
            - lib/depager/plugins/cst.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - lib/depager/plugins/lex.dr
         
     | 
| 
      
 83 
     | 
    
         
            +
            - lib/depager/plugins/lex.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - lib/depager/plugins/rie.dr
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/depager/plugins/rie.rb
         
     | 
| 
      
 86 
     | 
    
         
            +
            - lib/depager/plugins/slex.dr
         
     | 
| 
      
 87 
     | 
    
         
            +
            - lib/depager/plugins/slex.rb
         
     | 
| 
      
 88 
     | 
    
         
            +
            - lib/depager/plugins/srp.rb
         
     | 
| 
       85 
89 
     | 
    
         
             
            - lib/depager/ruby/templates/extension_lalr_master.erb
         
     | 
| 
       86 
90 
     | 
    
         
             
            - lib/depager/ruby/templates/extension_lalr_slave.erb
         
     | 
| 
       87 
     | 
    
         
            -
            - lib/depager/ruby/templates/simple.erb
         
     | 
| 
       88 
91 
     | 
    
         
             
            - lib/depager/ruby/templates/single_lalr_parser.erb
         
     | 
| 
       89 
92 
     | 
    
         
             
            - lib/depager/utils.rb
         
     | 
| 
       90 
93 
     | 
    
         
             
            - lib/depager/version.rb
         
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
            post_install_message: 
     | 
| 
      
 94 
     | 
    
         
            +
            homepage:
         
     | 
| 
      
 95 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 96 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 97 
     | 
    
         
            +
            post_install_message:
         
     | 
| 
       95 
98 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       96 
     | 
    
         
            -
             
     | 
| 
       97 
     | 
    
         
            -
            require_paths: 
         
     | 
| 
      
 99 
     | 
    
         
            +
            require_paths:
         
     | 
| 
       98 
100 
     | 
    
         
             
            - lib
         
     | 
| 
       99 
     | 
    
         
            -
            required_ruby_version: !ruby/object:Gem::Requirement 
     | 
| 
       100 
     | 
    
         
            -
              requirements: 
     | 
| 
      
 101 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 102 
     | 
    
         
            +
              requirements:
         
     | 
| 
       101 
103 
     | 
    
         
             
              - - ">="
         
     | 
| 
       102 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       103 
     | 
    
         
            -
                  version:  
     | 
| 
       104 
     | 
    
         
            -
             
     | 
| 
       105 
     | 
    
         
            -
             
     | 
| 
       106 
     | 
    
         
            -
               
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
     | 
    
         
            -
                  version: "0"
         
     | 
| 
       110 
     | 
    
         
            -
              version: 
         
     | 
| 
      
 104 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 105 
     | 
    
         
            +
                  version: 3.0.0
         
     | 
| 
      
 106 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 107 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 108 
     | 
    
         
            +
              - - ">"
         
     | 
| 
      
 109 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 110 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
       111 
111 
     | 
    
         
             
            requirements: []
         
     | 
| 
       112 
     | 
    
         
            -
             
     | 
| 
       113 
     | 
    
         
            -
             
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
            signing_key: 
         
     | 
| 
       116 
     | 
    
         
            -
            specification_version: 2
         
     | 
| 
      
 112 
     | 
    
         
            +
            rubygems_version: 3.4.20
         
     | 
| 
      
 113 
     | 
    
         
            +
            signing_key:
         
     | 
| 
      
 114 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
       117 
115 
     | 
    
         
             
            summary: A self extensible parser generator.
         
     | 
| 
       118 
116 
     | 
    
         
             
            test_files: []
         
     | 
| 
       119 
     | 
    
         
            -
             
     | 
    
        data/ChangeLog
    DELETED
    
    | 
         @@ -1,16 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            2008-11-24  maita  <maita@fujiyama.slis.tsukuba.ac.jp>
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            	* Bugfix.
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            2008-05-05  maita  <maita@fujiyama.slis.tsukuba.ac.jp>
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            	* Bugfix.
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            2007-08-21  maita  <maita@fujiyama.slis.tsukuba.ac.jp>
         
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
            	* Bugfix.
         
     | 
| 
       12 
     | 
    
         
            -
            	
         
     | 
| 
       13 
     | 
    
         
            -
            2007-05-27  maita  <maita@fujiyama.slis.tsukuba.ac.jp>
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            	* Initial release.
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
    
        data/data/depager/pre-setup.rb
    DELETED