r

racc

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.
https://github.com/tenderlove/racc
MIT
Aaron Patterson
Files download
File Operation
racc-1.4.13.pom download
Apache Maven
<dependency>
  <groupId>rubygems</groupId>
  <artifactId>racc</artifactId>
  <version>1.4.13</version>
  <type>gem</type>
</dependency>
Gradle Groovy
implementation 'rubygems:racc:1.4.13'
Gradle Kotlin
implementation("rubygems:racc:1.4.13")
Scala SBT
libraryDependencies += "rubygems" % "racc" % "1.4.13"
Groovy Grape
@Grapes(
  @Grab(group='rubygems', module='racc', version='1.4.13')
)
Apache Ivy
<dependency org="rubygems" name="racc" rev="1.4.13" />
Leiningen
[rubygems/racc "1.4.13"]
Apache Buildr
'rubygems:racc:jar:1.4.13'