--- !ruby/object:Gem::Specification name: gherkin version: !ruby/object:Gem::Version prerelease: false segments: - 2 - 3 - 0 version: 2.3.0 platform: java authors: - Mike Sassak - Gregory Hnatiuk - "Aslak Helles\xC3\xB8y" autorequire: bindir: bin cert_chain: [] date: 2010-11-12 00:00:00 +00:00 default_executable: gherkin dependencies: - !ruby/object:Gem::Dependency name: json prerelease: false requirement: &id001 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 1 - 4 - 6 version: 1.4.6 type: :runtime version_requirements: *id001 - !ruby/object:Gem::Dependency name: term-ansicolor prerelease: false requirement: &id002 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 1 - 0 - 5 version: 1.0.5 type: :runtime version_requirements: *id002 - !ruby/object:Gem::Dependency name: rake prerelease: false requirement: &id003 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 0 - 8 - 7 version: 0.8.7 type: :development version_requirements: *id003 - !ruby/object:Gem::Dependency name: awesome_print prerelease: false requirement: &id004 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 0 - 2 - 1 version: 0.2.1 type: :development version_requirements: *id004 - !ruby/object:Gem::Dependency name: rspec prerelease: false requirement: &id005 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 2 - 0 - 1 version: 2.0.1 type: :development version_requirements: *id005 - !ruby/object:Gem::Dependency name: cucumber prerelease: false requirement: &id006 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version segments: - 0 - 9 - 4 version: 0.9.4 type: :development version_requirements: *id006 description: A fast Gherkin lexer/parser based on the Ragel State Machine Compiler. email: cukes@googlegroups.com executables: [] extensions: [] extra_rdoc_files: - LICENSE - README.rdoc - History.txt files: - .gitattributes - .gitignore - .mailmap - .rspec - .rvmrc - Gemfile - History.txt - LICENSE - README.rdoc - Rakefile - VERSION - build_native_gems.sh - cucumber.yml - features/escaped_pipes.feature - features/feature_parser.feature - features/json_formatter.feature - features/json_parser.feature - features/native_lexer.feature - features/parser_with_native_lexer.feature - features/pretty_formatter.feature - features/step_definitions/eyeball_steps.rb - features/step_definitions/gherkin_steps.rb - features/step_definitions/json_formatter_steps.rb - features/step_definitions/json_parser_steps.rb - features/step_definitions/pretty_formatter_steps.rb - features/steps_parser.feature - features/support/env.rb - gherkin.gemspec - ikvm/.gitignore - java/.gitignore - java/Gherkin.iml - java/src/main/java/gherkin/lexer/i18n/.gitignore - java/src/main/resources/gherkin/.gitignore - lib/.gitignore - lib/gherkin.rb - lib/gherkin/c_lexer.rb - lib/gherkin/formatter/argument.rb - lib/gherkin/formatter/colors.rb - lib/gherkin/formatter/escaping.rb - lib/gherkin/formatter/filter_formatter.rb - lib/gherkin/formatter/hashable.rb - lib/gherkin/formatter/json_formatter.rb - lib/gherkin/formatter/line_filter.rb - lib/gherkin/formatter/model.rb - lib/gherkin/formatter/pretty_formatter.rb - lib/gherkin/formatter/regexp_filter.rb - lib/gherkin/formatter/step_printer.rb - lib/gherkin/formatter/tag_count_formatter.rb - lib/gherkin/formatter/tag_filter.rb - lib/gherkin/i18n.rb - lib/gherkin/i18n.yml - lib/gherkin/json_parser.rb - lib/gherkin/lexer/i18n_lexer.rb - lib/gherkin/listener/event.rb - lib/gherkin/listener/formatter_listener.rb - lib/gherkin/native.rb - lib/gherkin/native/ikvm.rb - lib/gherkin/native/java.rb - lib/gherkin/native/null.rb - lib/gherkin/parser/meta.txt - lib/gherkin/parser/parser.rb - lib/gherkin/parser/root.txt - lib/gherkin/parser/steps.txt - lib/gherkin/rb_lexer.rb - lib/gherkin/rb_lexer/.gitignore - lib/gherkin/rb_lexer/README.rdoc - lib/gherkin/rubify.rb - lib/gherkin/tag_expression.rb - lib/gherkin/version.rb - ragel/i18n/.gitignore - ragel/lexer.c.rl.erb - ragel/lexer.java.rl.erb - ragel/lexer.rb.rl.erb - ragel/lexer_common.rl.erb - spec/gherkin/c_lexer_spec.rb - spec/gherkin/fixtures/1.feature - spec/gherkin/fixtures/comments_in_table.feature - spec/gherkin/fixtures/complex.feature - spec/gherkin/fixtures/complex.json - spec/gherkin/fixtures/complex_for_filtering.feature - spec/gherkin/fixtures/complex_with_tags.feature - spec/gherkin/fixtures/dos_line_endings.feature - spec/gherkin/fixtures/hantu_pisang.feature - spec/gherkin/fixtures/i18n_fr.feature - spec/gherkin/fixtures/i18n_no.feature - spec/gherkin/fixtures/i18n_zh-CN.feature - spec/gherkin/fixtures/scenario_outline_with_tags.feature - spec/gherkin/fixtures/scenario_without_steps.feature - spec/gherkin/fixtures/simple_with_comments.feature - spec/gherkin/fixtures/simple_with_tags.feature - spec/gherkin/fixtures/with_bom.feature - spec/gherkin/formatter/colors_spec.rb - spec/gherkin/formatter/filter_formatter_spec.rb - spec/gherkin/formatter/model_spec.rb - spec/gherkin/formatter/pretty_formatter_spec.rb - spec/gherkin/formatter/spaces.feature - spec/gherkin/formatter/step_printer_spec.rb - spec/gherkin/formatter/tabs.feature - spec/gherkin/formatter/tag_count_formatter_spec.rb - spec/gherkin/i18n_spec.rb - spec/gherkin/java_lexer_spec.rb - spec/gherkin/java_libs.rb - spec/gherkin/json_parser_spec.rb - spec/gherkin/lexer/i18n_lexer_spec.rb - spec/gherkin/output_stream_string_io.rb - spec/gherkin/parser/parser_spec.rb - spec/gherkin/rb_lexer_spec.rb - spec/gherkin/sexp_recorder.rb - spec/gherkin/shared/lexer_group.rb - spec/gherkin/shared/py_string_group.rb - spec/gherkin/shared/row_group.rb - spec/gherkin/shared/tags_group.rb - spec/gherkin/tag_expression_spec.rb - spec/spec_helper.rb - tasks/bench.rake - tasks/bench/feature_builder.rb - tasks/bench/generated/.gitignore - tasks/bench/null_listener.rb - tasks/compile.rake - tasks/cucumber.rake - tasks/gems.rake - tasks/ikvm.rake - tasks/ragel_task.rb - tasks/rdoc.rake - tasks/release.rake - tasks/rspec.rake - lib/gherkin.jar has_rdoc: true homepage: http://github.com/aslakhellesoy/gherkin licenses: [] post_install_message: rdoc_options: - --charset=UTF-8 require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version segments: - 0 version: "0" required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version segments: - 0 version: "0" requirements: [] rubyforge_project: rubygems_version: 1.3.7 signing_key: specification_version: 3 summary: gherkin-2.3.0 test_files: - features/escaped_pipes.feature - features/feature_parser.feature - features/json_formatter.feature - features/json_parser.feature - features/native_lexer.feature - features/parser_with_native_lexer.feature - features/pretty_formatter.feature - features/step_definitions/eyeball_steps.rb - features/step_definitions/gherkin_steps.rb - features/step_definitions/json_formatter_steps.rb - features/step_definitions/json_parser_steps.rb - features/step_definitions/pretty_formatter_steps.rb - features/steps_parser.feature - features/support/env.rb - spec/gherkin/c_lexer_spec.rb - spec/gherkin/fixtures/1.feature - spec/gherkin/fixtures/comments_in_table.feature - spec/gherkin/fixtures/complex.feature - spec/gherkin/fixtures/complex.json - spec/gherkin/fixtures/complex_for_filtering.feature - spec/gherkin/fixtures/complex_with_tags.feature - spec/gherkin/fixtures/dos_line_endings.feature - spec/gherkin/fixtures/hantu_pisang.feature - spec/gherkin/fixtures/i18n_fr.feature - spec/gherkin/fixtures/i18n_no.feature - spec/gherkin/fixtures/i18n_zh-CN.feature - spec/gherkin/fixtures/scenario_outline_with_tags.feature - spec/gherkin/fixtures/scenario_without_steps.feature - spec/gherkin/fixtures/simple_with_comments.feature - spec/gherkin/fixtures/simple_with_tags.feature - spec/gherkin/fixtures/with_bom.feature - spec/gherkin/formatter/colors_spec.rb - spec/gherkin/formatter/filter_formatter_spec.rb - spec/gherkin/formatter/model_spec.rb - spec/gherkin/formatter/pretty_formatter_spec.rb - spec/gherkin/formatter/spaces.feature - spec/gherkin/formatter/step_printer_spec.rb - spec/gherkin/formatter/tabs.feature - spec/gherkin/formatter/tag_count_formatter_spec.rb - spec/gherkin/i18n_spec.rb - spec/gherkin/java_lexer_spec.rb - spec/gherkin/java_libs.rb - spec/gherkin/json_parser_spec.rb - spec/gherkin/lexer/i18n_lexer_spec.rb - spec/gherkin/output_stream_string_io.rb - spec/gherkin/parser/parser_spec.rb - spec/gherkin/rb_lexer_spec.rb - spec/gherkin/sexp_recorder.rb - spec/gherkin/shared/lexer_group.rb - spec/gherkin/shared/py_string_group.rb - spec/gherkin/shared/row_group.rb - spec/gherkin/shared/tags_group.rb - spec/gherkin/tag_expression_spec.rb - spec/spec_helper.rb