Sha256: 69c3c11d6e3c507a6174b8095bb7735445b7af05ff8e941bba23a915ccab9249

Contents?: true

Size: 1.82 KB

Versions: 7

Compression:

Stored size: 1.82 KB

Contents

= Racc

* http://i.loveruby.net/en/projects/racc/

== DESCRIPTION:

  Racc is a LALR(1) parser generator.
  It is written in Ruby itself, and generates Ruby program.

  NOTE: Ruby 1.8.x comes with Racc runtime module.  You
  can run your parsers generated by racc 1.4.x out of the
  box.


== Requirement

  *  Ruby 1.8.x or later.

== Installation

  gem install:

    $ gem install racc

  setup.rb install:

  Type this in the top directory of the extracted archive:

    $ ruby setup.rb config
    $ ruby setup.rb setup
   ($ su)
    # ruby setup.rb install

  You can install Racc into your favorite directory by giving
  options to setup.rb. e.g.

    $ ruby setup.rb config --prefix=/usr

  For details, try "ruby setup.rb --help".


  If you don't have C Compiler
  ----------------------------

  You can install Racc without C compilers. Type following
  command in config phase.

    $ ruby setup.rb config --without-ext


== Testing Racc

  Racc comes with simple calculator. To compile this, on shell:

      $ racc -o calc calc.y

  This process costs few seconds (or less). Then type:

      $ ruby calc

  ... Does it work?
  For details of Racc, see HTML documents placed under 'rdoc/en/'
  and sample grammar files under 'sample/'.


== License

  Racc is distributed under the same terms of ruby.
  (see the file COPYING). Note that you do NOT need to follow
  ruby license for your own parser (racc outputs).
  You can distribute those files under any licenses you want.


== Bug Reports

  Any kind of bug report is welcome.
  If you find a bug of Racc, please email me. Your grammar file,
  debug output generated by "racc -g", are helpful.


                                                      Minero Aoki
                                              aamine@loveruby.net
                                            http://i.loveruby.net

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/racc-1.6.0/README.rdoc
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/racc-1.6.0/README.rdoc
tdiary-5.2.0 vendor/bundle/ruby/3.0.0/gems/racc-1.6.0/README.rdoc
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/racc-1.6.0/README.rdoc
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/racc-1.6.0/README.rdoc
racc-1.6.0-java README.rdoc
racc-1.6.0 README.rdoc