--- !ruby/object:Gem::Specification name: regexp_parser version: !ruby/object:Gem::Version version: 0.4.4 platform: ruby authors: - Ammar Ali autorequire: bindir: bin cert_chain: [] date: 2017-07-10 00:00:00.000000000 Z dependencies: [] description: A library for tokenizing, lexing, and parsing Ruby regular expressions. email: - ammarabuali@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - ChangeLog - Gemfile - LICENSE - README.md - Rakefile - lib/regexp_parser.rb - lib/regexp_parser/expression.rb - lib/regexp_parser/expression/classes/alternation.rb - lib/regexp_parser/expression/classes/anchor.rb - lib/regexp_parser/expression/classes/backref.rb - lib/regexp_parser/expression/classes/conditional.rb - lib/regexp_parser/expression/classes/escape.rb - lib/regexp_parser/expression/classes/free_space.rb - lib/regexp_parser/expression/classes/group.rb - lib/regexp_parser/expression/classes/keep.rb - lib/regexp_parser/expression/classes/literal.rb - lib/regexp_parser/expression/classes/property.rb - lib/regexp_parser/expression/classes/root.rb - lib/regexp_parser/expression/classes/set.rb - lib/regexp_parser/expression/classes/type.rb - lib/regexp_parser/expression/methods/strfregexp.rb - lib/regexp_parser/expression/methods/tests.rb - lib/regexp_parser/expression/methods/traverse.rb - lib/regexp_parser/expression/quantifier.rb - lib/regexp_parser/expression/sequence.rb - lib/regexp_parser/expression/subexpression.rb - lib/regexp_parser/lexer.rb - lib/regexp_parser/parser.rb - lib/regexp_parser/scanner.rb - lib/regexp_parser/scanner/property.rl - lib/regexp_parser/scanner/scanner.rl - lib/regexp_parser/syntax.rb - lib/regexp_parser/syntax/any.rb - lib/regexp_parser/syntax/base.rb - lib/regexp_parser/syntax/ruby/1.8.6.rb - lib/regexp_parser/syntax/ruby/1.8.7.rb - lib/regexp_parser/syntax/ruby/1.8.rb - lib/regexp_parser/syntax/ruby/1.9.1.rb - lib/regexp_parser/syntax/ruby/1.9.2.rb - lib/regexp_parser/syntax/ruby/1.9.3.rb - lib/regexp_parser/syntax/ruby/1.9.rb - lib/regexp_parser/syntax/ruby/2.0.0.rb - lib/regexp_parser/syntax/ruby/2.0.rb - lib/regexp_parser/syntax/ruby/2.1.0.rb - lib/regexp_parser/syntax/ruby/2.1.10.rb - lib/regexp_parser/syntax/ruby/2.1.2.rb - lib/regexp_parser/syntax/ruby/2.1.3.rb - lib/regexp_parser/syntax/ruby/2.1.4.rb - lib/regexp_parser/syntax/ruby/2.1.5.rb - lib/regexp_parser/syntax/ruby/2.1.6.rb - lib/regexp_parser/syntax/ruby/2.1.7.rb - lib/regexp_parser/syntax/ruby/2.1.8.rb - lib/regexp_parser/syntax/ruby/2.1.9.rb - lib/regexp_parser/syntax/ruby/2.1.rb - lib/regexp_parser/syntax/ruby/2.2.0.rb - lib/regexp_parser/syntax/ruby/2.2.1.rb - lib/regexp_parser/syntax/ruby/2.2.2.rb - lib/regexp_parser/syntax/ruby/2.2.3.rb - lib/regexp_parser/syntax/ruby/2.2.4.rb - lib/regexp_parser/syntax/ruby/2.2.5.rb - lib/regexp_parser/syntax/ruby/2.2.6.rb - lib/regexp_parser/syntax/ruby/2.2.rb - lib/regexp_parser/syntax/ruby/2.3.0.rb - lib/regexp_parser/syntax/ruby/2.3.1.rb - lib/regexp_parser/syntax/ruby/2.3.2.rb - lib/regexp_parser/syntax/ruby/2.3.3.rb - lib/regexp_parser/syntax/ruby/2.3.4.rb - lib/regexp_parser/syntax/ruby/2.3.rb - lib/regexp_parser/syntax/ruby/2.4.0.rb - lib/regexp_parser/syntax/ruby/2.4.1.rb - lib/regexp_parser/syntax/ruby/2.4.rb - lib/regexp_parser/syntax/tokens.rb - lib/regexp_parser/syntax/tokens/anchor.rb - lib/regexp_parser/syntax/tokens/assertion.rb - lib/regexp_parser/syntax/tokens/backref.rb - lib/regexp_parser/syntax/tokens/character_set.rb - lib/regexp_parser/syntax/tokens/character_type.rb - lib/regexp_parser/syntax/tokens/conditional.rb - lib/regexp_parser/syntax/tokens/escape.rb - lib/regexp_parser/syntax/tokens/group.rb - lib/regexp_parser/syntax/tokens/keep.rb - lib/regexp_parser/syntax/tokens/meta.rb - lib/regexp_parser/syntax/tokens/quantifier.rb - lib/regexp_parser/syntax/tokens/unicode_property.rb - lib/regexp_parser/syntax/versions.rb - lib/regexp_parser/token.rb - lib/regexp_parser/version.rb - regexp_parser.gemspec - test/expression/test_all.rb - test/expression/test_base.rb - test/expression/test_clone.rb - test/expression/test_conditionals.rb - test/expression/test_free_space.rb - test/expression/test_set.rb - test/expression/test_strfregexp.rb - test/expression/test_subexpression.rb - test/expression/test_tests.rb - test/expression/test_to_h.rb - test/expression/test_to_s.rb - test/expression/test_traverse.rb - test/helpers.rb - test/lexer/test_all.rb - test/lexer/test_conditionals.rb - test/lexer/test_keep.rb - test/lexer/test_literals.rb - test/lexer/test_nesting.rb - test/lexer/test_refcalls.rb - test/parser/test_all.rb - test/parser/test_alternation.rb - test/parser/test_anchors.rb - test/parser/test_conditionals.rb - test/parser/test_errors.rb - test/parser/test_escapes.rb - test/parser/test_free_space.rb - test/parser/test_groups.rb - test/parser/test_keep.rb - test/parser/test_properties.rb - test/parser/test_quantifiers.rb - test/parser/test_refcalls.rb - test/parser/test_sets.rb - test/parser/test_types.rb - test/scanner/test_all.rb - test/scanner/test_anchors.rb - test/scanner/test_conditionals.rb - test/scanner/test_errors.rb - test/scanner/test_escapes.rb - test/scanner/test_free_space.rb - test/scanner/test_groups.rb - test/scanner/test_keep.rb - test/scanner/test_literals.rb - test/scanner/test_meta.rb - test/scanner/test_properties.rb - test/scanner/test_quantifiers.rb - test/scanner/test_refcalls.rb - test/scanner/test_scripts.rb - test/scanner/test_sets.rb - test/scanner/test_types.rb - test/scanner/test_unicode_blocks.rb - test/support/disable_autotest.rb - test/support/runner.rb - test/support/warning_extractor.rb - test/syntax/ruby/test_1.8.rb - test/syntax/ruby/test_1.9.1.rb - test/syntax/ruby/test_1.9.3.rb - test/syntax/ruby/test_2.0.0.rb - test/syntax/ruby/test_2.2.0.rb - test/syntax/ruby/test_all.rb - test/syntax/ruby/test_files.rb - test/syntax/test_all.rb - test/syntax/test_syntax.rb - test/test_all.rb - test/token/test_all.rb - test/token/test_token.rb homepage: http://github.com/ammar/regexp_parser licenses: - MIT metadata: issue_tracker: https://github.com/ammar/regexp_parser/issues post_install_message: rdoc_options: - "--inline-source" - "--charset=UTF-8" require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.9.1 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.6.11 signing_key: specification_version: 4 summary: Scanner, lexer, parser for ruby's regular expressions test_files: - test/expression/test_all.rb - test/expression/test_base.rb - test/expression/test_clone.rb - test/expression/test_conditionals.rb - test/expression/test_free_space.rb - test/expression/test_set.rb - test/expression/test_strfregexp.rb - test/expression/test_subexpression.rb - test/expression/test_tests.rb - test/expression/test_to_h.rb - test/expression/test_to_s.rb - test/expression/test_traverse.rb - test/helpers.rb - test/lexer/test_all.rb - test/lexer/test_conditionals.rb - test/lexer/test_keep.rb - test/lexer/test_literals.rb - test/lexer/test_nesting.rb - test/lexer/test_refcalls.rb - test/parser/test_all.rb - test/parser/test_alternation.rb - test/parser/test_anchors.rb - test/parser/test_conditionals.rb - test/parser/test_errors.rb - test/parser/test_escapes.rb - test/parser/test_free_space.rb - test/parser/test_groups.rb - test/parser/test_keep.rb - test/parser/test_properties.rb - test/parser/test_quantifiers.rb - test/parser/test_refcalls.rb - test/parser/test_sets.rb - test/parser/test_types.rb - test/scanner/test_all.rb - test/scanner/test_anchors.rb - test/scanner/test_conditionals.rb - test/scanner/test_errors.rb - test/scanner/test_escapes.rb - test/scanner/test_free_space.rb - test/scanner/test_groups.rb - test/scanner/test_keep.rb - test/scanner/test_literals.rb - test/scanner/test_meta.rb - test/scanner/test_properties.rb - test/scanner/test_quantifiers.rb - test/scanner/test_refcalls.rb - test/scanner/test_scripts.rb - test/scanner/test_sets.rb - test/scanner/test_types.rb - test/scanner/test_unicode_blocks.rb - test/support/disable_autotest.rb - test/support/runner.rb - test/support/warning_extractor.rb - test/syntax/ruby/test_1.8.rb - test/syntax/ruby/test_1.9.1.rb - test/syntax/ruby/test_1.9.3.rb - test/syntax/ruby/test_2.0.0.rb - test/syntax/ruby/test_2.2.0.rb - test/syntax/ruby/test_all.rb - test/syntax/ruby/test_files.rb - test/syntax/test_all.rb - test/syntax/test_syntax.rb - test/test_all.rb - test/token/test_all.rb - test/token/test_token.rb