[ANN] regexp_parser 0.1.1

Name:
  regexp_parser

Summary:
  Scanner, lexer, and parser for ruby's regular expressions

Description: (from README)
What?
A ruby library to help with lexing, parsing, and transforming regular
expressions.
  - Multilayered
    - A scanner based on ragel
    - A lexer that produces a "stream" of tokens
    - A parser that produces a "tree" of Regexp::Expression objects (OO API)
  - Lexes and parses both 1.8 and 1.9 regular expression flavors
  - Supports ruby 1.8 and 1.9 runtime

  read more:
  https://github.com/ammar/regexp_parser/blob/v0.1.1/README.rdoc

Install:
  gem install regexp_parser

Source:
  https://github.com/ammar/regexp_parser

  * release branch: tree/master
  * release tag: tree/v0.1.1

Test:
  $ rake (test with current ruby)
  $ rvm rake (test with all rvm installed rubies)

For an example of regexp_parser in use, see meta_re:
  https://github.com/ammar/meta_re

Note: v0.1.0 was a test release, and was not announced. See the
ChangeLog for more.

Happy Hacking,
Ammar