├── .rspec ├── .rvmrc ├── fixtures ├── self_test │ ├── .gitignore │ ├── list-of-features.txt │ ├── features │ │ ├── failing_expectation.feature │ │ ├── lots_of_undefined.feature │ │ ├── undefined_multiline_args.feature │ │ ├── call_undefined_step_from_step_def.feature │ │ ├── tags_sample.feature │ │ ├── sample.feature │ │ ├── outline_sample.feature │ │ ├── support │ │ │ └── env.rb │ │ ├── search_sample.feature │ │ └── multiline_name.feature │ ├── Rakefile │ └── README.textile ├── tickets │ ├── features │ │ ├── 177 │ │ │ ├── 3.feature │ │ │ ├── 1.feature │ │ │ └── 2.feature │ │ ├── 229 │ │ │ ├── tagged_hooks.feature │ │ │ └── tagged_hooks.rb │ │ ├── 270 │ │ │ ├── back.feature │ │ │ └── back.steps.rb │ │ ├── 272 │ │ │ └── hooks.feature │ │ ├── 279 │ │ │ ├── wrong.feature_ │ │ │ ├── py_string_indent.steps.rb │ │ │ └── py_string_indent.feature │ │ ├── 301 │ │ │ ├── filter_background_tagged_hooks.feature │ │ │ └── filter_background_tagged_hooks_steps.rb │ │ ├── 306 │ │ │ └── only_background.feature │ │ ├── gherkin_68.feature │ │ ├── step_definitons │ │ │ ├── 246_steps.rb │ │ │ ├── around_timeout_steps.rb │ │ │ ├── 248_steps.rb │ │ │ └── half_manual_steps.rb │ │ ├── around_timeout.feature │ │ ├── gherkin_67.feature │ │ ├── 180.feature │ │ ├── 246.feature │ │ ├── 248.feature │ │ ├── half_manual.feature │ │ ├── lib │ │ │ ├── pantry.rb │ │ │ └── eatting_machine.rb │ │ ├── table_diffing.feature │ │ ├── 241.feature │ │ ├── 236.feature │ │ ├── tickets.feature │ │ └── 172.feature │ └── Rakefile ├── json │ └── features │ │ ├── embed.feature │ │ ├── background.feature │ │ ├── one_passing_one_failing.feature │ │ ├── tables.feature │ │ └── step_definitions │ │ └── steps.rb ├── junit │ └── features │ │ ├── pending.feature │ │ ├── step_definitions │ │ └── steps.rb │ │ └── one_passing_one_failing.feature └── steps_library │ └── features │ └── step_definitions │ ├── steps_lib2.rb │ └── steps_lib1.rb ├── examples ├── i18n │ ├── de │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ ├── en │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── eo │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── divido.feature │ │ │ ├── adicio.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── fi │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── laskin.rb │ │ └── features │ │ │ ├── jakolasku.feature │ │ │ ├── step_definitons │ │ │ └── laskin_steps.rb │ │ │ └── yhteenlasku.feature │ ├── hu │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── osztas.feature │ │ │ ├── osszeadas.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── id │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ ├── ja │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── features │ │ │ ├── division.feature │ │ │ ├── support │ │ │ │ └── env.rb │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ │ └── lib │ │ │ └── calculator.rb │ ├── ko │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── features │ │ │ ├── division.feature │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ │ └── calculator_steps.rb │ │ └── lib │ │ │ └── calculator.rb │ ├── lt │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ ├── pl │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── features │ │ │ ├── support │ │ │ │ └── env.rb │ │ │ ├── division.feature │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ │ └── lib │ │ │ └── calculator.rb │ ├── sk │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── tr │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── lib │ │ │ └── hesap_makinesi.rb │ │ └── features │ │ │ ├── bolme.feature │ │ │ ├── step_definitons │ │ │ └── hesap_makinesi_adimlari.rb │ │ │ └── toplama.feature │ ├── zh-TW │ │ ├── .gitignore │ │ ├── Rakefile │ │ ├── features │ │ │ ├── division.feature │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ │ └── calculator_steps.rb │ │ └── lib │ │ │ └── calculator.rb │ ├── en-lol │ │ ├── Rakefile │ │ ├── lib │ │ │ ├── belly.rb │ │ │ └── basket.rb │ │ └── features │ │ │ ├── stuffing.feature │ │ │ ├── support │ │ │ └── env.rb │ │ │ └── step_definitions │ │ │ └── cucumbrz_steps.rb │ ├── zh-CN │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── bg │ │ ├── features │ │ │ ├── support │ │ │ │ ├── world.rb │ │ │ │ └── env.rb │ │ │ ├── addition.feature │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ ├── division.feature │ │ │ └── consecutive_calculations.feature │ │ ├── Rakefile │ │ └── lib │ │ │ └── calculator.rb │ ├── ru │ │ ├── features │ │ │ ├── support │ │ │ │ ├── world.rb │ │ │ │ └── env.rb │ │ │ ├── addition.feature │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ ├── division.feature │ │ │ └── consecutive_calculations.feature │ │ ├── Rakefile │ │ └── lib │ │ │ └── calculator.rb │ ├── uk │ │ ├── features │ │ │ ├── support │ │ │ │ ├── world.rb │ │ │ │ └── env.rb │ │ │ ├── addition.feature │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ ├── consecutive_calculations.feature │ │ │ └── division.feature │ │ ├── Rakefile │ │ └── lib │ │ │ └── calculator.rb │ ├── uz │ │ ├── features │ │ │ ├── support │ │ │ │ ├── world.rb │ │ │ │ └── env.rb │ │ │ ├── addition.feature │ │ │ ├── step_definitons │ │ │ │ └── calculator_steps.rb │ │ │ ├── consecutive_calculations.feature │ │ │ └── division.feature │ │ ├── Rakefile │ │ └── lib │ │ │ └── calculator.rb │ ├── ar │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── ca │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculadora.rb │ │ └── features │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── suma.feature │ ├── da │ │ ├── Rakefile │ │ ├── lib │ │ │ └── lommeregner.rb │ │ └── features │ │ │ ├── sammenlaegning.feature │ │ │ └── step_definitons │ │ │ └── lommeregner_steps.rb │ ├── es │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculador.rb │ │ └── features │ │ │ ├── step_definitons │ │ │ └── calculador_steps.rb │ │ │ └── adicion.feature │ ├── et │ │ ├── Rakefile │ │ ├── lib │ │ │ └── kalkulaator.rb │ │ └── features │ │ │ ├── jagamine.feature │ │ │ ├── liitmine.feature │ │ │ └── step_definitions │ │ │ └── kalkulaator_steps.rb │ ├── fr │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculatrice.rb │ │ └── features │ │ │ ├── support │ │ │ └── env.rb │ │ │ ├── addition2.feature │ │ │ ├── addition.feature │ │ │ └── step_definitions │ │ │ └── calculatrice_steps.rb │ ├── it │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calcolatrice.rb │ │ └── features │ │ │ ├── somma.feature │ │ │ └── step_definitons │ │ │ └── calcolatrice_steps.rb │ ├── lv │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── addition.feature │ ├── no │ │ ├── Rakefile │ │ ├── lib │ │ │ └── kalkulator.rb │ │ └── features │ │ │ ├── support │ │ │ └── env.rb │ │ │ ├── step_definitons │ │ │ └── kalkulator_steps.rb │ │ │ └── summering.feature │ ├── pt │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculadora.rb │ │ └── features │ │ │ ├── support │ │ │ └── env.rb │ │ │ ├── adicao.feature │ │ │ └── step_definitions │ │ │ └── calculadora_steps.rb │ ├── sv │ │ ├── Rakefile │ │ ├── lib │ │ │ └── kalkulator.rb │ │ └── features │ │ │ ├── summering.feature │ │ │ └── step_definitons │ │ │ └── kalkulator_steps.rb │ ├── he │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── division.feature │ │ │ ├── addition.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── ro │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── adunare.feature │ │ │ └── step_definitons │ │ │ └── calculator_steps.rb │ ├── sr-Cyrl │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── support │ │ │ └── env.rb │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── sabiranje.feature │ ├── sr-Latn │ │ ├── Rakefile │ │ ├── lib │ │ │ └── calculator.rb │ │ └── features │ │ │ ├── step_definitons │ │ │ └── calculator_steps.rb │ │ │ └── sabiranje.feature │ ├── README.textile │ └── Rakefile ├── python │ ├── lib │ │ ├── .gitignore │ │ └── fib.py │ ├── Rakefile │ ├── README.textile │ └── features │ │ ├── step_definitions │ │ └── fib_steps.py │ │ └── fibonacci.feature ├── watir │ ├── .gitignore │ ├── cucumber.yml │ ├── Rakefile │ ├── features │ │ ├── search.feature │ │ ├── support │ │ │ └── env.rb │ │ └── step_definitions │ │ │ └── search_steps.rb │ └── README.textile ├── ruby2python │ ├── lib │ │ ├── .gitignore │ │ └── fib.py │ ├── Rakefile │ ├── features │ │ ├── step_definitions │ │ │ └── fib_steps.rb │ │ ├── support │ │ │ └── env.rb │ │ └── fibonacci.feature │ └── README.textile ├── tcl │ ├── src │ │ └── fib.tcl │ ├── features │ │ ├── support │ │ │ └── env.rb │ │ ├── step_definitions │ │ │ └── fib_steps.rb │ │ └── fibonnacci.feature │ ├── Rakefile │ └── README.textile ├── rspec_doubles │ ├── Rakefile │ └── features │ │ ├── mocking.feature │ │ ├── support │ │ └── env.rb │ │ └── step_definitions │ │ └── calvin_steps.rb ├── sinatra │ ├── views │ │ ├── layout.erb │ │ └── add.erb │ ├── Rakefile │ ├── app.rb │ ├── features │ │ ├── add.feature │ │ ├── support │ │ │ └── env.rb │ │ └── step_definitions │ │ │ └── add_steps.rb │ └── README.textile ├── ramaze │ ├── README.textile │ ├── layout │ │ └── default.html.erb │ ├── view │ │ └── index.html.erb │ ├── Rakefile │ ├── features │ │ ├── add.feature │ │ ├── step_definitions │ │ │ └── add_steps.rb │ │ └── support │ │ │ └── env.rb │ └── app.rb ├── v8 │ ├── Rakefile │ ├── features │ │ └── support │ │ │ └── env.js │ └── lib │ │ └── fibonacci.js └── test_unit │ ├── Rakefile │ └── features │ ├── test_unit.feature │ └── step_definitions │ └── test_unit_steps.rb ├── .gitattributes ├── legacy_features ├── step_definitions │ ├── extra_steps.rb │ ├── simplest_steps.rb │ └── wire_steps.rb ├── simplest.feature ├── support │ └── env.rb.simplest ├── html_formatter.feature ├── bug_464.feature ├── bug_585_tab_indentation.feature ├── bug_371.feature ├── snippet.feature ├── language_from_header.feature ├── diffing.feature ├── unicode_table.feature ├── table_mapping.feature ├── exclude_files.feature ├── rerun_formatter.feature └── api │ └── run_cli_main_with_existing_runtime.feature ├── lib ├── cucumber │ ├── parser.rb │ ├── core_ext │ │ ├── string.rb │ │ ├── disable_mini_and_test_unit_autorun.rb │ │ └── proc.rb │ ├── step_argument.rb │ ├── py_support │ │ ├── py_dsl.py │ │ └── py_language.py │ ├── formatter │ │ ├── stepdefs.rb │ │ ├── json_pretty.rb │ │ ├── duration.rb │ │ ├── gpretty.rb │ │ ├── debug.rb │ │ ├── ordered_xml_markup.rb │ │ ├── json.rb │ │ └── io.rb │ ├── rspec │ │ ├── doubles.rb │ │ └── disable_option_parser.rb │ ├── step_mother.rb │ ├── ast │ │ ├── visitor.rb │ │ ├── tags.rb │ │ ├── features.rb │ │ └── comment.rb │ ├── broadcaster.rb │ ├── step_definitions.rb │ ├── rb_support │ │ ├── regexp_argument_matcher.rb │ │ └── rb_hook.rb │ ├── step_definition_light.rb │ ├── wire_support │ │ ├── wire_step_definition.rb │ │ ├── configuration.rb │ │ ├── request_handler.rb │ │ ├── wire_packet.rb │ │ └── wire_exception.rb │ ├── constantize.rb │ ├── configuration.rb │ ├── ast.rb │ ├── platform.rb │ ├── language_support.rb │ ├── js_support │ │ └── js_snippets.rb │ └── errors.rb ├── autotest │ ├── cucumber.rb │ ├── cucumber_rails.rb │ ├── cucumber_rspec.rb │ ├── cucumber_rspec2.rb │ ├── cucumber_rails_rspec.rb │ ├── cucumber_rails_rspec2.rb │ └── discover.rb ├── README.rdoc └── cucumber.rb ├── features ├── iso-8859-1.feature ├── step_definitions │ ├── iso-8859-1_steps.rb │ └── cucumber_steps.rb ├── bootstrap.feature └── support │ └── env.rb ├── Gemfile ├── gem_tasks ├── flog.rake ├── environment.rake ├── sass.rake ├── rspec.rake ├── fix_cr_lf.rake ├── examples.rake ├── sdoc.rake ├── cucumber.rake └── contributors.rake ├── spec ├── spec_helper.rb └── cucumber │ ├── ast │ ├── tree_walker_spec.rb │ └── outline_table_spec.rb │ ├── broadcaster_spec.rb │ ├── sell_cucumbers.feature │ ├── rb_support │ ├── rb_transform_spec.rb │ └── regexp_argument_matcher_spec.rb │ ├── formatter │ ├── duration_spec.rb │ └── ansicolor_spec.rb │ ├── configuration_spec.rb │ └── wire_support │ └── wire_step_definition_spec.rb ├── .gitignore ├── Rakefile ├── bin └── cucumber ├── README.rdoc ├── cucumber.yml └── LICENSE /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm @cucumber --create 2 | -------------------------------------------------------------------------------- /fixtures/self_test/.gitignore: -------------------------------------------------------------------------------- 1 | tmp -------------------------------------------------------------------------------- /examples/i18n/de/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/en/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/eo/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/fi/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/hu/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/id/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/ja/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/ko/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/lt/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/pl/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/sk/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/tr/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/i18n/zh-TW/.gitignore: -------------------------------------------------------------------------------- 1 | features.html -------------------------------------------------------------------------------- /examples/python/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /examples/watir/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.png -------------------------------------------------------------------------------- /examples/ruby2python/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | spec/cucumber/treetop_parser/test_dos.feature -crlf -------------------------------------------------------------------------------- /fixtures/self_test/list-of-features.txt: -------------------------------------------------------------------------------- 1 | features/sample.feature:12 2 | -------------------------------------------------------------------------------- /examples/watir/cucumber.yml: -------------------------------------------------------------------------------- 1 | default: --format html --out report.html --format pretty -------------------------------------------------------------------------------- /legacy_features/step_definitions/extra_steps.rb: -------------------------------------------------------------------------------- 1 | Given /^missing$/ do 2 | end 3 | -------------------------------------------------------------------------------- /lib/cucumber/parser.rb: -------------------------------------------------------------------------------- 1 | require 'cucumber/platform' 2 | require 'cucumber/ast' 3 | -------------------------------------------------------------------------------- /legacy_features/step_definitions/simplest_steps.rb: -------------------------------------------------------------------------------- 1 | Given /^this step works$/ do 2 | end 3 | 4 | -------------------------------------------------------------------------------- /features/iso-8859-1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fd/cucumber/master/features/iso-8859-1.feature -------------------------------------------------------------------------------- /fixtures/tickets/features/gherkin_68.feature: -------------------------------------------------------------------------------- 1 | Feature: 2 | Scenario: 3 | Given I call empty steps 4 | -------------------------------------------------------------------------------- /examples/tcl/src/fib.tcl: -------------------------------------------------------------------------------- 1 | proc fib {n} { 2 | return [expr {$n<2 ? $n : [fib [expr $n-1]] + [fib [expr $n-2]]}] 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/json/features/embed.feature: -------------------------------------------------------------------------------- 1 | Feature: A screenshot feature 2 | 3 | Scenario: 4 | Given I embed a screenshot 5 | -------------------------------------------------------------------------------- /fixtures/junit/features/pending.feature: -------------------------------------------------------------------------------- 1 | Feature: Pending step 2 | 3 | Scenario: Pending 4 | Given a pending step 5 | 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | 3 | group :development do 4 | # gem 'gherkin', :path => '../gherkin' 5 | end 6 | 7 | gemspec 8 | -------------------------------------------------------------------------------- /examples/python/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /features/step_definitions/iso-8859-1_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fd/cucumber/master/features/step_definitions/iso-8859-1_steps.rb -------------------------------------------------------------------------------- /fixtures/tickets/features/306/only_background.feature: -------------------------------------------------------------------------------- 1 | Feature: woo yeah 2 | 3 | Background: 4 | Given passing step without a table 5 | -------------------------------------------------------------------------------- /examples/i18n/en-lol/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /examples/i18n/zh-CN/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /examples/i18n/zh-TW/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /examples/rspec_doubles/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /examples/ruby2python/Rakefile: -------------------------------------------------------------------------------- 1 | $:.unshift(File.dirname(__FILE__) + '/../../lib') 2 | require 'cucumber/rake/task' 3 | 4 | Cucumber::Rake::Task.new -------------------------------------------------------------------------------- /examples/sinatra/views/layout.erb: -------------------------------------------------------------------------------- 1 | 2 |
3 |