kbaum-cucumber 0.4.5.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitattributes +1 -0
- data/.gitignore +18 -0
- data/Caliper.yml +5 -0
- data/History.txt +1292 -0
- data/LICENSE +22 -0
- data/README.rdoc +26 -0
- data/Rakefile +63 -0
- data/VERSION.yml +5 -0
- data/bin/cucumber +16 -0
- data/cucumber.gemspec +741 -0
- data/cucumber.yml +10 -0
- data/examples/dos_line_endings/Rakefile +6 -0
- data/examples/dos_line_endings/features/dos_line_endings.feature +9 -0
- data/examples/i18n/README.textile +18 -0
- data/examples/i18n/Rakefile +32 -0
- data/examples/i18n/ar/Rakefile +6 -0
- data/examples/i18n/ar/features/addition.feature +17 -0
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/ar/lib/calculator.rb +11 -0
- data/examples/i18n/bg/Rakefile +6 -0
- data/examples/i18n/bg/features/addition.feature +12 -0
- data/examples/i18n/bg/features/consecutive_calculations.feature +19 -0
- data/examples/i18n/bg/features/division.feature +17 -0
- data/examples/i18n/bg/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/bg/features/support/env.rb +6 -0
- data/examples/i18n/bg/features/support/world.rb +8 -0
- data/examples/i18n/bg/lib/calculator.rb +24 -0
- data/examples/i18n/cat/Rakefile +6 -0
- data/examples/i18n/cat/features/step_definitons/calculator_steps.rb +21 -0
- data/examples/i18n/cat/features/suma.feature +17 -0
- data/examples/i18n/cat/lib/calculadora.rb +16 -0
- data/examples/i18n/da/Rakefile +6 -0
- data/examples/i18n/da/features/sammenlaegning.feature +18 -0
- data/examples/i18n/da/features/step_definitons/lommeregner_steps.rb +24 -0
- data/examples/i18n/da/lib/lommeregner.rb +11 -0
- data/examples/i18n/de/.gitignore +1 -0
- data/examples/i18n/de/Rakefile +6 -0
- data/examples/i18n/de/features/addition.feature +17 -0
- data/examples/i18n/de/features/division.feature +10 -0
- data/examples/i18n/de/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/de/lib/calculator.rb +14 -0
- data/examples/i18n/en-lol/Rakefile +4 -0
- data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
- data/examples/i18n/en-lol/features/stuffing.feature +8 -0
- data/examples/i18n/en-lol/features/support/env.rb +8 -0
- data/examples/i18n/en-lol/lib/basket.rb +12 -0
- data/examples/i18n/en-lol/lib/belly.rb +11 -0
- data/examples/i18n/en/.gitignore +1 -0
- data/examples/i18n/en/Rakefile +6 -0
- data/examples/i18n/en/features/addition.feature +17 -0
- data/examples/i18n/en/features/division.feature +10 -0
- data/examples/i18n/en/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/en/lib/calculator.rb +14 -0
- data/examples/i18n/es/Rakefile +6 -0
- data/examples/i18n/es/features/adicion.feature +17 -0
- data/examples/i18n/es/features/step_definitons/calculador_steps.rb +21 -0
- data/examples/i18n/es/lib/calculador.rb +14 -0
- data/examples/i18n/et/Rakefile +6 -0
- data/examples/i18n/et/features/jagamine.feature +10 -0
- data/examples/i18n/et/features/liitmine.feature +17 -0
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
- data/examples/i18n/et/lib/kalkulaator.rb +14 -0
- data/examples/i18n/fi/.gitignore +1 -0
- data/examples/i18n/fi/Rakefile +6 -0
- data/examples/i18n/fi/features/jakolasku.feature +10 -0
- data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
- data/examples/i18n/fi/features/yhteenlasku.feature +17 -0
- data/examples/i18n/fi/lib/laskin.rb +14 -0
- data/examples/i18n/fr/Rakefile +6 -0
- data/examples/i18n/fr/features/addition.feature +18 -0
- data/examples/i18n/fr/features/addition2.feature +17 -0
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +38 -0
- data/examples/i18n/fr/lib/calculatrice.rb +10 -0
- data/examples/i18n/he/Rakefile +6 -0
- data/examples/i18n/he/features/addition.feature +17 -0
- data/examples/i18n/he/features/division.feature +10 -0
- data/examples/i18n/he/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/he/lib/calculator.rb +14 -0
- data/examples/i18n/hu/.gitignore +1 -0
- data/examples/i18n/hu/Rakefile +6 -0
- data/examples/i18n/hu/features/addition.feature +17 -0
- data/examples/i18n/hu/features/division.feature +10 -0
- data/examples/i18n/hu/features/step_definitons/calculator_steps.rb +25 -0
- data/examples/i18n/hu/lib/calculator.rb +14 -0
- data/examples/i18n/id/.gitignore +1 -0
- data/examples/i18n/id/Rakefile +6 -0
- data/examples/i18n/id/features/addition.feature +17 -0
- data/examples/i18n/id/features/division.feature +10 -0
- data/examples/i18n/id/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/id/lib/calculator.rb +14 -0
- data/examples/i18n/it/Rakefile +6 -0
- data/examples/i18n/it/features/somma.feature +11 -0
- data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +24 -0
- data/examples/i18n/it/lib/calcolatrice.rb +11 -0
- data/examples/i18n/ja/.gitignore +1 -0
- data/examples/i18n/ja/Rakefile +6 -0
- data/examples/i18n/ja/features/addition.feature +17 -0
- data/examples/i18n/ja/features/division.feature +10 -0
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/ja/lib/calculator.rb +14 -0
- data/examples/i18n/ko/.gitignore +1 -0
- data/examples/i18n/ko/Rakefile +6 -0
- data/examples/i18n/ko/features/addition.feature +17 -0
- data/examples/i18n/ko/features/division.feature +11 -0
- data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/ko/lib/calculator.rb +14 -0
- data/examples/i18n/lt/.gitignore +1 -0
- data/examples/i18n/lt/Rakefile +6 -0
- data/examples/i18n/lt/features/addition.feature +17 -0
- data/examples/i18n/lt/features/division.feature +10 -0
- data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/lt/lib/calculator.rb +14 -0
- data/examples/i18n/lv/Rakefile +6 -0
- data/examples/i18n/lv/features/addition.feature +17 -0
- data/examples/i18n/lv/features/division.feature +10 -0
- data/examples/i18n/lv/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/lv/lib/calculator.rb +14 -0
- data/examples/i18n/no/Rakefile +6 -0
- data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +17 -0
- data/examples/i18n/no/features/summering.feature +19 -0
- data/examples/i18n/no/features/support/env.rb +6 -0
- data/examples/i18n/no/lib/kalkulator.rb +11 -0
- data/examples/i18n/pl/.gitignore +1 -0
- data/examples/i18n/pl/Rakefile +6 -0
- data/examples/i18n/pl/features/addition.feature +17 -0
- data/examples/i18n/pl/features/division.feature +10 -0
- data/examples/i18n/pl/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/pl/features/support/env.rb +6 -0
- data/examples/i18n/pl/lib/calculator.rb +14 -0
- data/examples/i18n/pt/Rakefile +6 -0
- data/examples/i18n/pt/features/adicao.feature +11 -0
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +20 -0
- data/examples/i18n/pt/features/support/env.rb +6 -0
- data/examples/i18n/pt/lib/calculadora.rb +10 -0
- data/examples/i18n/ro/Rakefile +6 -0
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/ro/features/suma.feature +11 -0
- data/examples/i18n/ro/lib/calculator.rb +11 -0
- data/examples/i18n/ru/Rakefile +6 -0
- data/examples/i18n/ru/features/addition.feature +11 -0
- data/examples/i18n/ru/features/consecutive_calculations.feature +17 -0
- data/examples/i18n/ru/features/division.feature +16 -0
- data/examples/i18n/ru/features/step_definitons/calculator_steps.rb +19 -0
- data/examples/i18n/ru/features/support/env.rb +6 -0
- data/examples/i18n/ru/features/support/world.rb +8 -0
- data/examples/i18n/ru/lib/calculator.rb +24 -0
- data/examples/i18n/se/Rakefile +6 -0
- data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +24 -0
- data/examples/i18n/se/features/summering.feature +18 -0
- data/examples/i18n/se/lib/kalkulator.rb +11 -0
- data/examples/i18n/sk/.gitignore +1 -0
- data/examples/i18n/sk/Rakefile +6 -0
- data/examples/i18n/sk/features/addition.feature +17 -0
- data/examples/i18n/sk/features/division.feature +10 -0
- data/examples/i18n/sk/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sk/lib/calculator.rb +14 -0
- data/examples/i18n/sr-latn/Rakefile +6 -0
- data/examples/i18n/sr-latn/features/sabiranje.feature +18 -0
- data/examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr-latn/lib/calculator.rb +12 -0
- data/examples/i18n/sr/Rakefile +6 -0
- data/examples/i18n/sr/features/sabiranje.feature +18 -0
- data/examples/i18n/sr/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr/lib/calculator.rb +12 -0
- data/examples/i18n/tr/.gitignore +1 -0
- data/examples/i18n/tr/Rakefile +6 -0
- data/examples/i18n/tr/features/bolme.feature +10 -0
- data/examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb +24 -0
- data/examples/i18n/tr/features/toplama.feature +18 -0
- data/examples/i18n/tr/lib/hesap_makinesi.rb +15 -0
- data/examples/i18n/uz/Rakefile +6 -0
- data/examples/i18n/uz/features/addition.feature +10 -0
- data/examples/i18n/uz/features/consecutive_calculations.feature +17 -0
- data/examples/i18n/uz/features/division.feature +17 -0
- data/examples/i18n/uz/features/step_definitons/calculator_steps.rb +19 -0
- data/examples/i18n/uz/features/support/env.rb +6 -0
- data/examples/i18n/uz/features/support/world.rb +8 -0
- data/examples/i18n/uz/lib/calculator.rb +24 -0
- data/examples/i18n/zh-CN/Rakefile +4 -0
- data/examples/i18n/zh-CN/features/addition.feature +18 -0
- data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +26 -0
- data/examples/i18n/zh-CN/lib/calculator.rb +10 -0
- data/examples/i18n/zh-TW/.gitignore +1 -0
- data/examples/i18n/zh-TW/Rakefile +4 -0
- data/examples/i18n/zh-TW/features/addition.feature +17 -0
- data/examples/i18n/zh-TW/features/division.feature +11 -0
- data/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/zh-TW/lib/calculator.rb +14 -0
- data/examples/junit/features/one_passing_one_failing.feature +8 -0
- data/examples/junit/features/pending.feature +5 -0
- data/examples/junit/features/step_definitions/steps.rb +11 -0
- data/examples/python/features/fibonacci.feature +19 -0
- data/examples/python/features/step_definitions/fib_steps.py +11 -0
- data/examples/python/lib/.gitignore +1 -0
- data/examples/python/lib/fib.py +7 -0
- data/examples/ramaze/README.textile +7 -0
- data/examples/ramaze/Rakefile +6 -0
- data/examples/ramaze/app.rb +21 -0
- data/examples/ramaze/features/add.feature +11 -0
- data/examples/ramaze/features/step_definitions/add_steps.rb +15 -0
- data/examples/ramaze/features/support/env.rb +32 -0
- data/examples/ramaze/layout/default.html.erb +8 -0
- data/examples/ramaze/view/index.html.erb +5 -0
- data/examples/ruby2python/features/fibonacci.feature +19 -0
- data/examples/ruby2python/features/step_definitions/fib_steps.rb +7 -0
- data/examples/ruby2python/features/support/env.rb +21 -0
- data/examples/ruby2python/lib/.gitignore +1 -0
- data/examples/ruby2python/lib/fib.py +7 -0
- data/examples/selenium/Rakefile +6 -0
- data/examples/selenium/features/search.feature +9 -0
- data/examples/selenium/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium/features/support/env.rb +19 -0
- data/examples/selenium_webrat/Rakefile +6 -0
- data/examples/selenium_webrat/config.ru +0 -0
- data/examples/selenium_webrat/features/search.feature +9 -0
- data/examples/selenium_webrat/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium_webrat/features/support/env.rb +45 -0
- data/examples/self_test/.gitignore +1 -0
- data/examples/self_test/README.textile +6 -0
- data/examples/self_test/Rakefile +6 -0
- data/examples/self_test/features/background/background_tagged_before_on_outline.feature +12 -0
- data/examples/self_test/features/background/background_with_name.feature +7 -0
- data/examples/self_test/features/background/failing_background.feature +12 -0
- data/examples/self_test/features/background/failing_background_after_success.feature +11 -0
- data/examples/self_test/features/background/multiline_args_background.feature +32 -0
- data/examples/self_test/features/background/passing_background.feature +10 -0
- data/examples/self_test/features/background/pending_background.feature +10 -0
- data/examples/self_test/features/background/scenario_outline_failing_background.feature +16 -0
- data/examples/self_test/features/background/scenario_outline_passing_background.feature +16 -0
- data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
- data/examples/self_test/features/failing_expectation.feature +4 -0
- data/examples/self_test/features/lots_of_undefined.feature +8 -0
- data/examples/self_test/features/multiline_name.feature +27 -0
- data/examples/self_test/features/outline_sample.feature +15 -0
- data/examples/self_test/features/sample.feature +21 -0
- data/examples/self_test/features/search_sample.feature +32 -0
- data/examples/self_test/features/step_definitions/sample_steps.rb +81 -0
- data/examples/self_test/features/support/env.rb +18 -0
- data/examples/self_test/features/tags_sample.feature +17 -0
- data/examples/self_test/features/tons_of_cukes.feature +52 -0
- data/examples/self_test/features/undefined_multiline_args.feature +12 -0
- data/examples/self_test/list-of-features.txt +1 -0
- data/examples/sinatra/README.textile +13 -0
- data/examples/sinatra/Rakefile +6 -0
- data/examples/sinatra/app.rb +14 -0
- data/examples/sinatra/features/add.feature +11 -0
- data/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
- data/examples/sinatra/features/support/env.rb +30 -0
- data/examples/sinatra/views/add.erb +5 -0
- data/examples/sinatra/views/layout.erb +8 -0
- data/examples/steps_library/features/step_definitions/steps_lib1.rb +8 -0
- data/examples/steps_library/features/step_definitions/steps_lib2.rb +8 -0
- data/examples/tcl/README.textile +11 -0
- data/examples/tcl/Rakefile +6 -0
- data/examples/tcl/features/fibonnacci.feature +17 -0
- data/examples/tcl/features/step_definitions/fib_steps.rb +7 -0
- data/examples/tcl/features/support/env.rb +6 -0
- data/examples/tcl/src/fib.tcl +3 -0
- data/examples/test_unit/Rakefile +6 -0
- data/examples/test_unit/features/step_definitions/test_unit_steps.rb +23 -0
- data/examples/test_unit/features/test_unit.feature +9 -0
- data/examples/tickets/Rakefile +20 -0
- data/examples/tickets/features.html +138 -0
- data/examples/tickets/features/172.feature +28 -0
- data/examples/tickets/features/177/1.feature +28 -0
- data/examples/tickets/features/177/2.feature +20 -0
- data/examples/tickets/features/177/3.feature +18 -0
- data/examples/tickets/features/180.feature +7 -0
- data/examples/tickets/features/229/tagged_hooks.feature +8 -0
- data/examples/tickets/features/229/tagged_hooks.rb +14 -0
- data/examples/tickets/features/236.feature +13 -0
- data/examples/tickets/features/241.feature +12 -0
- data/examples/tickets/features/246.feature +4 -0
- data/examples/tickets/features/248.feature +11 -0
- data/examples/tickets/features/270/back.feature +14 -0
- data/examples/tickets/features/270/back.steps.rb +14 -0
- data/examples/tickets/features/272/hooks.feature +26 -0
- data/examples/tickets/features/272/hooks_steps.rb +53 -0
- data/examples/tickets/features/279/py_string_indent.feature +25 -0
- data/examples/tickets/features/279/py_string_indent.steps.rb +12 -0
- data/examples/tickets/features/279/wrong.feature_ +11 -0
- data/examples/tickets/features/301/filter_background_tagged_hooks.feature +6 -0
- data/examples/tickets/features/301/filter_background_tagged_hooks_steps.rb +12 -0
- data/examples/tickets/features/306/only_background.feature +4 -0
- data/examples/tickets/features/lib/eatting_machine.rb +18 -0
- data/examples/tickets/features/lib/pantry.rb +20 -0
- data/examples/tickets/features/scenario_outline.feature +95 -0
- data/examples/tickets/features/step_definitons/246_steps.rb +3 -0
- data/examples/tickets/features/step_definitons/248_steps.rb +15 -0
- data/examples/tickets/features/step_definitons/scenario_outline_steps.rb +42 -0
- data/examples/tickets/features/step_definitons/tickets_steps.rb +81 -0
- data/examples/tickets/features/table_diffing.feature +13 -0
- data/examples/tickets/features/tickets.feature +28 -0
- data/examples/watir/README.textile +16 -0
- data/examples/watir/Rakefile +10 -0
- data/examples/watir/features/search.feature +12 -0
- data/examples/watir/features/step_definitions/search_steps.rb +26 -0
- data/examples/watir/features/support/env.rb +32 -0
- data/examples/watir/features/support/screenshots.rb +44 -0
- data/examples/webrat/features/search.feature +12 -0
- data/examples/webrat/features/step_definitions/kvasir_steps.rb +14 -0
- data/examples/webrat/features/support/env.rb +17 -0
- data/features/announce.feature +122 -0
- data/features/background.feature +308 -0
- data/features/bug_371.feature +32 -0
- data/features/bug_464.feature +16 -0
- data/features/bug_475.feature +43 -0
- data/features/call_many_steps.feature +124 -0
- data/features/cucumber_cli.feature +654 -0
- data/features/cucumber_cli_diff_disabled.feature +52 -0
- data/features/cucumber_cli_outlines.feature +105 -0
- data/features/custom_formatter.feature +47 -0
- data/features/default_snippets.feature +42 -0
- data/features/drb_server_integration.feature +174 -0
- data/features/exception_in_after_block.feature +100 -0
- data/features/exception_in_after_step_block.feature +102 -0
- data/features/exception_in_before_block.feature +78 -0
- data/features/exclude_files.feature +20 -0
- data/features/expand.feature +60 -0
- data/features/html_formatter.feature +7 -0
- data/features/html_formatter/a.html +400 -0
- data/features/junit_formatter.feature +88 -0
- data/features/language_from_header.feature +30 -0
- data/features/language_help.feature +68 -0
- data/features/listener_debugger_formatter.feature +41 -0
- data/features/multiline_names.feature +43 -0
- data/features/negative_tagged_hooks.feature +61 -0
- data/features/post_configuration_hook.feature +37 -0
- data/features/profiles.feature +112 -0
- data/features/rake_task.feature +152 -0
- data/features/report_called_undefined_steps.feature +34 -0
- data/features/simplest.feature +11 -0
- data/features/snippet.feature +22 -0
- data/features/step_definitions/cucumber_steps.rb +154 -0
- data/features/step_definitions/extra_steps.rb +2 -0
- data/features/step_definitions/simplest_steps.rb +3 -0
- data/features/step_definitions/wire_steps.rb +14 -0
- data/features/support/env.rb +141 -0
- data/features/support/env.rb.simplest +7 -0
- data/features/support/fake_wire_server.rb +63 -0
- data/features/table_diffing.feature +45 -0
- data/features/table_mapping.feature +35 -0
- data/features/tag_logic.feature +258 -0
- data/features/transform.feature +245 -0
- data/features/unicode_table.feature +35 -0
- data/features/usage_and_stepdefs_formatter.feature +169 -0
- data/features/wire_protocol.feature +177 -0
- data/features/work_in_progress.feature +156 -0
- data/gem_tasks/contributors.rake +13 -0
- data/gem_tasks/environment.rake +7 -0
- data/gem_tasks/features.rake +18 -0
- data/gem_tasks/fix_cr_lf.rake +10 -0
- data/gem_tasks/flog.rake +4 -0
- data/gem_tasks/rspec.rake +15 -0
- data/gem_tasks/sass.rake +4 -0
- data/gem_tasks/sdoc.rake +12 -0
- data/lib/README.rdoc +12 -0
- data/lib/autotest/cucumber.rb +6 -0
- data/lib/autotest/cucumber_mixin.rb +131 -0
- data/lib/autotest/cucumber_rails.rb +6 -0
- data/lib/autotest/cucumber_rails_rspec.rb +6 -0
- data/lib/autotest/cucumber_rspec.rb +6 -0
- data/lib/autotest/discover.rb +9 -0
- data/lib/cucumber.rb +15 -0
- data/lib/cucumber/ast.rb +30 -0
- data/lib/cucumber/ast/background.rb +75 -0
- data/lib/cucumber/ast/comment.rb +31 -0
- data/lib/cucumber/ast/examples.rb +36 -0
- data/lib/cucumber/ast/feature.rb +85 -0
- data/lib/cucumber/ast/feature_element.rb +68 -0
- data/lib/cucumber/ast/features.rb +40 -0
- data/lib/cucumber/ast/outline_table.rb +166 -0
- data/lib/cucumber/ast/py_string.rb +59 -0
- data/lib/cucumber/ast/scenario.rb +111 -0
- data/lib/cucumber/ast/scenario_outline.rb +100 -0
- data/lib/cucumber/ast/step.rb +121 -0
- data/lib/cucumber/ast/step_collection.rb +76 -0
- data/lib/cucumber/ast/step_invocation.rb +190 -0
- data/lib/cucumber/ast/table.rb +655 -0
- data/lib/cucumber/ast/tags.rb +122 -0
- data/lib/cucumber/ast/tree_walker.rb +201 -0
- data/lib/cucumber/ast/visitor.rb +11 -0
- data/lib/cucumber/broadcaster.rb +13 -0
- data/lib/cucumber/cli/configuration.rb +180 -0
- data/lib/cucumber/cli/drb_client.rb +32 -0
- data/lib/cucumber/cli/language_help_formatter.rb +72 -0
- data/lib/cucumber/cli/main.rb +121 -0
- data/lib/cucumber/cli/options.rb +404 -0
- data/lib/cucumber/cli/profile_loader.rb +82 -0
- data/lib/cucumber/constantize.rb +34 -0
- data/lib/cucumber/core_ext/instance_exec.rb +98 -0
- data/lib/cucumber/core_ext/proc.rb +30 -0
- data/lib/cucumber/core_ext/string.rb +16 -0
- data/lib/cucumber/feature_file.rb +54 -0
- data/lib/cucumber/filter.rb +41 -0
- data/lib/cucumber/formatter/ansicolor.rb +157 -0
- data/lib/cucumber/formatter/color_io.rb +23 -0
- data/lib/cucumber/formatter/console.rb +205 -0
- data/lib/cucumber/formatter/cucumber.css +248 -0
- data/lib/cucumber/formatter/cucumber.sass +241 -0
- data/lib/cucumber/formatter/debug.rb +33 -0
- data/lib/cucumber/formatter/duration.rb +13 -0
- data/lib/cucumber/formatter/html.rb +545 -0
- data/lib/cucumber/formatter/io.rb +33 -0
- data/lib/cucumber/formatter/junit.rb +149 -0
- data/lib/cucumber/formatter/ordered_xml_markup.rb +24 -0
- data/lib/cucumber/formatter/pdf.rb +234 -0
- data/lib/cucumber/formatter/pretty.rb +237 -0
- data/lib/cucumber/formatter/progress.rb +75 -0
- data/lib/cucumber/formatter/rerun.rb +50 -0
- data/lib/cucumber/formatter/stepdefs.rb +14 -0
- data/lib/cucumber/formatter/steps.rb +49 -0
- data/lib/cucumber/formatter/summary.rb +35 -0
- data/lib/cucumber/formatter/tag_cloud.rb +34 -0
- data/lib/cucumber/formatter/unicode.rb +35 -0
- data/lib/cucumber/formatter/usage.rb +127 -0
- data/lib/cucumber/language_support.rb +30 -0
- data/lib/cucumber/language_support/language_methods.rb +110 -0
- data/lib/cucumber/languages.yml +535 -0
- data/lib/cucumber/parser.rb +8 -0
- data/lib/cucumber/parser/common.rb +170 -0
- data/lib/cucumber/parser/common.tt +21 -0
- data/lib/cucumber/parser/feature.rb +1783 -0
- data/lib/cucumber/parser/feature.tt +317 -0
- data/lib/cucumber/parser/i18n.tt +34 -0
- data/lib/cucumber/parser/natural_language.rb +108 -0
- data/lib/cucumber/parser/py_string.rb +276 -0
- data/lib/cucumber/parser/py_string.tt +45 -0
- data/lib/cucumber/parser/table.rb +305 -0
- data/lib/cucumber/parser/table.tt +60 -0
- data/lib/cucumber/parser/treetop_ext.rb +53 -0
- data/lib/cucumber/platform.rb +31 -0
- data/lib/cucumber/py_support/py_dsl.py +10 -0
- data/lib/cucumber/py_support/py_language.py +10 -0
- data/lib/cucumber/py_support/py_language.rb +81 -0
- data/lib/cucumber/rake/task.rb +166 -0
- data/lib/cucumber/rb_support/rb_dsl.rb +102 -0
- data/lib/cucumber/rb_support/rb_hook.rb +19 -0
- data/lib/cucumber/rb_support/rb_language.rb +179 -0
- data/lib/cucumber/rb_support/rb_step_definition.rb +75 -0
- data/lib/cucumber/rb_support/rb_transform.rb +37 -0
- data/lib/cucumber/rb_support/rb_world.rb +81 -0
- data/lib/cucumber/rb_support/regexp_argument_matcher.rb +21 -0
- data/lib/cucumber/rspec_neuter.rb +23 -0
- data/lib/cucumber/step_argument.rb +9 -0
- data/lib/cucumber/step_definition_light.rb +20 -0
- data/lib/cucumber/step_match.rb +107 -0
- data/lib/cucumber/step_mother.rb +350 -0
- data/lib/cucumber/webrat/element_locator.rb +93 -0
- data/lib/cucumber/webrat/table_locator.rb +1 -0
- data/lib/cucumber/wire_support/connection.rb +42 -0
- data/lib/cucumber/wire_support/request_handler.rb +19 -0
- data/lib/cucumber/wire_support/wire_exception.rb +10 -0
- data/lib/cucumber/wire_support/wire_language.rb +52 -0
- data/lib/cucumber/wire_support/wire_packet.rb +34 -0
- data/lib/cucumber/wire_support/wire_protocol.rb +64 -0
- data/lib/cucumber/wire_support/wire_step_definition.rb +21 -0
- data/spec/cucumber/ast/background_spec.rb +54 -0
- data/spec/cucumber/ast/feature_element_spec.rb +41 -0
- data/spec/cucumber/ast/feature_factory.rb +62 -0
- data/spec/cucumber/ast/feature_spec.rb +44 -0
- data/spec/cucumber/ast/outline_table_spec.rb +21 -0
- data/spec/cucumber/ast/py_string_spec.rb +51 -0
- data/spec/cucumber/ast/scenario_outline_spec.rb +73 -0
- data/spec/cucumber/ast/scenario_spec.rb +45 -0
- data/spec/cucumber/ast/step_collection_spec.rb +17 -0
- data/spec/cucumber/ast/step_spec.rb +66 -0
- data/spec/cucumber/ast/table_spec.rb +422 -0
- data/spec/cucumber/ast/tags_spec.rb +29 -0
- data/spec/cucumber/ast/tree_walker_spec.rb +11 -0
- data/spec/cucumber/broadcaster_spec.rb +15 -0
- data/spec/cucumber/cli/configuration_spec.rb +396 -0
- data/spec/cucumber/cli/drb_client_spec.rb +77 -0
- data/spec/cucumber/cli/main_spec.rb +172 -0
- data/spec/cucumber/cli/options_spec.rb +335 -0
- data/spec/cucumber/cli/profile_loader_spec.rb +10 -0
- data/spec/cucumber/core_ext/proc_spec.rb +68 -0
- data/spec/cucumber/formatter/ansicolor_spec.rb +31 -0
- data/spec/cucumber/formatter/color_io_spec.rb +27 -0
- data/spec/cucumber/formatter/console_spec.rb +20 -0
- data/spec/cucumber/formatter/duration_spec.rb +22 -0
- data/spec/cucumber/formatter/html_spec.rb +213 -0
- data/spec/cucumber/formatter/junit_spec.rb +110 -0
- data/spec/cucumber/formatter/progress_spec.rb +38 -0
- data/spec/cucumber/formatter/spec_helper.rb +50 -0
- data/spec/cucumber/parser/feature_parser_spec.rb +400 -0
- data/spec/cucumber/parser/table_parser_spec.rb +52 -0
- data/spec/cucumber/rb_support/rb_step_definition_spec.rb +132 -0
- data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +18 -0
- data/spec/cucumber/sell_cucumbers.feature +19 -0
- data/spec/cucumber/step_match_spec.rb +56 -0
- data/spec/cucumber/step_mother_spec.rb +270 -0
- data/spec/cucumber/treetop_parser/empty_feature.feature +4 -0
- data/spec/cucumber/treetop_parser/empty_scenario.feature +9 -0
- data/spec/cucumber/treetop_parser/empty_scenario_outline.feature +3 -0
- data/spec/cucumber/treetop_parser/fit_scenario.feature +8 -0
- data/spec/cucumber/treetop_parser/given_scenario.feature +9 -0
- data/spec/cucumber/treetop_parser/invalid_scenario_outlines.feature +7 -0
- data/spec/cucumber/treetop_parser/multiline_steps.feature +17 -0
- data/spec/cucumber/treetop_parser/multiple_tables.feature +27 -0
- data/spec/cucumber/treetop_parser/scenario_outline.feature +16 -0
- data/spec/cucumber/treetop_parser/spaces.feature +12 -0
- data/spec/cucumber/treetop_parser/test_dos.feature +25 -0
- data/spec/cucumber/treetop_parser/with_comments.feature +23 -0
- data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
- data/spec/cucumber/wire_support/wire_language_spec.rb +47 -0
- data/spec/cucumber/wire_support/wire_packet_spec.rb +26 -0
- data/spec/cucumber/world/pending_spec.rb +46 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +18 -0
- metadata +813 -0
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2008,2009 Aslak Hellesøy
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
= Cucumber
|
2
|
+
|
3
|
+
The main website is at http://cukes.info/
|
4
|
+
The documentation is at http://github.com/aslakhellesoy/cucumber/wikis/home/
|
5
|
+
|
6
|
+
== Note on Patches/Pull Requests
|
7
|
+
|
8
|
+
* Fork the project.
|
9
|
+
* Make your feature addition or bug fix.
|
10
|
+
* Add tests for it. This is important so I don't break it in a
|
11
|
+
future version unintentionally.
|
12
|
+
* Commit, do not mess with Rakefile, version, or history.
|
13
|
+
(if you want to have your own version, that is fine but
|
14
|
+
bump version in a commit by itself I can ignore when I pull)
|
15
|
+
* Send me a pull request. Bonus points for topic branches.
|
16
|
+
|
17
|
+
== Running tests
|
18
|
+
|
19
|
+
rake
|
20
|
+
|
21
|
+
If you get errors about missing gems - just install them.
|
22
|
+
|
23
|
+
== Copyright
|
24
|
+
|
25
|
+
Copyright (c) 2008,2009 Aslak Hellesøy. See LICENSE for details.
|
26
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'rubygems'
|
3
|
+
require 'term/ansicolor'
|
4
|
+
require 'rake'
|
5
|
+
$:.unshift(File.dirname(__FILE__) + '/lib')
|
6
|
+
require 'cucumber/formatter/ansicolor'
|
7
|
+
|
8
|
+
begin
|
9
|
+
require 'jeweler'
|
10
|
+
Jeweler::Tasks.new do |gem|
|
11
|
+
gem.name = "kbaum-cucumber"
|
12
|
+
gem.summary = %Q{Behaviour Driven Development with elegance and joy}
|
13
|
+
gem.description = %Q{A BDD tool written in Ruby}
|
14
|
+
gem.email = "cukes@googlegroups.com"
|
15
|
+
gem.homepage = "http://cukes.info"
|
16
|
+
gem.authors = ["Aslak Hellesøy"]
|
17
|
+
gem.rubyforge_project = "rspec"
|
18
|
+
|
19
|
+
gem.add_dependency 'term-ansicolor', '1.0.4'
|
20
|
+
gem.add_dependency 'treetop', '1.4.2'
|
21
|
+
gem.add_dependency 'polyglot', '0.2.9'
|
22
|
+
gem.add_dependency 'builder', '2.1.2'
|
23
|
+
gem.add_dependency 'diff-lcs', '1.1.2'
|
24
|
+
|
25
|
+
gem.add_development_dependency 'nokogiri', '1.4.0'
|
26
|
+
gem.add_development_dependency 'prawn', '0.5.1'
|
27
|
+
gem.add_development_dependency 'rspec', '1.2.9'
|
28
|
+
gem.add_development_dependency 'spork', '0.7.3'
|
29
|
+
|
30
|
+
extend Cucumber::Formatter::ANSIColor
|
31
|
+
gem.post_install_message = <<-POST_INSTALL_MESSAGE
|
32
|
+
|
33
|
+
#{cukes(15)}
|
34
|
+
|
35
|
+
#{cukes(1)} U P G R A D I N G #{cukes(1)}
|
36
|
+
|
37
|
+
Thank you for installing cucumber-#{Cucumber::VERSION}.
|
38
|
+
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
39
|
+
for important information about this release. Happy cuking!
|
40
|
+
|
41
|
+
#{cukes(15)}
|
42
|
+
|
43
|
+
POST_INSTALL_MESSAGE
|
44
|
+
end
|
45
|
+
|
46
|
+
Jeweler::GemcutterTasks.new
|
47
|
+
Jeweler::RubyforgeTasks.new do |rubyforge|
|
48
|
+
rubyforge.doc_task = "sdoc"
|
49
|
+
end
|
50
|
+
rescue LoadError
|
51
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
52
|
+
end
|
53
|
+
|
54
|
+
Dir['gem_tasks/**/*.rake'].each { |rake| load rake }
|
55
|
+
|
56
|
+
if(Cucumber::RUBY_1_9)
|
57
|
+
task :default => [:check_dependencies, :cucumber] # RSpec doesn't run on 1.9 yet.
|
58
|
+
else
|
59
|
+
task :default => [:check_dependencies, :spec, :cucumber]
|
60
|
+
end
|
61
|
+
|
62
|
+
require 'rake/clean'
|
63
|
+
CLEAN.include %w(**/*.{log,pyc})
|
data/VERSION.yml
ADDED
data/bin/cucumber
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(__FILE__) + '/../lib')
|
3
|
+
|
4
|
+
require 'cucumber/rspec_neuter'
|
5
|
+
require 'cucumber/cli/main'
|
6
|
+
begin
|
7
|
+
# The dup is to keep ARGV intact, so that tools like ruby-debug can respawn.
|
8
|
+
failure = Cucumber::Cli::Main.execute(ARGV.dup)
|
9
|
+
Kernel.exit(failure ? 1 : 0)
|
10
|
+
rescue SystemExit => e
|
11
|
+
Kernel.exit(e.status)
|
12
|
+
rescue Exception => e
|
13
|
+
STDERR.puts("#{e.message} (#{e.class})")
|
14
|
+
STDERR.puts(e.backtrace.join("\n"))
|
15
|
+
Kernel.exit(1)
|
16
|
+
end
|
data/cucumber.gemspec
ADDED
@@ -0,0 +1,741 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{kbaum-cucumber}
|
8
|
+
s.version = "0.4.4.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Aslak Helles\303\270y"]
|
12
|
+
s.date = %q{2009-12-06}
|
13
|
+
s.default_executable = %q{cucumber}
|
14
|
+
s.description = %q{A BDD tool written in Ruby}
|
15
|
+
s.email = %q{cukes@googlegroups.com}
|
16
|
+
s.executables = ["cucumber"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".gitattributes",
|
23
|
+
".gitignore",
|
24
|
+
"Caliper.yml",
|
25
|
+
"History.txt",
|
26
|
+
"LICENSE",
|
27
|
+
"README.rdoc",
|
28
|
+
"Rakefile",
|
29
|
+
"VERSION.yml",
|
30
|
+
"bin/cucumber",
|
31
|
+
"cucumber.gemspec",
|
32
|
+
"cucumber.yml",
|
33
|
+
"examples/dos_line_endings/Rakefile",
|
34
|
+
"examples/dos_line_endings/features/dos_line_endings.feature",
|
35
|
+
"examples/i18n/README.textile",
|
36
|
+
"examples/i18n/Rakefile",
|
37
|
+
"examples/i18n/ar/Rakefile",
|
38
|
+
"examples/i18n/ar/features/addition.feature",
|
39
|
+
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
40
|
+
"examples/i18n/ar/lib/calculator.rb",
|
41
|
+
"examples/i18n/bg/Rakefile",
|
42
|
+
"examples/i18n/bg/features/addition.feature",
|
43
|
+
"examples/i18n/bg/features/consecutive_calculations.feature",
|
44
|
+
"examples/i18n/bg/features/division.feature",
|
45
|
+
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
46
|
+
"examples/i18n/bg/features/support/env.rb",
|
47
|
+
"examples/i18n/bg/features/support/world.rb",
|
48
|
+
"examples/i18n/bg/lib/calculator.rb",
|
49
|
+
"examples/i18n/cat/Rakefile",
|
50
|
+
"examples/i18n/cat/features/step_definitons/calculator_steps.rb",
|
51
|
+
"examples/i18n/cat/features/suma.feature",
|
52
|
+
"examples/i18n/cat/lib/calculadora.rb",
|
53
|
+
"examples/i18n/da/Rakefile",
|
54
|
+
"examples/i18n/da/features/sammenlaegning.feature",
|
55
|
+
"examples/i18n/da/features/step_definitons/lommeregner_steps.rb",
|
56
|
+
"examples/i18n/da/lib/lommeregner.rb",
|
57
|
+
"examples/i18n/de/.gitignore",
|
58
|
+
"examples/i18n/de/Rakefile",
|
59
|
+
"examples/i18n/de/features/addition.feature",
|
60
|
+
"examples/i18n/de/features/division.feature",
|
61
|
+
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
62
|
+
"examples/i18n/de/lib/calculator.rb",
|
63
|
+
"examples/i18n/en-lol/Rakefile",
|
64
|
+
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
65
|
+
"examples/i18n/en-lol/features/stuffing.feature",
|
66
|
+
"examples/i18n/en-lol/features/support/env.rb",
|
67
|
+
"examples/i18n/en-lol/lib/basket.rb",
|
68
|
+
"examples/i18n/en-lol/lib/belly.rb",
|
69
|
+
"examples/i18n/en/.gitignore",
|
70
|
+
"examples/i18n/en/Rakefile",
|
71
|
+
"examples/i18n/en/features/addition.feature",
|
72
|
+
"examples/i18n/en/features/division.feature",
|
73
|
+
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
74
|
+
"examples/i18n/en/lib/calculator.rb",
|
75
|
+
"examples/i18n/es/Rakefile",
|
76
|
+
"examples/i18n/es/features/adicion.feature",
|
77
|
+
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
78
|
+
"examples/i18n/es/lib/calculador.rb",
|
79
|
+
"examples/i18n/et/Rakefile",
|
80
|
+
"examples/i18n/et/features/jagamine.feature",
|
81
|
+
"examples/i18n/et/features/liitmine.feature",
|
82
|
+
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
83
|
+
"examples/i18n/et/lib/kalkulaator.rb",
|
84
|
+
"examples/i18n/fi/.gitignore",
|
85
|
+
"examples/i18n/fi/Rakefile",
|
86
|
+
"examples/i18n/fi/features/jakolasku.feature",
|
87
|
+
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
88
|
+
"examples/i18n/fi/features/yhteenlasku.feature",
|
89
|
+
"examples/i18n/fi/lib/laskin.rb",
|
90
|
+
"examples/i18n/fr/Rakefile",
|
91
|
+
"examples/i18n/fr/features/addition.feature",
|
92
|
+
"examples/i18n/fr/features/addition2.feature",
|
93
|
+
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
94
|
+
"examples/i18n/fr/lib/calculatrice.rb",
|
95
|
+
"examples/i18n/he/Rakefile",
|
96
|
+
"examples/i18n/he/features/addition.feature",
|
97
|
+
"examples/i18n/he/features/division.feature",
|
98
|
+
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
99
|
+
"examples/i18n/he/lib/calculator.rb",
|
100
|
+
"examples/i18n/hu/.gitignore",
|
101
|
+
"examples/i18n/hu/Rakefile",
|
102
|
+
"examples/i18n/hu/features/addition.feature",
|
103
|
+
"examples/i18n/hu/features/division.feature",
|
104
|
+
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
105
|
+
"examples/i18n/hu/lib/calculator.rb",
|
106
|
+
"examples/i18n/id/.gitignore",
|
107
|
+
"examples/i18n/id/Rakefile",
|
108
|
+
"examples/i18n/id/features/addition.feature",
|
109
|
+
"examples/i18n/id/features/division.feature",
|
110
|
+
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
111
|
+
"examples/i18n/id/lib/calculator.rb",
|
112
|
+
"examples/i18n/it/Rakefile",
|
113
|
+
"examples/i18n/it/features/somma.feature",
|
114
|
+
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
115
|
+
"examples/i18n/it/lib/calcolatrice.rb",
|
116
|
+
"examples/i18n/ja/.gitignore",
|
117
|
+
"examples/i18n/ja/Rakefile",
|
118
|
+
"examples/i18n/ja/features/addition.feature",
|
119
|
+
"examples/i18n/ja/features/division.feature",
|
120
|
+
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
121
|
+
"examples/i18n/ja/lib/calculator.rb",
|
122
|
+
"examples/i18n/ko/.gitignore",
|
123
|
+
"examples/i18n/ko/Rakefile",
|
124
|
+
"examples/i18n/ko/features/addition.feature",
|
125
|
+
"examples/i18n/ko/features/division.feature",
|
126
|
+
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
127
|
+
"examples/i18n/ko/lib/calculator.rb",
|
128
|
+
"examples/i18n/lt/.gitignore",
|
129
|
+
"examples/i18n/lt/Rakefile",
|
130
|
+
"examples/i18n/lt/features/addition.feature",
|
131
|
+
"examples/i18n/lt/features/division.feature",
|
132
|
+
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
133
|
+
"examples/i18n/lt/lib/calculator.rb",
|
134
|
+
"examples/i18n/lv/Rakefile",
|
135
|
+
"examples/i18n/lv/features/addition.feature",
|
136
|
+
"examples/i18n/lv/features/division.feature",
|
137
|
+
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
138
|
+
"examples/i18n/lv/lib/calculator.rb",
|
139
|
+
"examples/i18n/no/Rakefile",
|
140
|
+
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
141
|
+
"examples/i18n/no/features/summering.feature",
|
142
|
+
"examples/i18n/no/features/support/env.rb",
|
143
|
+
"examples/i18n/no/lib/kalkulator.rb",
|
144
|
+
"examples/i18n/pl/.gitignore",
|
145
|
+
"examples/i18n/pl/Rakefile",
|
146
|
+
"examples/i18n/pl/features/addition.feature",
|
147
|
+
"examples/i18n/pl/features/division.feature",
|
148
|
+
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
149
|
+
"examples/i18n/pl/features/support/env.rb",
|
150
|
+
"examples/i18n/pl/lib/calculator.rb",
|
151
|
+
"examples/i18n/pt/Rakefile",
|
152
|
+
"examples/i18n/pt/features/adicao.feature",
|
153
|
+
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
154
|
+
"examples/i18n/pt/features/support/env.rb",
|
155
|
+
"examples/i18n/pt/lib/calculadora.rb",
|
156
|
+
"examples/i18n/ro/Rakefile",
|
157
|
+
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
158
|
+
"examples/i18n/ro/features/suma.feature",
|
159
|
+
"examples/i18n/ro/lib/calculator.rb",
|
160
|
+
"examples/i18n/ru/Rakefile",
|
161
|
+
"examples/i18n/ru/features/addition.feature",
|
162
|
+
"examples/i18n/ru/features/consecutive_calculations.feature",
|
163
|
+
"examples/i18n/ru/features/division.feature",
|
164
|
+
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
165
|
+
"examples/i18n/ru/features/support/env.rb",
|
166
|
+
"examples/i18n/ru/features/support/world.rb",
|
167
|
+
"examples/i18n/ru/lib/calculator.rb",
|
168
|
+
"examples/i18n/se/Rakefile",
|
169
|
+
"examples/i18n/se/features/step_definitons/kalkulator_steps.rb",
|
170
|
+
"examples/i18n/se/features/summering.feature",
|
171
|
+
"examples/i18n/se/lib/kalkulator.rb",
|
172
|
+
"examples/i18n/sk/.gitignore",
|
173
|
+
"examples/i18n/sk/Rakefile",
|
174
|
+
"examples/i18n/sk/features/addition.feature",
|
175
|
+
"examples/i18n/sk/features/division.feature",
|
176
|
+
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
177
|
+
"examples/i18n/sk/lib/calculator.rb",
|
178
|
+
"examples/i18n/sr-latn/Rakefile",
|
179
|
+
"examples/i18n/sr-latn/features/sabiranje.feature",
|
180
|
+
"examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb",
|
181
|
+
"examples/i18n/sr-latn/lib/calculator.rb",
|
182
|
+
"examples/i18n/sr/Rakefile",
|
183
|
+
"examples/i18n/sr/features/sabiranje.feature",
|
184
|
+
"examples/i18n/sr/features/step_definitons/calculator_steps.rb",
|
185
|
+
"examples/i18n/sr/lib/calculator.rb",
|
186
|
+
"examples/i18n/tr/.gitignore",
|
187
|
+
"examples/i18n/tr/Rakefile",
|
188
|
+
"examples/i18n/tr/features/bolme.feature",
|
189
|
+
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
190
|
+
"examples/i18n/tr/features/toplama.feature",
|
191
|
+
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
192
|
+
"examples/i18n/uz/Rakefile",
|
193
|
+
"examples/i18n/uz/features/addition.feature",
|
194
|
+
"examples/i18n/uz/features/consecutive_calculations.feature",
|
195
|
+
"examples/i18n/uz/features/division.feature",
|
196
|
+
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
197
|
+
"examples/i18n/uz/features/support/env.rb",
|
198
|
+
"examples/i18n/uz/features/support/world.rb",
|
199
|
+
"examples/i18n/uz/lib/calculator.rb",
|
200
|
+
"examples/i18n/zh-CN/Rakefile",
|
201
|
+
"examples/i18n/zh-CN/features/addition.feature",
|
202
|
+
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
203
|
+
"examples/i18n/zh-CN/lib/calculator.rb",
|
204
|
+
"examples/i18n/zh-TW/.gitignore",
|
205
|
+
"examples/i18n/zh-TW/Rakefile",
|
206
|
+
"examples/i18n/zh-TW/features/addition.feature",
|
207
|
+
"examples/i18n/zh-TW/features/division.feature",
|
208
|
+
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
209
|
+
"examples/i18n/zh-TW/lib/calculator.rb",
|
210
|
+
"examples/junit/features/one_passing_one_failing.feature",
|
211
|
+
"examples/junit/features/pending.feature",
|
212
|
+
"examples/junit/features/step_definitions/steps.rb",
|
213
|
+
"examples/python/features/fibonacci.feature",
|
214
|
+
"examples/python/features/step_definitions/fib_steps.py",
|
215
|
+
"examples/python/lib/.gitignore",
|
216
|
+
"examples/python/lib/fib.py",
|
217
|
+
"examples/ramaze/README.textile",
|
218
|
+
"examples/ramaze/Rakefile",
|
219
|
+
"examples/ramaze/app.rb",
|
220
|
+
"examples/ramaze/features/add.feature",
|
221
|
+
"examples/ramaze/features/step_definitions/add_steps.rb",
|
222
|
+
"examples/ramaze/features/support/env.rb",
|
223
|
+
"examples/ramaze/layout/default.html.erb",
|
224
|
+
"examples/ramaze/view/index.html.erb",
|
225
|
+
"examples/ruby2python/features/fibonacci.feature",
|
226
|
+
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
227
|
+
"examples/ruby2python/features/support/env.rb",
|
228
|
+
"examples/ruby2python/lib/.gitignore",
|
229
|
+
"examples/ruby2python/lib/fib.py",
|
230
|
+
"examples/selenium/Rakefile",
|
231
|
+
"examples/selenium/features/search.feature",
|
232
|
+
"examples/selenium/features/step_definitons/search_steps.rb",
|
233
|
+
"examples/selenium/features/support/env.rb",
|
234
|
+
"examples/selenium_webrat/Rakefile",
|
235
|
+
"examples/selenium_webrat/config.ru",
|
236
|
+
"examples/selenium_webrat/features/search.feature",
|
237
|
+
"examples/selenium_webrat/features/step_definitons/search_steps.rb",
|
238
|
+
"examples/selenium_webrat/features/support/env.rb",
|
239
|
+
"examples/self_test/.gitignore",
|
240
|
+
"examples/self_test/README.textile",
|
241
|
+
"examples/self_test/Rakefile",
|
242
|
+
"examples/self_test/features/background/background_tagged_before_on_outline.feature",
|
243
|
+
"examples/self_test/features/background/background_with_name.feature",
|
244
|
+
"examples/self_test/features/background/failing_background.feature",
|
245
|
+
"examples/self_test/features/background/failing_background_after_success.feature",
|
246
|
+
"examples/self_test/features/background/multiline_args_background.feature",
|
247
|
+
"examples/self_test/features/background/passing_background.feature",
|
248
|
+
"examples/self_test/features/background/pending_background.feature",
|
249
|
+
"examples/self_test/features/background/scenario_outline_failing_background.feature",
|
250
|
+
"examples/self_test/features/background/scenario_outline_passing_background.feature",
|
251
|
+
"examples/self_test/features/call_undefined_step_from_step_def.feature",
|
252
|
+
"examples/self_test/features/failing_expectation.feature",
|
253
|
+
"examples/self_test/features/lots_of_undefined.feature",
|
254
|
+
"examples/self_test/features/multiline_name.feature",
|
255
|
+
"examples/self_test/features/outline_sample.feature",
|
256
|
+
"examples/self_test/features/sample.feature",
|
257
|
+
"examples/self_test/features/search_sample.feature",
|
258
|
+
"examples/self_test/features/step_definitions/sample_steps.rb",
|
259
|
+
"examples/self_test/features/support/env.rb",
|
260
|
+
"examples/self_test/features/tags_sample.feature",
|
261
|
+
"examples/self_test/features/tons_of_cukes.feature",
|
262
|
+
"examples/self_test/features/undefined_multiline_args.feature",
|
263
|
+
"examples/self_test/list-of-features.txt",
|
264
|
+
"examples/sinatra/README.textile",
|
265
|
+
"examples/sinatra/Rakefile",
|
266
|
+
"examples/sinatra/app.rb",
|
267
|
+
"examples/sinatra/features/add.feature",
|
268
|
+
"examples/sinatra/features/step_definitions/add_steps.rb",
|
269
|
+
"examples/sinatra/features/support/env.rb",
|
270
|
+
"examples/sinatra/views/add.erb",
|
271
|
+
"examples/sinatra/views/layout.erb",
|
272
|
+
"examples/steps_library/features/step_definitions/steps_lib1.rb",
|
273
|
+
"examples/steps_library/features/step_definitions/steps_lib2.rb",
|
274
|
+
"examples/tcl/README.textile",
|
275
|
+
"examples/tcl/Rakefile",
|
276
|
+
"examples/tcl/features/fibonnacci.feature",
|
277
|
+
"examples/tcl/features/step_definitions/fib_steps.rb",
|
278
|
+
"examples/tcl/features/support/env.rb",
|
279
|
+
"examples/tcl/src/fib.tcl",
|
280
|
+
"examples/test_unit/Rakefile",
|
281
|
+
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
282
|
+
"examples/test_unit/features/test_unit.feature",
|
283
|
+
"examples/tickets/Rakefile",
|
284
|
+
"examples/tickets/features.html",
|
285
|
+
"examples/tickets/features/172.feature",
|
286
|
+
"examples/tickets/features/177/1.feature",
|
287
|
+
"examples/tickets/features/177/2.feature",
|
288
|
+
"examples/tickets/features/177/3.feature",
|
289
|
+
"examples/tickets/features/180.feature",
|
290
|
+
"examples/tickets/features/229/tagged_hooks.feature",
|
291
|
+
"examples/tickets/features/229/tagged_hooks.rb",
|
292
|
+
"examples/tickets/features/236.feature",
|
293
|
+
"examples/tickets/features/241.feature",
|
294
|
+
"examples/tickets/features/246.feature",
|
295
|
+
"examples/tickets/features/248.feature",
|
296
|
+
"examples/tickets/features/270/back.feature",
|
297
|
+
"examples/tickets/features/270/back.steps.rb",
|
298
|
+
"examples/tickets/features/272/hooks.feature",
|
299
|
+
"examples/tickets/features/272/hooks_steps.rb",
|
300
|
+
"examples/tickets/features/279/py_string_indent.feature",
|
301
|
+
"examples/tickets/features/279/py_string_indent.steps.rb",
|
302
|
+
"examples/tickets/features/279/wrong.feature_",
|
303
|
+
"examples/tickets/features/301/filter_background_tagged_hooks.feature",
|
304
|
+
"examples/tickets/features/301/filter_background_tagged_hooks_steps.rb",
|
305
|
+
"examples/tickets/features/306/only_background.feature",
|
306
|
+
"examples/tickets/features/lib/eatting_machine.rb",
|
307
|
+
"examples/tickets/features/lib/pantry.rb",
|
308
|
+
"examples/tickets/features/scenario_outline.feature",
|
309
|
+
"examples/tickets/features/step_definitons/246_steps.rb",
|
310
|
+
"examples/tickets/features/step_definitons/248_steps.rb",
|
311
|
+
"examples/tickets/features/step_definitons/scenario_outline_steps.rb",
|
312
|
+
"examples/tickets/features/step_definitons/tickets_steps.rb",
|
313
|
+
"examples/tickets/features/table_diffing.feature",
|
314
|
+
"examples/tickets/features/tickets.feature",
|
315
|
+
"examples/watir/README.textile",
|
316
|
+
"examples/watir/Rakefile",
|
317
|
+
"examples/watir/features/search.feature",
|
318
|
+
"examples/watir/features/step_definitions/search_steps.rb",
|
319
|
+
"examples/watir/features/support/env.rb",
|
320
|
+
"examples/watir/features/support/screenshots.rb",
|
321
|
+
"examples/webrat/features/search.feature",
|
322
|
+
"examples/webrat/features/step_definitions/kvasir_steps.rb",
|
323
|
+
"examples/webrat/features/support/env.rb",
|
324
|
+
"features/announce.feature",
|
325
|
+
"features/background.feature",
|
326
|
+
"features/bug_371.feature",
|
327
|
+
"features/bug_464.feature",
|
328
|
+
"features/bug_475.feature",
|
329
|
+
"features/call_many_steps.feature",
|
330
|
+
"features/cucumber_cli.feature",
|
331
|
+
"features/cucumber_cli_diff_disabled.feature",
|
332
|
+
"features/cucumber_cli_outlines.feature",
|
333
|
+
"features/custom_formatter.feature",
|
334
|
+
"features/default_snippets.feature",
|
335
|
+
"features/drb_server_integration.feature",
|
336
|
+
"features/exception_in_after_block.feature",
|
337
|
+
"features/exception_in_after_step_block.feature",
|
338
|
+
"features/exception_in_before_block.feature",
|
339
|
+
"features/exclude_files.feature",
|
340
|
+
"features/expand.feature",
|
341
|
+
"features/html_formatter.feature",
|
342
|
+
"features/html_formatter/a.html",
|
343
|
+
"features/junit_formatter.feature",
|
344
|
+
"features/language_from_header.feature",
|
345
|
+
"features/language_help.feature",
|
346
|
+
"features/listener_debugger_formatter.feature",
|
347
|
+
"features/multiline_names.feature",
|
348
|
+
"features/negative_tagged_hooks.feature",
|
349
|
+
"features/post_configuration_hook.feature",
|
350
|
+
"features/profiles.feature",
|
351
|
+
"features/rake_task.feature",
|
352
|
+
"features/report_called_undefined_steps.feature",
|
353
|
+
"features/simplest.feature",
|
354
|
+
"features/snippet.feature",
|
355
|
+
"features/step_definitions/cucumber_steps.rb",
|
356
|
+
"features/step_definitions/extra_steps.rb",
|
357
|
+
"features/step_definitions/simplest_steps.rb",
|
358
|
+
"features/step_definitions/wire_steps.rb",
|
359
|
+
"features/support/env.rb",
|
360
|
+
"features/support/env.rb.simplest",
|
361
|
+
"features/support/fake_wire_server.rb",
|
362
|
+
"features/table_diffing.feature",
|
363
|
+
"features/table_mapping.feature",
|
364
|
+
"features/tag_logic.feature",
|
365
|
+
"features/transform.feature",
|
366
|
+
"features/unicode_table.feature",
|
367
|
+
"features/usage_and_stepdefs_formatter.feature",
|
368
|
+
"features/wire_protocol.feature",
|
369
|
+
"features/work_in_progress.feature",
|
370
|
+
"gem_tasks/contributors.rake",
|
371
|
+
"gem_tasks/environment.rake",
|
372
|
+
"gem_tasks/features.rake",
|
373
|
+
"gem_tasks/fix_cr_lf.rake",
|
374
|
+
"gem_tasks/flog.rake",
|
375
|
+
"gem_tasks/rspec.rake",
|
376
|
+
"gem_tasks/sass.rake",
|
377
|
+
"gem_tasks/sdoc.rake",
|
378
|
+
"lib/README.rdoc",
|
379
|
+
"lib/autotest/cucumber.rb",
|
380
|
+
"lib/autotest/cucumber_mixin.rb",
|
381
|
+
"lib/autotest/cucumber_rails.rb",
|
382
|
+
"lib/autotest/cucumber_rails_rspec.rb",
|
383
|
+
"lib/autotest/cucumber_rspec.rb",
|
384
|
+
"lib/autotest/discover.rb",
|
385
|
+
"lib/cucumber.rb",
|
386
|
+
"lib/cucumber/ast.rb",
|
387
|
+
"lib/cucumber/ast/background.rb",
|
388
|
+
"lib/cucumber/ast/comment.rb",
|
389
|
+
"lib/cucumber/ast/examples.rb",
|
390
|
+
"lib/cucumber/ast/feature.rb",
|
391
|
+
"lib/cucumber/ast/feature_element.rb",
|
392
|
+
"lib/cucumber/ast/features.rb",
|
393
|
+
"lib/cucumber/ast/outline_table.rb",
|
394
|
+
"lib/cucumber/ast/py_string.rb",
|
395
|
+
"lib/cucumber/ast/scenario.rb",
|
396
|
+
"lib/cucumber/ast/scenario_outline.rb",
|
397
|
+
"lib/cucumber/ast/step.rb",
|
398
|
+
"lib/cucumber/ast/step_collection.rb",
|
399
|
+
"lib/cucumber/ast/step_invocation.rb",
|
400
|
+
"lib/cucumber/ast/table.rb",
|
401
|
+
"lib/cucumber/ast/tags.rb",
|
402
|
+
"lib/cucumber/ast/tree_walker.rb",
|
403
|
+
"lib/cucumber/ast/visitor.rb",
|
404
|
+
"lib/cucumber/broadcaster.rb",
|
405
|
+
"lib/cucumber/cli/configuration.rb",
|
406
|
+
"lib/cucumber/cli/drb_client.rb",
|
407
|
+
"lib/cucumber/cli/language_help_formatter.rb",
|
408
|
+
"lib/cucumber/cli/main.rb",
|
409
|
+
"lib/cucumber/cli/options.rb",
|
410
|
+
"lib/cucumber/cli/profile_loader.rb",
|
411
|
+
"lib/cucumber/constantize.rb",
|
412
|
+
"lib/cucumber/core_ext/instance_exec.rb",
|
413
|
+
"lib/cucumber/core_ext/proc.rb",
|
414
|
+
"lib/cucumber/core_ext/string.rb",
|
415
|
+
"lib/cucumber/feature_file.rb",
|
416
|
+
"lib/cucumber/filter.rb",
|
417
|
+
"lib/cucumber/formatter/ansicolor.rb",
|
418
|
+
"lib/cucumber/formatter/color_io.rb",
|
419
|
+
"lib/cucumber/formatter/console.rb",
|
420
|
+
"lib/cucumber/formatter/cucumber.css",
|
421
|
+
"lib/cucumber/formatter/cucumber.sass",
|
422
|
+
"lib/cucumber/formatter/debug.rb",
|
423
|
+
"lib/cucumber/formatter/duration.rb",
|
424
|
+
"lib/cucumber/formatter/html.rb",
|
425
|
+
"lib/cucumber/formatter/io.rb",
|
426
|
+
"lib/cucumber/formatter/junit.rb",
|
427
|
+
"lib/cucumber/formatter/ordered_xml_markup.rb",
|
428
|
+
"lib/cucumber/formatter/pdf.rb",
|
429
|
+
"lib/cucumber/formatter/pretty.rb",
|
430
|
+
"lib/cucumber/formatter/progress.rb",
|
431
|
+
"lib/cucumber/formatter/rerun.rb",
|
432
|
+
"lib/cucumber/formatter/stepdefs.rb",
|
433
|
+
"lib/cucumber/formatter/steps.rb",
|
434
|
+
"lib/cucumber/formatter/summary.rb",
|
435
|
+
"lib/cucumber/formatter/tag_cloud.rb",
|
436
|
+
"lib/cucumber/formatter/unicode.rb",
|
437
|
+
"lib/cucumber/formatter/usage.rb",
|
438
|
+
"lib/cucumber/language_support.rb",
|
439
|
+
"lib/cucumber/language_support/language_methods.rb",
|
440
|
+
"lib/cucumber/languages.yml",
|
441
|
+
"lib/cucumber/parser.rb",
|
442
|
+
"lib/cucumber/parser/common.rb",
|
443
|
+
"lib/cucumber/parser/common.tt",
|
444
|
+
"lib/cucumber/parser/feature.rb",
|
445
|
+
"lib/cucumber/parser/feature.tt",
|
446
|
+
"lib/cucumber/parser/i18n.tt",
|
447
|
+
"lib/cucumber/parser/natural_language.rb",
|
448
|
+
"lib/cucumber/parser/py_string.rb",
|
449
|
+
"lib/cucumber/parser/py_string.tt",
|
450
|
+
"lib/cucumber/parser/table.rb",
|
451
|
+
"lib/cucumber/parser/table.tt",
|
452
|
+
"lib/cucumber/parser/treetop_ext.rb",
|
453
|
+
"lib/cucumber/platform.rb",
|
454
|
+
"lib/cucumber/py_support/py_dsl.py",
|
455
|
+
"lib/cucumber/py_support/py_language.py",
|
456
|
+
"lib/cucumber/py_support/py_language.rb",
|
457
|
+
"lib/cucumber/rake/task.rb",
|
458
|
+
"lib/cucumber/rb_support/rb_dsl.rb",
|
459
|
+
"lib/cucumber/rb_support/rb_hook.rb",
|
460
|
+
"lib/cucumber/rb_support/rb_language.rb",
|
461
|
+
"lib/cucumber/rb_support/rb_step_definition.rb",
|
462
|
+
"lib/cucumber/rb_support/rb_transform.rb",
|
463
|
+
"lib/cucumber/rb_support/rb_world.rb",
|
464
|
+
"lib/cucumber/rb_support/regexp_argument_matcher.rb",
|
465
|
+
"lib/cucumber/rspec_neuter.rb",
|
466
|
+
"lib/cucumber/step_argument.rb",
|
467
|
+
"lib/cucumber/step_definition_light.rb",
|
468
|
+
"lib/cucumber/step_match.rb",
|
469
|
+
"lib/cucumber/step_mother.rb",
|
470
|
+
"lib/cucumber/webrat/element_locator.rb",
|
471
|
+
"lib/cucumber/webrat/table_locator.rb",
|
472
|
+
"lib/cucumber/wire_support/connection.rb",
|
473
|
+
"lib/cucumber/wire_support/request_handler.rb",
|
474
|
+
"lib/cucumber/wire_support/wire_exception.rb",
|
475
|
+
"lib/cucumber/wire_support/wire_language.rb",
|
476
|
+
"lib/cucumber/wire_support/wire_packet.rb",
|
477
|
+
"lib/cucumber/wire_support/wire_protocol.rb",
|
478
|
+
"lib/cucumber/wire_support/wire_step_definition.rb",
|
479
|
+
"spec/cucumber/ast/background_spec.rb",
|
480
|
+
"spec/cucumber/ast/feature_element_spec.rb",
|
481
|
+
"spec/cucumber/ast/feature_factory.rb",
|
482
|
+
"spec/cucumber/ast/feature_spec.rb",
|
483
|
+
"spec/cucumber/ast/outline_table_spec.rb",
|
484
|
+
"spec/cucumber/ast/py_string_spec.rb",
|
485
|
+
"spec/cucumber/ast/scenario_outline_spec.rb",
|
486
|
+
"spec/cucumber/ast/scenario_spec.rb",
|
487
|
+
"spec/cucumber/ast/step_collection_spec.rb",
|
488
|
+
"spec/cucumber/ast/step_spec.rb",
|
489
|
+
"spec/cucumber/ast/table_spec.rb",
|
490
|
+
"spec/cucumber/ast/tags_spec.rb",
|
491
|
+
"spec/cucumber/ast/tree_walker_spec.rb",
|
492
|
+
"spec/cucumber/broadcaster_spec.rb",
|
493
|
+
"spec/cucumber/cli/configuration_spec.rb",
|
494
|
+
"spec/cucumber/cli/drb_client_spec.rb",
|
495
|
+
"spec/cucumber/cli/main_spec.rb",
|
496
|
+
"spec/cucumber/cli/options_spec.rb",
|
497
|
+
"spec/cucumber/cli/profile_loader_spec.rb",
|
498
|
+
"spec/cucumber/core_ext/proc_spec.rb",
|
499
|
+
"spec/cucumber/formatter/ansicolor_spec.rb",
|
500
|
+
"spec/cucumber/formatter/color_io_spec.rb",
|
501
|
+
"spec/cucumber/formatter/console_spec.rb",
|
502
|
+
"spec/cucumber/formatter/duration_spec.rb",
|
503
|
+
"spec/cucumber/formatter/html_spec.rb",
|
504
|
+
"spec/cucumber/formatter/junit_spec.rb",
|
505
|
+
"spec/cucumber/formatter/progress_spec.rb",
|
506
|
+
"spec/cucumber/formatter/spec_helper.rb",
|
507
|
+
"spec/cucumber/parser/feature_parser_spec.rb",
|
508
|
+
"spec/cucumber/parser/table_parser_spec.rb",
|
509
|
+
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
510
|
+
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
511
|
+
"spec/cucumber/sell_cucumbers.feature",
|
512
|
+
"spec/cucumber/step_match_spec.rb",
|
513
|
+
"spec/cucumber/step_mother_spec.rb",
|
514
|
+
"spec/cucumber/treetop_parser/empty_feature.feature",
|
515
|
+
"spec/cucumber/treetop_parser/empty_scenario.feature",
|
516
|
+
"spec/cucumber/treetop_parser/empty_scenario_outline.feature",
|
517
|
+
"spec/cucumber/treetop_parser/fit_scenario.feature",
|
518
|
+
"spec/cucumber/treetop_parser/given_scenario.feature",
|
519
|
+
"spec/cucumber/treetop_parser/invalid_scenario_outlines.feature",
|
520
|
+
"spec/cucumber/treetop_parser/multiline_steps.feature",
|
521
|
+
"spec/cucumber/treetop_parser/multiple_tables.feature",
|
522
|
+
"spec/cucumber/treetop_parser/scenario_outline.feature",
|
523
|
+
"spec/cucumber/treetop_parser/spaces.feature",
|
524
|
+
"spec/cucumber/treetop_parser/test_dos.feature",
|
525
|
+
"spec/cucumber/treetop_parser/with_comments.feature",
|
526
|
+
"spec/cucumber/treetop_parser/with_tags.feature",
|
527
|
+
"spec/cucumber/wire_support/wire_language_spec.rb",
|
528
|
+
"spec/cucumber/wire_support/wire_packet_spec.rb",
|
529
|
+
"spec/cucumber/world/pending_spec.rb",
|
530
|
+
"spec/spec.opts",
|
531
|
+
"spec/spec_helper.rb"
|
532
|
+
]
|
533
|
+
s.homepage = %q{http://cukes.info}
|
534
|
+
s.post_install_message = %q{
|
535
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
536
|
+
|
537
|
+
(::) U P G R A D I N G (::)
|
538
|
+
|
539
|
+
Thank you for installing cucumber-0.4.4.
|
540
|
+
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
541
|
+
for important information about this release. Happy cuking!
|
542
|
+
|
543
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
544
|
+
|
545
|
+
}
|
546
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
547
|
+
s.require_paths = ["lib"]
|
548
|
+
s.rubyforge_project = %q{rspec}
|
549
|
+
s.rubygems_version = %q{1.3.5}
|
550
|
+
s.summary = %q{Behaviour Driven Development with elegance and joy}
|
551
|
+
s.test_files = [
|
552
|
+
"spec/cucumber/ast/background_spec.rb",
|
553
|
+
"spec/cucumber/ast/feature_element_spec.rb",
|
554
|
+
"spec/cucumber/ast/feature_factory.rb",
|
555
|
+
"spec/cucumber/ast/feature_spec.rb",
|
556
|
+
"spec/cucumber/ast/outline_table_spec.rb",
|
557
|
+
"spec/cucumber/ast/py_string_spec.rb",
|
558
|
+
"spec/cucumber/ast/scenario_outline_spec.rb",
|
559
|
+
"spec/cucumber/ast/scenario_spec.rb",
|
560
|
+
"spec/cucumber/ast/step_collection_spec.rb",
|
561
|
+
"spec/cucumber/ast/step_spec.rb",
|
562
|
+
"spec/cucumber/ast/table_spec.rb",
|
563
|
+
"spec/cucumber/ast/tags_spec.rb",
|
564
|
+
"spec/cucumber/ast/tree_walker_spec.rb",
|
565
|
+
"spec/cucumber/broadcaster_spec.rb",
|
566
|
+
"spec/cucumber/cli/configuration_spec.rb",
|
567
|
+
"spec/cucumber/cli/drb_client_spec.rb",
|
568
|
+
"spec/cucumber/cli/main_spec.rb",
|
569
|
+
"spec/cucumber/cli/options_spec.rb",
|
570
|
+
"spec/cucumber/cli/profile_loader_spec.rb",
|
571
|
+
"spec/cucumber/core_ext/proc_spec.rb",
|
572
|
+
"spec/cucumber/formatter/ansicolor_spec.rb",
|
573
|
+
"spec/cucumber/formatter/color_io_spec.rb",
|
574
|
+
"spec/cucumber/formatter/console_spec.rb",
|
575
|
+
"spec/cucumber/formatter/duration_spec.rb",
|
576
|
+
"spec/cucumber/formatter/html_spec.rb",
|
577
|
+
"spec/cucumber/formatter/junit_spec.rb",
|
578
|
+
"spec/cucumber/formatter/progress_spec.rb",
|
579
|
+
"spec/cucumber/formatter/spec_helper.rb",
|
580
|
+
"spec/cucumber/parser/feature_parser_spec.rb",
|
581
|
+
"spec/cucumber/parser/table_parser_spec.rb",
|
582
|
+
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
583
|
+
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
584
|
+
"spec/cucumber/step_match_spec.rb",
|
585
|
+
"spec/cucumber/step_mother_spec.rb",
|
586
|
+
"spec/cucumber/wire_support/wire_language_spec.rb",
|
587
|
+
"spec/cucumber/wire_support/wire_packet_spec.rb",
|
588
|
+
"spec/cucumber/world/pending_spec.rb",
|
589
|
+
"spec/spec_helper.rb",
|
590
|
+
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
591
|
+
"examples/i18n/ar/lib/calculator.rb",
|
592
|
+
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
593
|
+
"examples/i18n/bg/features/support/env.rb",
|
594
|
+
"examples/i18n/bg/features/support/world.rb",
|
595
|
+
"examples/i18n/bg/lib/calculator.rb",
|
596
|
+
"examples/i18n/cat/features/step_definitons/calculator_steps.rb",
|
597
|
+
"examples/i18n/cat/lib/calculadora.rb",
|
598
|
+
"examples/i18n/da/features/step_definitons/lommeregner_steps.rb",
|
599
|
+
"examples/i18n/da/lib/lommeregner.rb",
|
600
|
+
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
601
|
+
"examples/i18n/de/lib/calculator.rb",
|
602
|
+
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
603
|
+
"examples/i18n/en/lib/calculator.rb",
|
604
|
+
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
605
|
+
"examples/i18n/en-lol/features/support/env.rb",
|
606
|
+
"examples/i18n/en-lol/lib/basket.rb",
|
607
|
+
"examples/i18n/en-lol/lib/belly.rb",
|
608
|
+
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
609
|
+
"examples/i18n/es/lib/calculador.rb",
|
610
|
+
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
611
|
+
"examples/i18n/et/lib/kalkulaator.rb",
|
612
|
+
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
613
|
+
"examples/i18n/fi/lib/laskin.rb",
|
614
|
+
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
615
|
+
"examples/i18n/fr/lib/calculatrice.rb",
|
616
|
+
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
617
|
+
"examples/i18n/he/lib/calculator.rb",
|
618
|
+
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
619
|
+
"examples/i18n/hu/lib/calculator.rb",
|
620
|
+
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
621
|
+
"examples/i18n/id/lib/calculator.rb",
|
622
|
+
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
623
|
+
"examples/i18n/it/lib/calcolatrice.rb",
|
624
|
+
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
625
|
+
"examples/i18n/ja/lib/calculator.rb",
|
626
|
+
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
627
|
+
"examples/i18n/ko/lib/calculator.rb",
|
628
|
+
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
629
|
+
"examples/i18n/lt/lib/calculator.rb",
|
630
|
+
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
631
|
+
"examples/i18n/lv/lib/calculator.rb",
|
632
|
+
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
633
|
+
"examples/i18n/no/features/support/env.rb",
|
634
|
+
"examples/i18n/no/lib/kalkulator.rb",
|
635
|
+
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
636
|
+
"examples/i18n/pl/features/support/env.rb",
|
637
|
+
"examples/i18n/pl/lib/calculator.rb",
|
638
|
+
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
639
|
+
"examples/i18n/pt/features/support/env.rb",
|
640
|
+
"examples/i18n/pt/lib/calculadora.rb",
|
641
|
+
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
642
|
+
"examples/i18n/ro/lib/calculator.rb",
|
643
|
+
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
644
|
+
"examples/i18n/ru/features/support/env.rb",
|
645
|
+
"examples/i18n/ru/features/support/world.rb",
|
646
|
+
"examples/i18n/ru/lib/calculator.rb",
|
647
|
+
"examples/i18n/se/features/step_definitons/kalkulator_steps.rb",
|
648
|
+
"examples/i18n/se/lib/kalkulator.rb",
|
649
|
+
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
650
|
+
"examples/i18n/sk/lib/calculator.rb",
|
651
|
+
"examples/i18n/sr/features/step_definitons/calculator_steps.rb",
|
652
|
+
"examples/i18n/sr/lib/calculator.rb",
|
653
|
+
"examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb",
|
654
|
+
"examples/i18n/sr-latn/lib/calculator.rb",
|
655
|
+
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
656
|
+
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
657
|
+
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
658
|
+
"examples/i18n/uz/features/support/env.rb",
|
659
|
+
"examples/i18n/uz/features/support/world.rb",
|
660
|
+
"examples/i18n/uz/lib/calculator.rb",
|
661
|
+
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
662
|
+
"examples/i18n/zh-CN/lib/calculator.rb",
|
663
|
+
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
664
|
+
"examples/i18n/zh-TW/lib/calculator.rb",
|
665
|
+
"examples/junit/features/step_definitions/steps.rb",
|
666
|
+
"examples/ramaze/app.rb",
|
667
|
+
"examples/ramaze/features/step_definitions/add_steps.rb",
|
668
|
+
"examples/ramaze/features/support/env.rb",
|
669
|
+
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
670
|
+
"examples/ruby2python/features/support/env.rb",
|
671
|
+
"examples/selenium/features/step_definitons/search_steps.rb",
|
672
|
+
"examples/selenium/features/support/env.rb",
|
673
|
+
"examples/selenium_webrat/features/step_definitons/search_steps.rb",
|
674
|
+
"examples/selenium_webrat/features/support/env.rb",
|
675
|
+
"examples/self_test/features/step_definitions/sample_steps.rb",
|
676
|
+
"examples/self_test/features/support/env.rb",
|
677
|
+
"examples/self_test/tmp/features/step_definitions/steps.rb",
|
678
|
+
"examples/sinatra/app.rb",
|
679
|
+
"examples/sinatra/features/step_definitions/add_steps.rb",
|
680
|
+
"examples/sinatra/features/support/env.rb",
|
681
|
+
"examples/steps_library/features/step_definitions/steps_lib1.rb",
|
682
|
+
"examples/steps_library/features/step_definitions/steps_lib2.rb",
|
683
|
+
"examples/tcl/features/step_definitions/fib_steps.rb",
|
684
|
+
"examples/tcl/features/support/env.rb",
|
685
|
+
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
686
|
+
"examples/tickets/features/229/tagged_hooks.rb",
|
687
|
+
"examples/tickets/features/270/back.steps.rb",
|
688
|
+
"examples/tickets/features/272/hooks_steps.rb",
|
689
|
+
"examples/tickets/features/279/py_string_indent.steps.rb",
|
690
|
+
"examples/tickets/features/301/filter_background_tagged_hooks_steps.rb",
|
691
|
+
"examples/tickets/features/lib/eatting_machine.rb",
|
692
|
+
"examples/tickets/features/lib/pantry.rb",
|
693
|
+
"examples/tickets/features/step_definitons/246_steps.rb",
|
694
|
+
"examples/tickets/features/step_definitons/248_steps.rb",
|
695
|
+
"examples/tickets/features/step_definitons/scenario_outline_steps.rb",
|
696
|
+
"examples/tickets/features/step_definitons/tickets_steps.rb",
|
697
|
+
"examples/watir/features/step_definitions/search_steps.rb",
|
698
|
+
"examples/watir/features/support/env.rb",
|
699
|
+
"examples/watir/features/support/screenshots.rb",
|
700
|
+
"examples/webrat/features/step_definitions/kvasir_steps.rb",
|
701
|
+
"examples/webrat/features/support/env.rb"
|
702
|
+
]
|
703
|
+
|
704
|
+
if s.respond_to? :specification_version then
|
705
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
706
|
+
s.specification_version = 3
|
707
|
+
|
708
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
709
|
+
s.add_runtime_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
710
|
+
s.add_runtime_dependency(%q<treetop>, ["= 1.4.2"])
|
711
|
+
s.add_runtime_dependency(%q<polyglot>, ["= 0.2.9"])
|
712
|
+
s.add_runtime_dependency(%q<builder>, ["= 2.1.2"])
|
713
|
+
s.add_runtime_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
714
|
+
s.add_development_dependency(%q<nokogiri>, ["= 1.4.0"])
|
715
|
+
s.add_development_dependency(%q<prawn>, ["= 0.5.1"])
|
716
|
+
s.add_development_dependency(%q<rspec>, ["= 1.2.9"])
|
717
|
+
s.add_development_dependency(%q<spork>, ["= 0.7.3"])
|
718
|
+
else
|
719
|
+
s.add_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
720
|
+
s.add_dependency(%q<treetop>, ["= 1.4.2"])
|
721
|
+
s.add_dependency(%q<polyglot>, ["= 0.2.9"])
|
722
|
+
s.add_dependency(%q<builder>, ["= 2.1.2"])
|
723
|
+
s.add_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
724
|
+
s.add_dependency(%q<nokogiri>, ["= 1.4.0"])
|
725
|
+
s.add_dependency(%q<prawn>, ["= 0.5.1"])
|
726
|
+
s.add_dependency(%q<rspec>, ["= 1.2.9"])
|
727
|
+
s.add_dependency(%q<spork>, ["= 0.7.3"])
|
728
|
+
end
|
729
|
+
else
|
730
|
+
s.add_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
731
|
+
s.add_dependency(%q<treetop>, ["= 1.4.2"])
|
732
|
+
s.add_dependency(%q<polyglot>, ["= 0.2.9"])
|
733
|
+
s.add_dependency(%q<builder>, ["= 2.1.2"])
|
734
|
+
s.add_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
735
|
+
s.add_dependency(%q<nokogiri>, ["= 1.4.0"])
|
736
|
+
s.add_dependency(%q<prawn>, ["= 0.5.1"])
|
737
|
+
s.add_dependency(%q<rspec>, ["= 1.2.9"])
|
738
|
+
s.add_dependency(%q<spork>, ["= 0.7.3"])
|
739
|
+
end
|
740
|
+
end
|
741
|
+
|