88853cf737
Add ruby-regexp_parser version 1.6.0 package. # Regexp::Parser A Ruby gem for tokenizing, parsing, and transforming regular expressions. * Multilayered * A scanner/tokenizer based on [Ragel](http://www.colm.net/open-source/ragel/) * A lexer that produces a "stream" of token objects. * A parser that produces a "tree" of Expression objects (OO API) * Runs on Ruby 1.9, 2.x, and JRuby (1.9 mode) runtimes. * Recognizes Ruby 1.8, 1.9, and 2.x regular expressions.
13 lines
427 B
Text
13 lines
427 B
Text
# Regexp::Parser
|
|
|
|
A Ruby gem for tokenizing, parsing, and transforming regular expressions.
|
|
|
|
* Multilayered
|
|
|
|
* A scanner/tokenizer based on [Ragel](http://www.colm.net/open-source/ragel/)
|
|
* A lexer that produces a "stream" of token objects.
|
|
* A parser that produces a "tree" of Expression objects (OO API)
|
|
|
|
* Runs on Ruby 1.9, 2.x, and JRuby (1.9 mode) runtimes.
|
|
|
|
* Recognizes Ruby 1.8, 1.9, and 2.x regular expressions.
|