cucumber 2.0.0.rc.4 → 4.0.0.rc.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/{History.md → CHANGELOG.md} +734 -283
- data/CONTRIBUTING.md +26 -23
- data/LICENSE +1 -1
- data/README.md +25 -8
- data/bin/cucumber +3 -3
- data/lib/autotest/cucumber.rb +2 -0
- data/lib/autotest/cucumber_mixin.rb +45 -48
- data/lib/autotest/cucumber_rails.rb +2 -0
- data/lib/autotest/cucumber_rails_rspec.rb +2 -0
- data/lib/autotest/cucumber_rails_rspec2.rb +2 -0
- data/lib/autotest/cucumber_rspec.rb +2 -0
- data/lib/autotest/cucumber_rspec2.rb +2 -0
- data/lib/autotest/discover.rb +4 -2
- data/lib/cucumber.rb +3 -9
- data/lib/cucumber/cli/configuration.rb +23 -106
- data/lib/cucumber/cli/main.rb +45 -25
- data/lib/cucumber/cli/options.rb +411 -223
- data/lib/cucumber/cli/profile_loader.rb +64 -38
- data/lib/cucumber/cli/rerun_file.rb +31 -0
- data/lib/cucumber/configuration.rb +240 -8
- data/lib/cucumber/constantize.rb +9 -10
- data/lib/cucumber/core_ext/string.rb +3 -1
- data/lib/cucumber/deprecate.rb +30 -0
- data/lib/cucumber/encoding.rb +7 -0
- data/lib/cucumber/errors.rb +17 -8
- data/lib/cucumber/events.rb +40 -0
- data/lib/cucumber/events/gherkin_source_parsed.rb +11 -0
- data/lib/cucumber/events/gherkin_source_read.rb +14 -0
- data/lib/cucumber/events/step_activated.rb +26 -0
- data/lib/cucumber/events/step_definition_registered.rb +20 -0
- data/lib/cucumber/events/test_case_finished.rb +14 -0
- data/lib/cucumber/events/test_case_started.rb +11 -0
- data/lib/cucumber/events/test_run_finished.rb +11 -0
- data/lib/cucumber/events/test_run_started.rb +14 -0
- data/lib/cucumber/events/test_step_finished.rb +14 -0
- data/lib/cucumber/events/test_step_started.rb +11 -0
- data/lib/cucumber/file_specs.rb +8 -6
- data/lib/cucumber/filters.rb +4 -0
- data/lib/cucumber/filters/activate_steps.rb +48 -7
- data/lib/cucumber/filters/apply_after_hooks.rb +2 -0
- data/lib/cucumber/filters/apply_after_step_hooks.rb +2 -0
- data/lib/cucumber/filters/apply_around_hooks.rb +2 -0
- data/lib/cucumber/filters/apply_before_hooks.rb +2 -0
- data/lib/cucumber/filters/broadcast_test_run_started_event.rb +28 -0
- data/lib/cucumber/filters/gated_receiver.rb +2 -2
- data/lib/cucumber/filters/prepare_world.rb +13 -11
- data/lib/cucumber/filters/quit.rb +4 -7
- data/lib/cucumber/filters/randomizer.rb +10 -5
- data/lib/cucumber/filters/retry.rb +32 -0
- data/lib/cucumber/filters/tag_limits.rb +6 -5
- data/lib/cucumber/filters/tag_limits/test_case_index.rb +2 -2
- data/lib/cucumber/filters/tag_limits/verifier.rb +5 -7
- data/lib/cucumber/formatter/ansicolor.rb +39 -45
- data/lib/cucumber/formatter/ast_lookup.rb +165 -0
- data/lib/cucumber/formatter/backtrace_filter.rb +54 -0
- data/lib/cucumber/formatter/console.rb +93 -115
- data/lib/cucumber/formatter/console_counts.rb +39 -0
- data/lib/cucumber/formatter/console_issues.rb +61 -0
- data/lib/cucumber/formatter/duration.rb +3 -1
- data/lib/cucumber/formatter/duration_extractor.rb +31 -0
- data/lib/cucumber/formatter/fail_fast.rb +23 -0
- data/lib/cucumber/formatter/fanout.rb +4 -3
- data/lib/cucumber/formatter/ignore_missing_messages.rb +3 -4
- data/lib/cucumber/formatter/interceptor.rb +13 -14
- data/lib/cucumber/formatter/io.rb +10 -5
- data/lib/cucumber/formatter/json.rb +310 -8
- data/lib/cucumber/formatter/junit.rb +175 -110
- data/lib/cucumber/formatter/pretty.rb +359 -154
- data/lib/cucumber/formatter/progress.rb +78 -72
- data/lib/cucumber/formatter/rerun.rb +34 -17
- data/lib/cucumber/formatter/stepdefs.rb +3 -2
- data/lib/cucumber/formatter/steps.rb +7 -7
- data/lib/cucumber/formatter/summary.rb +50 -20
- data/lib/cucumber/formatter/unicode.rb +17 -18
- data/lib/cucumber/formatter/usage.rb +61 -54
- data/lib/cucumber/gherkin/data_table_parser.rb +44 -0
- data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +97 -0
- data/lib/cucumber/gherkin/formatter/escaping.rb +19 -0
- data/lib/cucumber/gherkin/i18n.rb +17 -0
- data/lib/cucumber/gherkin/steps_parser.rb +42 -0
- data/lib/cucumber/{rb_support/rb_dsl.rb → glue/dsl.rb} +47 -26
- data/lib/cucumber/glue/hook.rb +51 -0
- data/lib/cucumber/glue/invoke_in_world.rb +65 -0
- data/lib/cucumber/glue/proto_world.rb +219 -0
- data/lib/cucumber/glue/registry_and_more.rb +192 -0
- data/lib/cucumber/glue/snippet.rb +205 -0
- data/lib/cucumber/glue/step_definition.rb +142 -0
- data/lib/cucumber/glue/world_factory.rb +21 -0
- data/lib/cucumber/hooks.rb +34 -21
- data/lib/cucumber/load_path.rb +2 -0
- data/lib/cucumber/multiline_argument.rb +10 -24
- data/lib/cucumber/multiline_argument/data_table.rb +157 -253
- data/lib/cucumber/multiline_argument/data_table/diff_matrices.rb +154 -0
- data/lib/cucumber/multiline_argument/doc_string.rb +3 -2
- data/lib/cucumber/platform.rb +7 -10
- data/lib/cucumber/project_initializer.rb +44 -0
- data/lib/cucumber/rake/task.rb +37 -29
- data/lib/cucumber/rspec/disable_option_parser.rb +11 -8
- data/lib/cucumber/rspec/doubles.rb +3 -1
- data/lib/cucumber/running_test_case.rb +60 -0
- data/lib/cucumber/runtime.rb +84 -78
- data/lib/cucumber/runtime/after_hooks.rb +10 -7
- data/lib/cucumber/runtime/before_hooks.rb +12 -6
- data/lib/cucumber/runtime/for_programming_languages.rb +14 -44
- data/lib/cucumber/runtime/step_hooks.rb +8 -4
- data/lib/cucumber/runtime/support_code.rb +55 -159
- data/lib/cucumber/runtime/user_interface.rb +15 -24
- data/lib/cucumber/step_definition_light.rb +10 -6
- data/lib/cucumber/step_definitions.rb +6 -4
- data/lib/cucumber/step_match.rb +58 -38
- data/lib/cucumber/step_match_search.rb +67 -0
- data/lib/cucumber/term/ansicolor.rb +40 -39
- data/lib/cucumber/unit.rb +2 -0
- data/lib/cucumber/version +1 -0
- data/{spec → lib}/simplecov_setup.rb +3 -1
- metadata +260 -607
- data/.coveralls.yml +0 -1
- data/.rspec +0 -1
- data/.ruby-gemset +0 -1
- data/.travis.yml +0 -18
- data/.yardopts +0 -1
- data/Gemfile +0 -11
- data/Rakefile +0 -22
- data/bin/cuke +0 -60
- data/cucumber.gemspec +0 -50
- data/cucumber.yml +0 -20
- data/examples/i18n/README.textile +0 -3
- data/examples/i18n/Rakefile +0 -33
- data/examples/i18n/ar/Rakefile +0 -6
- data/examples/i18n/ar/features/addition.feature +0 -17
- data/examples/i18n/ar/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/ar/lib/calculator.rb +0 -11
- data/examples/i18n/bg/Rakefile +0 -6
- data/examples/i18n/bg/features/addition.feature +0 -12
- data/examples/i18n/bg/features/consecutive_calculations.feature +0 -19
- data/examples/i18n/bg/features/division.feature +0 -17
- data/examples/i18n/bg/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/bg/features/support/env.rb +0 -5
- data/examples/i18n/bg/features/support/world.rb +0 -8
- data/examples/i18n/bg/lib/calculator.rb +0 -24
- data/examples/i18n/ca/Rakefile +0 -6
- data/examples/i18n/ca/features/step_definitions/calculator_steps.rb +0 -21
- data/examples/i18n/ca/features/suma.feature +0 -17
- data/examples/i18n/ca/lib/calculadora.rb +0 -16
- data/examples/i18n/cs/Rakefile +0 -6
- data/examples/i18n/cs/features/addition.feature +0 -17
- data/examples/i18n/cs/features/division.feature +0 -11
- data/examples/i18n/cs/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/cs/lib/calculator.rb +0 -14
- data/examples/i18n/da/Rakefile +0 -6
- data/examples/i18n/da/features/sammenlaegning.feature +0 -18
- data/examples/i18n/da/features/step_definitions/lommeregner_steps.rb +0 -24
- data/examples/i18n/da/lib/lommeregner.rb +0 -11
- data/examples/i18n/de/Rakefile +0 -6
- data/examples/i18n/de/features/addition.feature +0 -17
- data/examples/i18n/de/features/division.feature +0 -10
- data/examples/i18n/de/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/de/lib/calculator.rb +0 -14
- data/examples/i18n/el/Rakefile +0 -6
- data/examples/i18n/el/features/addition.feature +0 -17
- data/examples/i18n/el/features/division.feature +0 -10
- data/examples/i18n/el/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/el/lib/calculator.rb +0 -14
- data/examples/i18n/en-lol/Rakefile +0 -4
- data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +0 -16
- data/examples/i18n/en-lol/features/stuffing.feature +0 -8
- data/examples/i18n/en-lol/features/support/env.rb +0 -7
- data/examples/i18n/en-lol/lib/basket.rb +0 -12
- data/examples/i18n/en-lol/lib/belly.rb +0 -11
- data/examples/i18n/en/Rakefile +0 -6
- data/examples/i18n/en/features/addition.feature +0 -17
- data/examples/i18n/en/features/division.feature +0 -10
- data/examples/i18n/en/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/en/lib/calculator.rb +0 -14
- data/examples/i18n/eo/Rakefile +0 -6
- data/examples/i18n/eo/features/adicio.feature +0 -17
- data/examples/i18n/eo/features/divido.feature +0 -10
- data/examples/i18n/eo/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/eo/lib/calculator.rb +0 -14
- data/examples/i18n/es/Rakefile +0 -6
- data/examples/i18n/es/features/adicion.feature +0 -17
- data/examples/i18n/es/features/step_definitions/calculador_steps.rb +0 -21
- data/examples/i18n/es/lib/calculador.rb +0 -14
- data/examples/i18n/et/Rakefile +0 -6
- data/examples/i18n/et/features/jagamine.feature +0 -10
- data/examples/i18n/et/features/liitmine.feature +0 -17
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +0 -24
- data/examples/i18n/et/lib/kalkulaator.rb +0 -14
- data/examples/i18n/fi/Rakefile +0 -6
- data/examples/i18n/fi/features/jakolasku.feature +0 -10
- data/examples/i18n/fi/features/step_definitions/laskin_steps.rb +0 -24
- data/examples/i18n/fi/features/yhteenlasku.feature +0 -17
- data/examples/i18n/fi/lib/laskin.rb +0 -14
- data/examples/i18n/fr/Rakefile +0 -8
- data/examples/i18n/fr/features/addition.feature +0 -18
- data/examples/i18n/fr/features/addition2.feature +0 -17
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +0 -32
- data/examples/i18n/fr/features/support/env.rb +0 -5
- data/examples/i18n/fr/lib/calculatrice.rb +0 -10
- data/examples/i18n/he/Rakefile +0 -6
- data/examples/i18n/he/features/addition.feature +0 -17
- data/examples/i18n/he/features/division.feature +0 -10
- data/examples/i18n/he/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/he/lib/calculator.rb +0 -15
- data/examples/i18n/hi/Rakefile +0 -6
- data/examples/i18n/hi/features/addition.feature +0 -16
- data/examples/i18n/hi/features/division.feature +0 -10
- data/examples/i18n/hi/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/hi/lib/calculator.rb +0 -15
- data/examples/i18n/hu/Rakefile +0 -6
- data/examples/i18n/hu/features/osszeadas.feature +0 -17
- data/examples/i18n/hu/features/osztas.feature +0 -10
- data/examples/i18n/hu/features/step_definitions/calculator_steps.rb +0 -25
- data/examples/i18n/hu/lib/calculator.rb +0 -14
- data/examples/i18n/id/Rakefile +0 -6
- data/examples/i18n/id/features/addition.feature +0 -17
- data/examples/i18n/id/features/division.feature +0 -10
- data/examples/i18n/id/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/id/lib/calculator.rb +0 -14
- data/examples/i18n/it/Rakefile +0 -6
- data/examples/i18n/it/features/somma.feature +0 -11
- data/examples/i18n/it/features/step_definitions/calcolatrice_steps.rb +0 -24
- data/examples/i18n/it/lib/calcolatrice.rb +0 -11
- data/examples/i18n/ja/Rakefile +0 -6
- data/examples/i18n/ja/features/addition.feature +0 -17
- data/examples/i18n/ja/features/division.feature +0 -10
- data/examples/i18n/ja/features/step_definitions/calculator_steps.rb +0 -19
- data/examples/i18n/ja/features/support/env.rb +0 -5
- data/examples/i18n/ja/lib/calculator.rb +0 -14
- data/examples/i18n/ko/Rakefile +0 -6
- data/examples/i18n/ko/features/addition.feature +0 -17
- data/examples/i18n/ko/features/division.feature +0 -11
- data/examples/i18n/ko/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/ko/lib/calculator.rb +0 -14
- data/examples/i18n/lt/Rakefile +0 -6
- data/examples/i18n/lt/features/addition.feature +0 -17
- data/examples/i18n/lt/features/division.feature +0 -10
- data/examples/i18n/lt/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/lt/lib/calculator.rb +0 -14
- data/examples/i18n/lv/Rakefile +0 -6
- data/examples/i18n/lv/features/addition.feature +0 -17
- data/examples/i18n/lv/features/division.feature +0 -10
- data/examples/i18n/lv/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/lv/lib/calculator.rb +0 -14
- data/examples/i18n/no/Rakefile +0 -6
- data/examples/i18n/no/features/step_definitions/kalkulator_steps.rb +0 -17
- data/examples/i18n/no/features/summering.feature +0 -19
- data/examples/i18n/no/features/support/env.rb +0 -6
- data/examples/i18n/no/lib/kalkulator.rb +0 -11
- data/examples/i18n/pl/Rakefile +0 -6
- data/examples/i18n/pl/features/addition.feature +0 -17
- data/examples/i18n/pl/features/division.feature +0 -10
- data/examples/i18n/pl/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/pl/features/support/env.rb +0 -5
- data/examples/i18n/pl/lib/calculator.rb +0 -14
- data/examples/i18n/pt/Rakefile +0 -6
- data/examples/i18n/pt/features/adicao.feature +0 -11
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +0 -20
- data/examples/i18n/pt/features/support/env.rb +0 -5
- data/examples/i18n/pt/lib/calculadora.rb +0 -10
- data/examples/i18n/ro/Rakefile +0 -6
- data/examples/i18n/ro/features/adunare.feature +0 -12
- data/examples/i18n/ro/features/step_definitions/calculator_steps.rb +0 -21
- data/examples/i18n/ro/lib/calculator.rb +0 -11
- data/examples/i18n/ru/Rakefile +0 -6
- data/examples/i18n/ru/features/addition.feature +0 -11
- data/examples/i18n/ru/features/consecutive_calculations.feature +0 -17
- data/examples/i18n/ru/features/division.feature +0 -16
- data/examples/i18n/ru/features/step_definitions/calculator_steps.rb +0 -19
- data/examples/i18n/ru/features/support/env.rb +0 -5
- data/examples/i18n/ru/features/support/world.rb +0 -8
- data/examples/i18n/ru/lib/calculator.rb +0 -24
- data/examples/i18n/sk/Rakefile +0 -6
- data/examples/i18n/sk/features/addition.feature +0 -17
- data/examples/i18n/sk/features/division.feature +0 -10
- data/examples/i18n/sk/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/sk/lib/calculator.rb +0 -14
- data/examples/i18n/sr-Cyrl/Rakefile +0 -6
- data/examples/i18n/sr-Cyrl/features/sabiranje.feature +0 -18
- data/examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb +0 -20
- data/examples/i18n/sr-Cyrl/features/support/env.rb +0 -5
- data/examples/i18n/sr-Cyrl/lib/calculator.rb +0 -12
- data/examples/i18n/sr-Latn/Rakefile +0 -6
- data/examples/i18n/sr-Latn/features/sabiranje.feature +0 -18
- data/examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/sr-Latn/lib/calculator.rb +0 -12
- data/examples/i18n/sv/Rakefile +0 -6
- data/examples/i18n/sv/features/step_definitions/kalkulator_steps.rb +0 -24
- data/examples/i18n/sv/features/summering.feature +0 -18
- data/examples/i18n/sv/lib/kalkulator.rb +0 -11
- data/examples/i18n/tr/Rakefile +0 -6
- data/examples/i18n/tr/features/bolme.feature +0 -10
- data/examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb +0 -24
- data/examples/i18n/tr/features/toplama.feature +0 -18
- data/examples/i18n/tr/lib/hesap_makinesi.rb +0 -15
- data/examples/i18n/uk/Rakefile +0 -6
- data/examples/i18n/uk/features/addition.feature +0 -11
- data/examples/i18n/uk/features/consecutive_calculations.feature +0 -17
- data/examples/i18n/uk/features/division.feature +0 -16
- data/examples/i18n/uk/features/step_definitions/calculator_steps.rb +0 -19
- data/examples/i18n/uk/features/support/env.rb +0 -5
- data/examples/i18n/uk/features/support/world.rb +0 -8
- data/examples/i18n/uk/lib/calculator.rb +0 -24
- data/examples/i18n/uz/Rakefile +0 -6
- data/examples/i18n/uz/features/addition.feature +0 -10
- data/examples/i18n/uz/features/consecutive_calculations.feature +0 -17
- data/examples/i18n/uz/features/division.feature +0 -17
- data/examples/i18n/uz/features/step_definitions/calculator_steps.rb +0 -19
- data/examples/i18n/uz/features/support/env.rb +0 -5
- data/examples/i18n/uz/features/support/world.rb +0 -8
- data/examples/i18n/uz/lib/calculator.rb +0 -24
- data/examples/i18n/zh-CN/Rakefile +0 -4
- data/examples/i18n/zh-CN/features/addition.feature +0 -18
- data/examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb +0 -26
- data/examples/i18n/zh-CN/lib/calculator.rb +0 -10
- data/examples/i18n/zh-TW/Rakefile +0 -4
- data/examples/i18n/zh-TW/features/addition.feature +0 -17
- data/examples/i18n/zh-TW/features/division.feature +0 -11
- data/examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb +0 -24
- data/examples/i18n/zh-TW/lib/calculator.rb +0 -14
- data/examples/rspec_doubles/Rakefile +0 -4
- data/examples/rspec_doubles/features/mocking.feature +0 -9
- data/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +0 -19
- data/examples/rspec_doubles/features/support/env.rb +0 -12
- data/examples/sinatra/README.textile +0 -13
- data/examples/sinatra/Rakefile +0 -6
- data/examples/sinatra/app.rb +0 -14
- data/examples/sinatra/features/add.feature +0 -11
- data/examples/sinatra/features/step_definitions/add_steps.rb +0 -15
- data/examples/sinatra/features/support/env.rb +0 -10
- data/examples/sinatra/views/add.erb +0 -7
- data/examples/sinatra/views/layout.erb +0 -8
- data/examples/tcl/README.textile +0 -11
- data/examples/tcl/Rakefile +0 -6
- data/examples/tcl/features/fibonnacci.feature +0 -17
- data/examples/tcl/features/step_definitions/fib_steps.rb +0 -7
- data/examples/tcl/features/support/env.rb +0 -6
- data/examples/tcl/src/fib.tcl +0 -3
- data/examples/test_unit/Gemfile +0 -4
- data/examples/test_unit/Rakefile +0 -6
- data/examples/test_unit/features/step_definitions/test_unit_steps.rb +0 -20
- data/examples/test_unit/features/test_unit.feature +0 -9
- data/examples/watir/README.textile +0 -16
- data/examples/watir/Rakefile +0 -12
- data/examples/watir/cucumber.yml +0 -1
- data/examples/watir/features/search.feature +0 -12
- data/examples/watir/features/step_definitions/search_steps.rb +0 -26
- data/examples/watir/features/support/env.rb +0 -35
- data/examples/watir/features/support/screenshots.rb +0 -47
- data/features/docs/api/list_step_defs_as_json.feature +0 -50
- data/features/docs/api/run_cli_main_with_existing_runtime.feature +0 -29
- data/features/docs/cli/backtraces.feature +0 -36
- data/features/docs/cli/dry_run.feature +0 -25
- data/features/docs/cli/exclude_files.feature +0 -19
- data/features/docs/cli/execute_with_tag_filter.feature +0 -117
- data/features/docs/cli/randomize.feature +0 -46
- data/features/docs/cli/require.feature +0 -27
- data/features/docs/cli/run_scenarios_matching_name.feature +0 -104
- data/features/docs/cli/run_specific_scenarios.feature +0 -130
- data/features/docs/cli/showing_differences.feature +0 -43
- data/features/docs/cli/specifying_multiple_formatters.feature +0 -44
- data/features/docs/cli/strict_mode.feature +0 -41
- data/features/docs/defining_steps/nested_steps.feature +0 -129
- data/features/docs/defining_steps/nested_steps_i18n.feature +0 -34
- data/features/docs/defining_steps/nested_steps_with_second_arg.feature +0 -73
- data/features/docs/defining_steps/one_line_step_definitions.feature +0 -65
- data/features/docs/defining_steps/printing_messages.feature +0 -148
- data/features/docs/defining_steps/skip_scenario.feature +0 -62
- data/features/docs/defining_steps/snippets.feature +0 -56
- data/features/docs/defining_steps/table_diffing.feature +0 -50
- data/features/docs/defining_steps/transforms.feature +0 -63
- data/features/docs/exception_in_after_hook.feature +0 -126
- data/features/docs/exception_in_after_step_hook.feature +0 -102
- data/features/docs/exception_in_before_hook.feature +0 -96
- data/features/docs/extending_cucumber/custom_filter.feature +0 -29
- data/features/docs/extending_cucumber/custom_formatter.feature +0 -94
- data/features/docs/formatters/debug_formatter.feature +0 -47
- data/features/docs/formatters/formatter_step_file_colon_line.feature +0 -44
- data/features/docs/formatters/html_formatter.feature +0 -90
- data/features/docs/formatters/json_formatter.feature +0 -696
- data/features/docs/formatters/junit_formatter.feature +0 -276
- data/features/docs/formatters/pretty_formatter.feature +0 -73
- data/features/docs/formatters/progress_formatter.feature +0 -31
- data/features/docs/formatters/rerun_formatter.feature +0 -136
- data/features/docs/formatters/usage_formatter.feature +0 -102
- data/features/docs/getting_started.feature +0 -27
- data/features/docs/gherkin/background.feature +0 -559
- data/features/docs/gherkin/doc_strings.feature +0 -74
- data/features/docs/gherkin/expand_option_for_outlines.feature +0 -46
- data/features/docs/gherkin/language_from_header.feature +0 -32
- data/features/docs/gherkin/language_help.feature +0 -37
- data/features/docs/gherkin/outlines.feature +0 -158
- data/features/docs/gherkin/unicode_table.feature +0 -32
- data/features/docs/gherkin/using_descriptions.feature +0 -88
- data/features/docs/gherkin/using_star_notation.feature +0 -37
- data/features/docs/iso-8859-1.feature +0 -6
- data/features/docs/post_configuration_hook.feature +0 -49
- data/features/docs/profiles.feature +0 -120
- data/features/docs/rake_task.feature +0 -141
- data/features/docs/raketask.feature +0 -44
- data/features/docs/report_called_undefined_steps.feature +0 -57
- data/features/docs/wire_protocol.feature +0 -337
- data/features/docs/wire_protocol_erb.feature +0 -56
- data/features/docs/wire_protocol_table_diffing.feature +0 -125
- data/features/docs/wire_protocol_tags.feature +0 -86
- data/features/docs/wire_protocol_timeouts.feature +0 -63
- data/features/docs/work_in_progress.feature +0 -154
- data/features/docs/writing_support_code/after_hooks.feature +0 -56
- data/features/docs/writing_support_code/around_hooks.feature +0 -229
- data/features/docs/writing_support_code/before_hook.feature +0 -61
- data/features/docs/writing_support_code/hook_order.feature +0 -61
- data/features/docs/writing_support_code/load_path.feature +0 -17
- data/features/docs/writing_support_code/state.feature +0 -32
- data/features/docs/writing_support_code/tagged_hooks.feature +0 -57
- data/features/lib/step_definitions/aruba_steps.rb +0 -22
- data/features/lib/step_definitions/cucumber_steps.rb +0 -50
- data/features/lib/step_definitions/iso-8859-1_steps.rb +0 -12
- data/features/lib/step_definitions/json_steps.rb +0 -7
- data/features/lib/step_definitions/junit_steps.rb +0 -13
- data/features/lib/step_definitions/language_steps.rb +0 -8
- data/features/lib/step_definitions/profile_steps.rb +0 -15
- data/features/lib/step_definitions/ruby_steps.rb +0 -3
- data/features/lib/step_definitions/wire_steps.rb +0 -41
- data/features/lib/support/env.rb +0 -21
- data/features/lib/support/fake_wire_server.rb +0 -77
- data/features/lib/support/feature_factory.rb +0 -67
- data/features/lib/support/normalise_output.rb +0 -33
- data/gem_tasks/contributors.rake +0 -15
- data/gem_tasks/cov.rake +0 -5
- data/gem_tasks/cucumber.rake +0 -25
- data/gem_tasks/downloads.rb +0 -7
- data/gem_tasks/environment.rake +0 -7
- data/gem_tasks/examples.rake +0 -11
- data/gem_tasks/fix_cr_lf.rake +0 -10
- data/gem_tasks/flog.rake +0 -4
- data/gem_tasks/rspec.rake +0 -6
- data/gem_tasks/sass.rake +0 -4
- data/gem_tasks/stats +0 -16
- data/gem_tasks/versions.txt +0 -74
- data/lib/cucumber/ast.rb +0 -13
- data/lib/cucumber/ast/facade.rb +0 -117
- data/lib/cucumber/core_ext/instance_exec.rb +0 -70
- data/lib/cucumber/core_ext/proc.rb +0 -36
- data/lib/cucumber/formatter/cucumber.css +0 -285
- data/lib/cucumber/formatter/cucumber.sass +0 -247
- data/lib/cucumber/formatter/debug.rb +0 -35
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +0 -201
- data/lib/cucumber/formatter/gpretty.rb +0 -24
- data/lib/cucumber/formatter/html.rb +0 -674
- data/lib/cucumber/formatter/jquery-min.js +0 -154
- data/lib/cucumber/formatter/json_pretty.rb +0 -10
- data/lib/cucumber/formatter/legacy_api/adapter.rb +0 -1024
- data/lib/cucumber/formatter/legacy_api/ast.rb +0 -376
- data/lib/cucumber/formatter/legacy_api/results.rb +0 -51
- data/lib/cucumber/formatter/legacy_api/runtime_facade.rb +0 -30
- data/lib/cucumber/language_support.rb +0 -30
- data/lib/cucumber/language_support/language_methods.rb +0 -71
- data/lib/cucumber/rb_support/rb_hook.rb +0 -18
- data/lib/cucumber/rb_support/rb_language.rb +0 -160
- data/lib/cucumber/rb_support/rb_step_definition.rb +0 -122
- data/lib/cucumber/rb_support/rb_transform.rb +0 -59
- data/lib/cucumber/rb_support/rb_world.rb +0 -142
- data/lib/cucumber/rb_support/regexp_argument_matcher.rb +0 -21
- data/lib/cucumber/rb_support/snippet.rb +0 -149
- data/lib/cucumber/wire_support/configuration.rb +0 -38
- data/lib/cucumber/wire_support/connection.rb +0 -61
- data/lib/cucumber/wire_support/request_handler.rb +0 -32
- data/lib/cucumber/wire_support/wire_exception.rb +0 -32
- data/lib/cucumber/wire_support/wire_language.rb +0 -68
- data/lib/cucumber/wire_support/wire_packet.rb +0 -34
- data/lib/cucumber/wire_support/wire_protocol.rb +0 -43
- data/lib/cucumber/wire_support/wire_protocol/requests.rb +0 -133
- data/lib/cucumber/wire_support/wire_step_definition.rb +0 -19
- data/spec/cucumber/cli/configuration_spec.rb +0 -503
- data/spec/cucumber/cli/main_spec.rb +0 -105
- data/spec/cucumber/cli/options_spec.rb +0 -335
- data/spec/cucumber/cli/profile_loader_spec.rb +0 -46
- data/spec/cucumber/configuration_spec.rb +0 -23
- data/spec/cucumber/constantize_spec.rb +0 -19
- data/spec/cucumber/core_ext/proc_spec.rb +0 -69
- data/spec/cucumber/file_specs_spec.rb +0 -60
- data/spec/cucumber/filters/activate_steps_spec.rb +0 -57
- data/spec/cucumber/filters/gated_receiver_spec.rb +0 -47
- data/spec/cucumber/filters/tag_limits/test_case_index_spec.rb +0 -38
- data/spec/cucumber/filters/tag_limits/verifier_spec.rb +0 -57
- data/spec/cucumber/filters/tag_limits_spec.rb +0 -59
- data/spec/cucumber/formatter/ansicolor_spec.rb +0 -32
- data/spec/cucumber/formatter/debug_spec.rb +0 -64
- data/spec/cucumber/formatter/duration_spec.rb +0 -22
- data/spec/cucumber/formatter/html_spec.rb +0 -459
- data/spec/cucumber/formatter/interceptor_spec.rb +0 -136
- data/spec/cucumber/formatter/junit_spec.rb +0 -196
- data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +0 -2002
- data/spec/cucumber/formatter/pretty_spec.rb +0 -810
- data/spec/cucumber/formatter/progress_spec.rb +0 -85
- data/spec/cucumber/formatter/rerun_spec.rb +0 -107
- data/spec/cucumber/formatter/spec_helper.rb +0 -67
- data/spec/cucumber/hooks_spec.rb +0 -30
- data/spec/cucumber/multiline_argument/data_table_spec.rb +0 -514
- data/spec/cucumber/rake/forked_spec.rb +0 -53
- data/spec/cucumber/rb_support/rb_language_spec.rb +0 -279
- data/spec/cucumber/rb_support/rb_step_definition_spec.rb +0 -152
- data/spec/cucumber/rb_support/rb_transform_spec.rb +0 -46
- data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +0 -22
- data/spec/cucumber/rb_support/snippet_spec.rb +0 -137
- data/spec/cucumber/runtime/for_programming_languages_spec.rb +0 -36
- data/spec/cucumber/runtime/support_code_spec.rb +0 -123
- data/spec/cucumber/runtime_spec.rb +0 -46
- data/spec/cucumber/sell_cucumbers.feature +0 -19
- data/spec/cucumber/step_match_spec.rb +0 -79
- data/spec/cucumber/wire_support/configuration_spec.rb +0 -64
- data/spec/cucumber/wire_support/connection_spec.rb +0 -64
- data/spec/cucumber/wire_support/wire_exception_spec.rb +0 -50
- data/spec/cucumber/wire_support/wire_language_spec.rb +0 -46
- data/spec/cucumber/wire_support/wire_packet_spec.rb +0 -44
- data/spec/cucumber/world/pending_spec.rb +0 -46
- data/spec/spec_helper.rb +0 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 63fada72f4a011868619082a74f21360edd8751372c468509d2c56db437c29e1
|
4
|
+
data.tar.gz: 5a0454b1251822723b3f5d6f777907e7c49751201f292357730350816a09123a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6947dbe7784aa7068e892762c1f96faced5842feb16e1b756a2a5c181a46f021f1c0df56229a266003137ef0009d97c9e5489e971ceeed24bf0b432c3fd16769
|
7
|
+
data.tar.gz: fa930e37ce5a05ee31e270d1f20642defb0b771142969d8945550543e60dd8546afdd272e5707319a7b00ce9bfa9d28e01e6da8f2585a8e97a25b08072a31b75
|
data/{History.md → CHANGELOG.md}
RENAMED
@@ -1,98 +1,544 @@
|
|
1
|
-
|
1
|
+
# CHANGE LOG
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
This project adheres to [Semantic Versioning](http://semver.org).
|
6
|
+
|
7
|
+
This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com).
|
8
|
+
|
9
|
+
Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) for more info on how to contribute to Cucumber.
|
10
|
+
|
11
|
+
----
|
12
|
+
|
13
|
+
## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2) (Not released)
|
14
|
+
|
15
|
+
### Added
|
16
|
+
* There is a new methodology in Cucumber for how the auto-loader works
|
17
|
+
* The old `load` behaviour is now replaced with a newer `require` behaviour
|
18
|
+
* Cucumber will (From version 4), now auto-load files using the `require` method
|
19
|
+
* If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
|
20
|
+
* Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
|
21
|
+
* For more information on this change, including why it was made. Please read this
|
22
|
+
[Blog Post](www.google.com)
|
23
|
+
([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
|
24
|
+
[#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
|
25
|
+
[luke-hill](https://github.com/luke-hill))
|
26
|
+
|
27
|
+
### Changed
|
28
|
+
* Going forward the minimum ruby version for all cucumber based gems is 2.3
|
29
|
+
([luke-hill](https://github.com/luke-hill))
|
30
|
+
|
31
|
+
### Removed
|
32
|
+
* Removed Travis publish job for cucumber-pro(a.k.a. jam)
|
33
|
+
([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
|
34
|
+
[luke-hill](https://github.com/luke-hill))
|
35
|
+
|
36
|
+
* Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
|
37
|
+
start working, or if someone can make the build pass with an older version.
|
38
|
+
All this means is we're ok to make releases while the jruby CI job is failing.
|
39
|
+
|
40
|
+
([aslakhellesoy](https://github.com/aslakhellesoy))
|
41
|
+
|
42
|
+
* Remove `dots-formatter introduced in `4.0.0rc1`
|
43
|
+
|
44
|
+
### Fixed
|
45
|
+
|
46
|
+
* Fix the placeholder expansions in the json formatter
|
47
|
+
([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
|
48
|
+
[brasmusson](https://github.com/brasmusson))
|
49
|
+
* Fix seed printed in cucumber UI to match the seed that was actually used.
|
50
|
+
([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
|
51
|
+
[deivid-rodriguez](https://github.com/deivid-rodriguez))
|
52
|
+
* Make SIGINT/`Ctrl+c` behavior consistent with SIGTERM/`kill` behavior - now first invocation causes existing scenario to stop running and jump to `at_exit`, second invocation causes immediate exit. Before that first invocation only instructed Cucumber to exit after scenario and second invocation caused immediate exit skipping `at_exit`.
|
53
|
+
([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
|
54
|
+
[akostadinov](https://github.com/akostadinov))
|
55
|
+
|
56
|
+
### Improved
|
57
|
+
|
58
|
+
* Filter out any lines containing `site_ruby` from stacktrace
|
59
|
+
|
60
|
+
## [4.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.2...v4.0.0.rc.1) (2018-09-29)
|
61
|
+
|
62
|
+
### Added
|
63
|
+
|
64
|
+
* Added support for new `Rule` keyword. [Read more here.](https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25)
|
65
|
+
* Added new `dots` formatter. This is the first step of a larger strategy to move the formatters to a new architecture where they delegate to shared executables via messages.
|
66
|
+
|
67
|
+
### Changed
|
68
|
+
|
69
|
+
* Use Gherkin v6.
|
70
|
+
([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
|
71
|
+
[brasmusson](https://github.com/brasmusson))
|
72
|
+
* Do not apply Before and After Hooks to Test Cases with no Test Steps.
|
73
|
+
([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
|
74
|
+
[brasmusson](https://github.com/brasmusson))
|
75
|
+
* Pass the registry to the Wire plugin.
|
76
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
77
|
+
[brasmusson](https://github.com/brasmusson))
|
78
|
+
* Adapt to using the Gherkin compiler and Pickles in the core.
|
79
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
80
|
+
[brasmusson](https://github.com/brasmusson))
|
81
|
+
* Let the Pretty Formatter use events.
|
82
|
+
([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
|
83
|
+
[brasmusson](https://github.com/brasmusson))
|
84
|
+
* Use single quotes in generated template steps ([#1323](https://github.com/cucumber/cucumber-ruby/pull/1323) [acant](https://github.com/acant))
|
85
|
+
|
86
|
+
### Removed
|
87
|
+
|
88
|
+
* Remove the support of old style tag expressions.
|
89
|
+
([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
|
90
|
+
[brasmusson](https://github.com/brasmusson))
|
91
|
+
* Remove the Legacy API for Formatters.
|
92
|
+
([#1230](https://github.com/cucumber/cucumber-ruby/pull/1230),
|
93
|
+
[#839](https://github.com/cucumber/cucumber-ruby/issues/839)
|
94
|
+
[brasmusson](https://github.com/brasmusson))
|
95
|
+
* Remove the JSON Pretty Formatter (which was the same as the JSON formatter).
|
96
|
+
([brasmusson](https://github.com/brasmusson))
|
97
|
+
* Remove the HTML Formatter.
|
98
|
+
([#1306](https://github.com/cucumber/cucumber-ruby/pull/1306)
|
99
|
+
[brasmusson](https://github.com/brasmusson))
|
100
|
+
|
101
|
+
### Fixed
|
102
|
+
|
103
|
+
* Wire protocol compatibility for docstrings.
|
104
|
+
([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
|
105
|
+
* Let the Rerun Formatter handle flaky scenarios.
|
106
|
+
([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
|
107
|
+
[brasmusson](https://github.com/brasmusson))
|
108
|
+
|
109
|
+
### Improved
|
110
|
+
|
111
|
+
* Code style changes completed as per backlog of Rubocop TODO file. ([#1021](https://github.com/cucumber/cucumber-ruby/issues/1021) [@jaysonesmith](https://github.com/jaysonesmith))
|
112
|
+
|
113
|
+
## [3.1.2](https://github.com/cucumber/cucumber-ruby/compare/v3.1.1...v3.1.2) (2018-07-13)
|
114
|
+
|
115
|
+
### Changed
|
116
|
+
|
117
|
+
* Upgraded to `cucumber-core` 3.2.0
|
118
|
+
* Change to use the gherkin step location in the Json formatter.
|
119
|
+
([#1243](https://github.com/cucumber/cucumber-ruby/pull/1243),
|
120
|
+
[#1108](https://github.com/cucumber/cucumber-ruby/issues/1108)
|
121
|
+
[brasmusson](https://github.com/brasmusson))
|
122
|
+
|
123
|
+
### Fixed
|
124
|
+
|
125
|
+
* Support ParameterType with empty capture group.
|
126
|
+
([#404](https://github.com/cucumber/cucumber/issues/404)
|
127
|
+
[aslakhellesoy](https://github.com/aslakhellesoy))
|
128
|
+
|
129
|
+
## [3.1.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.0...v3.1.1) (2018-06-03)
|
130
|
+
|
131
|
+
### Added
|
132
|
+
|
133
|
+
* N/A
|
134
|
+
|
135
|
+
### Changed
|
136
|
+
|
137
|
+
* Add Rubocop to default Rake task ([#1256](https://github.com/cucumber/cucumber-ruby/pull/1256) [@jaysonesmith](https://github.com/jaysonesmith))
|
138
|
+
* Upgraded `cucumber-expressions` dependency to ~> 6.0.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
139
|
+
* Upgraded to `gherkin` 5.1.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
140
|
+
|
141
|
+
### Deprecated
|
142
|
+
|
143
|
+
* N/A
|
144
|
+
|
145
|
+
### Removed
|
146
|
+
|
147
|
+
* N/A
|
148
|
+
|
149
|
+
### Fixed
|
150
|
+
|
151
|
+
* Make `--fail-fast` play nice with `--retry` ([#1283](https://github.com/cucumber/cucumber-ruby/pull/1283) [@yrral86](https://github.com/yrral86))
|
152
|
+
* Fix incompatible encodings error in JUnit formatter ([#1244](https://github.com/cucumber/cucumber-ruby/pull/1244) [@NickAb](https://github.com/NickAb)) (except on JRuby, see [#1259](https://github.com/cucumber/cucumber-ruby/pull/1259))
|
153
|
+
* Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
154
|
+
* Fixed lengthy stacktrace when running `cucumber -f stepdefs` when steps aren't defined. ([#1286](https://github.com/cucumber/cucumber-ruby/pull/1286) [@xtrasimplicity](https://github.com/xtrasimplicity))
|
155
|
+
* Fixed an error with HTML snippet generation when `frozen_string_literal` is enabled and the `Syntax` gem is not installed. ([#1287](https://github.com/cucumber/cucumber-ruby/pull/1287) [@xtrasimplicity](https://github.com/xtrasimplicity))
|
156
|
+
|
157
|
+
### Improved
|
158
|
+
|
159
|
+
* N/A
|
160
|
+
|
161
|
+
## [3.1.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.2...v3.1.0) (2017-11-28)
|
162
|
+
|
163
|
+
### Added
|
164
|
+
|
165
|
+
* ParameterType transformer runs in World
|
166
|
+
([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
|
167
|
+
[@aslakhellesoy](https://github.com/aslakhellesoy))
|
168
|
+
|
169
|
+
### Changed
|
170
|
+
|
171
|
+
* Upgraded to `cucumber-expressions` 5.0.4
|
172
|
+
* Upgraded to `cucumber-tag_expressions` 1.1.0
|
173
|
+
* Upgraded to `gherkin` 5.0.0
|
174
|
+
|
175
|
+
### Fixed
|
176
|
+
|
177
|
+
* Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
178
|
+
|
179
|
+
## [3.0.2](https://github.com/cucumber/cucumber-ruby/compare/v3.0.1...v3.0.2) (2017-11-11)
|
180
|
+
|
181
|
+
### Removed
|
182
|
+
|
183
|
+
* Cucumber is no longer tested on Ruby 2.1 and below.
|
184
|
+
|
185
|
+
### Fixed
|
186
|
+
|
187
|
+
* Fix html reporter with more than one embedded screenshot ([#1216](https://github.com/cucumber/cucumber-ruby/pull/1216) [@nonkor](https://github.com/nonkor))
|
188
|
+
* Change test expectation to handle Ruby's unstable sorting ([#1210](https://github.com/cucumber/cucumber-ruby/pull/1210) [@jaysonesmith](https://github.com/jaysonesmith))
|
189
|
+
* Fix the printing of newlines in the rerun formatter - a problem introduced in [#1162](https://github.com/cucumber/cucumber-ruby/issues/1162) ([#1207](https://github.com/cucumber/cucumber-ruby/issues/1207) [@brasmusson](https://github.com/brasmusson))
|
190
|
+
* Handle the `--retry` option in profiles ([#1050](https://github.com/cucumber/cucumber-ruby/issues/1050) [@brasmusson](https://github.com/brasmusson))
|
191
|
+
|
192
|
+
## [3.0.1](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0...3.0.1) (2017-09-29)
|
193
|
+
|
194
|
+
### Fixed
|
195
|
+
|
196
|
+
* `ParameterType` can now override `use_for_snippets` and `prefer_for_regexp_match` without throwing an error. ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
197
|
+
* Gemspec has `required_ruby_version = '>= 2.1'` ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
198
|
+
|
199
|
+
## [3.0.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0.pre.2...v3.0.0) (2017-09-27)
|
200
|
+
|
201
|
+
### Changed
|
202
|
+
|
203
|
+
* Regexp capture groups with `(\d+)` are automatically converted to `Integer`
|
204
|
+
* Rename `Step#name` to `#text` ([#1130](https://github.com/cucumber/cucumber-ruby/pull/1130) [@olleolleolle](https://github.com/olleolleolle))
|
205
|
+
* `Transform` has been removed and replaced with `ParameterType`. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). ([#1190](https://github.com/cucumber/cucumber-ruby/issues/1190) @aslakhellesoy)
|
206
|
+
* Nested capture groups are not counted as parameters. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). (@aslakhellesoy)
|
207
|
+
|
208
|
+
### Added
|
209
|
+
|
210
|
+
* Handle selective strict options. ([#1169](https://github.com/cucumber/cucumber-ruby/pull/1169), [#1160](https://github.com/cucumber/cucumber-ruby/issues/1160) @brasmusson)
|
211
|
+
|
212
|
+
### Fixed
|
213
|
+
|
214
|
+
* Use absolute path in IO formatter to prevent `chdir` issues. ([#1111](https://github.com/cucumber/cucumber-ruby/pull/1111/files) @akostadinov)
|
215
|
+
|
216
|
+
* Fix bug in DataTable#symbolic_hashes ([#1200](https://github.com/cucumber/cucumber-ruby/pull/1200) @Ben-Behar)
|
217
|
+
|
218
|
+
* Fix typo in JSON formatter ([#1196](https://github.com/cucumber/cucumber-ruby/pull/1196) @alb-i986)
|
219
|
+
|
220
|
+
* Handle ambiguous steps as failed steps, when not using `--guess` ([#1132](https://github.com/cucumber/cucumber-ruby/pull/1132), [#1113](https://github.com/cucumber/cucumber-ruby/issues/1113) @MadameSheema, @enkessler, @brasmusson)
|
221
|
+
|
222
|
+
### Improved
|
223
|
+
|
224
|
+
* Refactor: Extract HTMLBuilder#string_to_embed method to DRY up code ([#1187](https://github.com/cucumber/cucumber-ruby/pulls/1187) [@danascheider](https://github.com/danascheider))
|
225
|
+
* As per [#251](https://github.com/cucumber/cucumber/issues/251): renamed History.md to CHANGELOG.md, added contributing message at beginning, and misc formatting. ([#1185](https://github.com/cucumber/cucumber-ruby/issues/1185) [jaysonesmith](https://github.com/jaysonesmith))
|
226
|
+
* Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
|
227
|
+
|
228
|
+
## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2)
|
229
|
+
|
230
|
+
### Breaking changes
|
231
|
+
|
232
|
+
* Remove support for Ruby 1.9.3 ([#993](https://github.com/cucumber/cucumber-ruby/pull/993) @brasmusson)
|
233
|
+
* Remove support for Ruby 2.0.0 ([#1068](https://github.com/cucumber/cucumber-ruby/pull/1068) @mattwynne)
|
234
|
+
|
235
|
+
### New Features
|
236
|
+
|
237
|
+
* Support for Cucumber Expressions ([#1156](https://github.com/cucumber/cucumber-ruby/pull/1156))
|
238
|
+
* Use newlines in the rerun file produces by the rerun formatter ([1162](https://github.com/cucumber/cucumber-ruby/issues/1162) @brasmusson)
|
239
|
+
* Detect and list flaky scenarios in the list of not ok scenarios ([#1159](https://github.com/cucumber/cucumber-ruby/pull/1159), ([1044](https://github.com/cucumber/cucumber-ruby/issues/1044)) @brasmusson)
|
240
|
+
* List all not ok scenarios in the summary ([#1158](https://github.com/cucumber/cucumber-ruby/pull/1158) @brasmusson)
|
241
|
+
* Emulate Cucumber-JS's new i18n CLI options ([#1140](https://github.com/cucumber/cucumber-ruby/pull/1140) @aidamanna)
|
242
|
+
* Use the event bus in Cucumber-Ruby-Core ([#973](https://github.com/cucumber/cucumber-ruby/pull/973) @mattwynne)
|
243
|
+
* Add --retry option to retry failed tests as part of the same run ([#920](https://github.com/cucumber/cucumber-ruby/pull/920) @DanaScheider)
|
244
|
+
* Add a summary formatter ([#999](https://github.com/cucumber/cucumber-ruby/pull/999) @mattwynne)
|
245
|
+
* Namespaced World modules ([#1007](https://github.com/cucumber/cucumber-ruby/pull/1007) @nodo)
|
246
|
+
* Add per-formatter CLI options ([#1058](https://github.com/cucumber/cucumber-ruby/pull/1058) @nodo)
|
247
|
+
* Use tag expressions for tag filtering ([#1054](https://github.com/cucumber/cucumber-ruby/pull/1054) @brasmusson)
|
248
|
+
* Add a `TestRunStarting` event ([#1082](https://github.com/cucumber/cucumber-ruby/pull/1082) @mattwynne)
|
249
|
+
|
250
|
+
### Bugfixes
|
251
|
+
|
252
|
+
* Fix the profile loader on Windows ([#1133](https://github.com/cucumber/cucumber-ruby/pulls/1133) @enkessler)
|
253
|
+
* Fix incorrect `DataTable#diff!` results ([#1102](https://github.com/cucumber/cucumber-ruby/pulls/1102) @botandrose)
|
254
|
+
* Do not apply the hooks to the test case several times when using the retry option ([#1098](https://github.com/cucumber/cucumber-ruby/issues/1098) @brasmusson)
|
255
|
+
* Fix bug in comparing empty data tables ([#1097](https://github.com/cucumber/cucumber-ruby/pulls/1097), resolves [#1096](https://github.com/cucumber/cucumber-ruby/issues/1096))
|
256
|
+
* Configure Gemfile to fetch cucumber-ruby-wire from git if the repo is not found locally ([#983](https://github.com/cucumber/cucumber-ruby/pulls/983), resolves [#961](https://github.com/cucumber/cucumber-ruby/issues/961))
|
257
|
+
* Fix regression displaying CLI help ([#991](https://github.com/cucumber/cucumber-ruby/pull/991) @mattwynne)
|
258
|
+
* with_filtered_backtrace called on Test::Result::Unknown with strange feature file ([#967](https://github.com/cucumber/cucumber-ruby/issues/967) @danascheider)
|
259
|
+
* fix HTML formatter backtrace duplicate line bug ([#965](https://gthub.com/cucumber/cucumber-ruby/pull/965) @josephks)
|
260
|
+
* Update env names correctly ([#1067](https://github.com/cucumber/cucumber-ruby/pull/1067) @junaruga)
|
261
|
+
* Relax filter for "/usr/local/ruby-X.Y.Z/bin/bundle" ([#1079](https://github.com/cucumber/cucumber-ruby/pull/1079) @junaruga)
|
262
|
+
* Avoid showing "@ rb_sysopen" noise for Ruby 2.4 ([#1080](https://github.com/cucumber/cucumber-ruby/pull/1080) @junaruga)
|
263
|
+
|
264
|
+
### Refactoring / Developer Experience
|
265
|
+
|
266
|
+
* Spec: Events.registry exercised ([#1126](https://github.com/cucumber/cucumber-ruby/pulls/1126) @olleolleolle)
|
267
|
+
* Remove programming language abstraction ([#1131](https://github.com/cucumber/cucumber-ruby/pulls/1131) @tooky, @mattwynne)
|
268
|
+
* Update cucumber yaml to use new tag syntax ([#1147](https://github.com/cucumber/cucumber-ruby/pulls/1147) @danascheider)
|
269
|
+
* Turn off Windows failures ([#1142](https://github.com/cucumber/cucumber-ruby/pulls/1142) @enkessler)
|
270
|
+
* Add script to update history.md ([#1141](https://github.com/cucumber/cucumber-ruby/pulls/1141) @mattwynne)
|
271
|
+
* Update Ruby 2.3 and 2.4 in .travis.yml ([#1100](https://github.com/cucumber/cucumber-ruby/pull/1100) @junaruga)
|
272
|
+
* Fixes for rubocop violations ([#1095](https://github.com/cucumber/cucumber-ruby/pull/1095) @bv)
|
273
|
+
* Fixes for rubocop violations ([#1042](https://github.com/cucumber/cucumber-ruby/pull/1042) @phoebeclarke)
|
274
|
+
* Add frozen string literal magic comment to files and fix issues it causes ([#996](https://github.com/cucumber/cucumber-ruby/pull/996) @twalpole)
|
275
|
+
* Several tests failing with rbenv ([#1017](https://github.com/cucumber/cucumber-ruby/issues/1017) @nodo)
|
276
|
+
* Add rubocop to check the style of the codebase ([1014](https://github.com/cucumber/cucumber-ruby/issues/1014) @nodo)
|
277
|
+
* Fix the rubocop violation 'Lint/AmbiguousRegexpLiteral' ([1025](https://github.com/cucumber/cucumber-ruby/pull/1025) @pmatsinopoulos)
|
278
|
+
* Fix rubocop violations ([#1024](https://github.com/cucumber/cucumber-ruby/pull/1024) @madundead)
|
279
|
+
* Fix style violations ([#1023](https://github.com/cucumber/cucumber-ruby/pull/1023) @nodo)
|
280
|
+
* fix Lint/UselessAssignment ([1029](https://github.com/cucumber/cucumber-ruby/pull/1029) @hotovson)
|
281
|
+
* fix Lint/EndAlignment ([#1032](https://github.com/cucumber/cucumber-ruby/pull/1032) @hotovson)
|
282
|
+
* fix Lint/NonLocalExitFromIterator ([#1037](https://github.com/cucumber/cucumber-ruby/pull/1037) @hotovson)
|
283
|
+
* fix Lint/UselessAccessModifier ([#1036](https://github.com/cucumber/cucumber-ruby/pull/1036) @hotovson)
|
284
|
+
* Refs #1021 - Fixes the rubocop violation 'Style/StringLiterals' ([#1027](https://github.com/cucumber/cucumber-ruby/pull/1027) @pmatsinopoulos)
|
285
|
+
* Fixes rubocop violation Lint/StringConversionInInterpolation ([#1038](https://github.com/cucumber/cucumber-ruby/pull/1038) @hotovson)
|
286
|
+
* Fixes rubocop violation Style/FormatString ([#1040](https://github.com/cucumber/cucumber-ruby/pull/1040) @pmatsinopoulos)
|
287
|
+
* Don't check temporary files by rubocop ([#1034](https://github.com/cucumber/cucumber-ruby/pull/1034) @hotovson)
|
288
|
+
* fix Lint/NestedMethodDefinition ([#1035](https://github.com/cucumber/cucumber-ruby/pull/1035) @hotovson)
|
289
|
+
* fix Lint/UnusedArgument ([#1033](https://github.com/cucumber/cucumber-ruby/pull/1033) @hotovson)
|
290
|
+
* Fixes rubocop violation Performance/StringReplacement ([#1039](https://github.com/cucumber/cucumber-ruby/pull/1039) @pmatsinopoulos)
|
291
|
+
* Fix an json compile error for "bundle install" on Ruby 2.4 ([#1069](https://github.com/cucumber/cucumber-ruby/pull/1069) @junaruga)
|
292
|
+
* Add Ruby 2.4.0 as allow_failures in .travis.yml ([#1078](https://github.com/cucumber/cucumber-ruby/pull/1078) @junaruga)
|
293
|
+
* Add ruby-head as a allow failures in .travis.yml ([#1087](https://github.com/cucumber/cucumber-ruby/pull/1087) @junaruga)
|
294
|
+
* Refactoring for Rakefile to display cucumber task by "rake -T". ([#1088](https://github.com/cucumber/cucumber-ruby/pull/1088) @junaruga)
|
295
|
+
* Fix some rubocop offenses ([#1093](https://github.com/cucumber/cucumber-ruby/pull/1093) @bv)
|
296
|
+
* Add supported platforms to README.md. ([#1092](https://github.com/cucumber/cucumber-ruby/pull/1092) @junaruga)
|
297
|
+
* Remove Ruby 2.4 from allow_failures in .travis.yml. ([#1099](https://github.com/cucumber/cucumber-ruby/pull/1099) @junaruga)
|
298
|
+
* History: change bad character to space ([#1104](https://github.com/cucumber/cucumber-ruby/pull/1104) @olleolleolle)
|
299
|
+
* Travis: jruby-9.1.8.0 in CI ([#1105](https://github.com/cucumber/cucumber-ruby/pull/1105) @olleolleolle)
|
300
|
+
* Fix rubocop offenses 1021 003 ([#1107](https://github.com/cucumber/cucumber-ruby/pull/1107) @bv)
|
301
|
+
* Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
|
302
|
+
* Change the Progress, Usage and Stepdef formatter use events ([#977](https://github.com/cucumber/cucumber-ruby/pull/977), [#1129](https://github.com/cucumber/cucumber-ruby/pull/1129) @brasmusson)
|
303
|
+
|
304
|
+
## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0)
|
305
|
+
|
306
|
+
### New Features
|
307
|
+
|
308
|
+
* Update to Gherkin v4.0 (@brasmusson)
|
309
|
+
|
310
|
+
### Bugfixes
|
311
|
+
|
312
|
+
* Use HTTPS instead of Git as transport protocol ([#960](https://github.com/cucumber/cucumber-ruby/pull/960))
|
313
|
+
* Make random order stable and platform independent ([#974](https://github.com/cucumber/cucumber-ruby/pull/974), closes [#971](https://github.com/cucumber/cucumber-ruby/issues/971))
|
314
|
+
* Run scenarios in fully random order ([#970](https://github.com/cucumber/cucumber-ruby/pull/970) @threedaymonk)
|
315
|
+
* Adding Test Step in AfterStep hook. ([#931](https://github.com/cucumber/cucumber-ruby/pull/931) @t-morgan)
|
316
|
+
* Handle even more exotic rerun file formats seen in the wild ([#928](https://github.com/cucumber/cucumber-ruby/pull/928) @mcrmfc)
|
317
|
+
* Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
|
318
|
+
* Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
|
319
|
+
|
320
|
+
## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3)
|
321
|
+
|
322
|
+
Added a message pointing users to [The Great Cucumber and BDD Census of 2016](https://cucumber.typeform.com/to/kjrSc2?audience=cucumber-ruby) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
|
323
|
+
|
324
|
+
### Bugfixes
|
325
|
+
|
326
|
+
* Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
|
327
|
+
* Stringifying location in the JSON formatter for more consistent json parsing ([949](https://github.com/cucumber/cucumber-ruby/pull/949), [945](https://github.com/cucumber/cucumber-ruby/issues/945) @larryprice)
|
328
|
+
|
329
|
+
## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2)
|
330
|
+
|
331
|
+
Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
|
332
|
+
|
333
|
+
## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1)
|
334
|
+
|
335
|
+
Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
|
336
|
+
|
337
|
+
## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0)
|
338
|
+
|
339
|
+
### New Features
|
340
|
+
|
341
|
+
* Update to Gherkin v3.2.0 (@brasmusson)
|
342
|
+
|
343
|
+
### Bugfixes
|
344
|
+
|
345
|
+
### Refactoring
|
346
|
+
|
347
|
+
## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0)
|
348
|
+
|
349
|
+
Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
|
350
|
+
could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
|
351
|
+
|
352
|
+
### Bugfixes
|
353
|
+
|
354
|
+
* Let the formatters output the value of printed variables at time of the call to `#puts` ([#918](https://github.com/cucumber/cucumber-ruby/pull/918) [#915](https://github.com/cucumber/cucumber-ruby/issues/915) @enkessler @brasmusson)
|
355
|
+
* Fix Configuration.with_options merge direction ([#922](https://github.com/cucumber/cucumber-ruby/pull/922) @limhoff-r7)
|
356
|
+
* Consistent line breaks / truncation in backtraces ([#941](https://github.com/cucumber/cucumber-ruby/pull/941) @tooky)
|
357
|
+
* Fix extra arg passed to ensure_io ([#939](https://github.com/cucumber/cucumber-ruby/pull/939A @benshan)
|
358
|
+
|
359
|
+
### Refactoring
|
360
|
+
|
361
|
+
* Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
|
362
|
+
* Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
|
363
|
+
|
364
|
+
## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0)
|
365
|
+
|
366
|
+
### New Features
|
367
|
+
|
368
|
+
* Introduce EventBus ([903](https://github.com/cucumber/cucumber-ruby/pull/903) @mattwynne @tooky)
|
369
|
+
* Fail-fast CLI switch ([906](https://github.com/cucumber/cucumber-ruby/pull/906) @danascheider)
|
370
|
+
|
371
|
+
### Bugfixes
|
372
|
+
|
373
|
+
* When only an around hook is failing, let the Json Formatter include the around hook result ([909](https://github.com/cucumber/cucumber-ruby/issues/909) @brasmusson).
|
374
|
+
|
375
|
+
### Refactoring
|
376
|
+
|
377
|
+
* Coveralls badge switch to SVG ([897](https://github.com/cucumber/cucumber-ruby/pull/897) @nickmerwin)
|
378
|
+
* Moved simplecov_setup into lib folder ([896](https://github.com/cucumber/cucumber-ruby/pull/896) @tboerger)
|
379
|
+
* Pass DocString as String ([891](https://github.com/cucumber/cucumber-ruby/pull/891) @aslakhellesoy)
|
380
|
+
* Remove core_ext/proc.rb and use Proc#source_location instead ([888](https://github.com/cucumber/cucumber-ruby/pull/888) @brasmusson)
|
381
|
+
* Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
|
382
|
+
* Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
|
383
|
+
|
384
|
+
## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2)
|
385
|
+
|
386
|
+
### Bugfixes
|
387
|
+
|
388
|
+
* Revert interface change in Cucumber::Formatter::Console (which can break custom formatters in v2.0.1) ([893](https://github.com/cucumber/cucumber-ruby/issues/893) @brasmusson).
|
389
|
+
* Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
|
390
|
+
|
391
|
+
## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
|
392
|
+
|
393
|
+
### New Features
|
394
|
+
|
395
|
+
* Properly support symbol keys in table hashes ([840](https://github.com/cucumber/cucumber-ruby/issues/840) @dmorgan3405)
|
396
|
+
* Default require path to features unless specified explicitly. ([842](https://github.com/cucumber/cucumber-ruby/issues/842) @pdswan)
|
397
|
+
* Exit with different status codes when scenarios failed (1) vs when failed to run scenarios (2) ([#845](https://github.com/cucumber/cucumber-ruby/pull/845) @ciembor)
|
398
|
+
* Expose #status on Cucumber::RunningTestCase ([#836](https://github.com/cucumber/cucumber-ruby/pull/846) [#836](https://github.com/cucumber/cucumber-ruby/issues/836) @pdswan)
|
399
|
+
* New `--no-duration` flag on command-line ([#822](https://github.com/cucumber/cucumber-ruby/pull/822) @richarda)
|
400
|
+
* Make the Rerun Formatter consistent with the exit code ([860](https://github.com/cucumber/cucumber-ruby/pull/860) @brasmusson)
|
401
|
+
* Let the Json Formatter include results from all executed steps and hooks (and from Scenario Outlines also without the --expand option) ([851](https://github.com/cucumber/cucumber-ruby/pull/851) @brasmusson)
|
402
|
+
|
403
|
+
### Bugfixes
|
404
|
+
|
405
|
+
* Pass tags and comments to the legacy api formatters correctly, fixes [864](https://github.com/cucumber/cucumber-ruby/pull/864) (@brasmusson).
|
406
|
+
* Properly close HTML formatter pre tag for leading comment ([828](https://github.com/cucumber/cucumber-ruby/issues/828), [854](https://github.com/cucumber/cucumber-ruby/pull/854) @pdswan)
|
407
|
+
* Make the HTML formatter handle failures in hooks ([835](https://github.com/cucumber/cucumber-ruby/issues/835) @brasmusson)
|
408
|
+
* Fix the check for multiple formatters using stdout ([826](https://github.com/cucumber/cucumber-ruby/pull/826) @brasmusson)
|
409
|
+
* Make background.feature available to formatters (backward compatibility with v1.3.x) (@brasmusson)
|
410
|
+
* Cucumber::Ast::Table.diff! is broken when using no headers ([832](https://github.com/cucumber/cucumber-ruby/pull/832) @roschaefer)
|
411
|
+
* `cucumber --i18n <invalid_language>` breaks ([#869](https://github.com/cucumber/cucumber-ruby/issues/869) (@danascheider)
|
412
|
+
|
413
|
+
### Refactoring
|
414
|
+
|
415
|
+
* Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
|
416
|
+
* Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
|
417
|
+
|
418
|
+
## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
|
419
|
+
|
420
|
+
### New Features
|
421
|
+
|
422
|
+
* Support ruby 2.2 in master (@mattwynne, @tooky)
|
423
|
+
* Tell users to use the `--init` command ([818](https://github.com/cucumber/cucumber-ruby/pull/818) @olleolleolle)
|
424
|
+
|
425
|
+
### Bugfixes
|
426
|
+
|
427
|
+
* Ensure After Hooks execute in reverse order (@tooky)
|
428
|
+
* Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
|
429
|
+
|
430
|
+
## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
|
431
|
+
|
432
|
+
### New Features
|
433
|
+
|
434
|
+
* Add `--init` command ([699](https://github.com/cucumber/cucumber-ruby/pull/699) @LGordon2)
|
435
|
+
|
436
|
+
## Bugfixes
|
437
|
+
|
438
|
+
* Let the JUnitFormatter handle Scenario Outlines with the --expand option ([124](https://github.com/cucumber/cucumber-ruby/issues/124), [808](https://github.com/cucumber/cucumber-ruby/pull/808) @brasmusson, @richarda)
|
439
|
+
* Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber-ruby/pull/663) @rwz)
|
440
|
+
* Pass when using both the --dry-run and the --strict options, unless there are undefined steps ([810](https://github.com/cucumber/cucumber-ruby/issues/810) @brasmusson)
|
441
|
+
* Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber-ruby/issues/806) @brasmusson)
|
442
|
+
* Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber-ruby/issues/693) @mattwynne)
|
443
|
+
* Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber-ruby/pull/814) @brasmusson)
|
444
|
+
* JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
|
445
|
+
* Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
|
446
|
+
|
447
|
+
## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
|
2
448
|
|
3
449
|
### Features
|
4
450
|
|
5
|
-
|
451
|
+
* [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
|
6
452
|
|
7
453
|
### Bugfixes
|
8
454
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
455
|
+
* Fix missing `require Forwardable` (@tooky)
|
456
|
+
* Fix snippet suggestions ([765](https://github.com/cucumber/cucumber-ruby/pull/765) @richarda), also with i18n languages (@brasmusson)
|
457
|
+
* Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber-ruby/pull/796) @bolshakov)
|
458
|
+
* Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
|
459
|
+
* Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
|
14
460
|
|
15
|
-
## [
|
461
|
+
## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
|
16
462
|
|
17
463
|
### Bugfixes
|
18
464
|
|
19
|
-
|
465
|
+
* MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
|
20
466
|
|
21
|
-
## [
|
467
|
+
## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
|
22
468
|
|
23
469
|
### Bugfixes
|
24
470
|
|
25
|
-
|
471
|
+
* World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
|
26
472
|
|
27
|
-
## [
|
473
|
+
## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
|
28
474
|
|
29
475
|
### Removed Features
|
30
|
-
|
31
|
-
|
476
|
+
|
477
|
+
* Removed support for IronRuby (@tooky @mattwynne)
|
32
478
|
|
33
479
|
### New Features
|
34
480
|
|
35
|
-
|
36
|
-
|
37
|
-
|
481
|
+
* Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber-ruby/pull/697) @idstein, @brasmusson)
|
482
|
+
* Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber-ruby/pull/755) @snowe2010)
|
483
|
+
* Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber-ruby/pull/760) @tooky)
|
38
484
|
|
39
485
|
### Bugfixes
|
40
486
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
487
|
+
* Add old Scenario#skip_invoke! method back (@mattwynne)
|
488
|
+
* No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber-ruby/pull/548) @bilus)
|
489
|
+
* Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
|
490
|
+
* Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
|
45
491
|
|
46
|
-
## [
|
492
|
+
## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
|
47
493
|
|
48
|
-
|
494
|
+
* Depend on the correct version of core (@tooky)
|
49
495
|
|
50
|
-
## [
|
496
|
+
## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
|
51
497
|
### New Features
|
52
498
|
|
53
|
-
|
499
|
+
* Support both new and legacy formatter APIs simultaneously (@mattwynne and @tooky)
|
54
500
|
|
55
501
|
### Bugfixes
|
56
502
|
|
57
|
-
|
58
|
-
|
59
|
-
|
503
|
+
* Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber-ruby/pull/766) @brasmusson)
|
504
|
+
* Handle hook output appropriately in the HTML formatter ([746](https://github.com/cucumber/cucumber-ruby/pull/746), [731](https://github.com/cucumber/cucumber-ruby/issues/731), [298](https://github.com/cucumber/cucumber-ruby/pull/298) @brasmusson)
|
505
|
+
* Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber-ruby/pull/738) @brasmusson)
|
60
506
|
|
61
507
|
### Internal changes
|
62
508
|
|
63
|
-
|
509
|
+
* Re-write rerun formatter against new formatter API
|
64
510
|
|
65
|
-
## [
|
511
|
+
## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
|
66
512
|
|
67
513
|
### Removed Features
|
68
514
|
|
69
|
-
|
515
|
+
* The `--dotcucumber` option is no longer supported and `stepdefs.json` is no longer written. (Aslak Hellesøy)
|
70
516
|
|
71
517
|
### New Features
|
72
518
|
|
73
|
-
|
74
|
-
|
75
|
-
|
519
|
+
* Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber-ruby/pull/730) @brasmusson)
|
520
|
+
* Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber-ruby/pull/728) [Erran Carey](https://github.com/erran))
|
521
|
+
* Support embedding images directly in HTML and JSON reports ([696](https://github.com/cucumber/cucumber-ruby/pull/696),[695](https://github.com/cucumber/cucumber-ruby/pull/695/files) @brasmusson)
|
76
522
|
|
77
523
|
### Bugfixes
|
78
524
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
525
|
+
* Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber-ruby/pull/732) @brasmusson)
|
526
|
+
* Added tests for, and re-added behaviour to support Scenario#failed? in hooks (Matt Wynne)
|
527
|
+
* Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber-ruby/pull/690) @awls99)
|
528
|
+
* Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
|
529
|
+
* Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
|
84
530
|
|
85
|
-
## [
|
531
|
+
## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
|
86
532
|
|
87
533
|
### Bugfixes
|
88
534
|
|
89
|
-
|
90
|
-
|
535
|
+
* Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
|
536
|
+
* Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
|
91
537
|
|
92
|
-
## [
|
538
|
+
## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
|
93
539
|
|
94
540
|
Version 2.0 contains a major internal redesign, extracting the core logic of
|
95
|
-
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-core).
|
541
|
+
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
|
96
542
|
|
97
543
|
Although we've tried to keep the API and behaviour consistent through this change,
|
98
544
|
there are bound to be differences our tests haven't picked up. We're still working through
|
@@ -101,10 +547,10 @@ all.
|
|
101
547
|
|
102
548
|
### New features
|
103
549
|
|
104
|
-
* Better snippet comment ([579](https://github.com/cucumber/cucumber/pull/579) Jeff Nyman)
|
550
|
+
* Better snippet comment ([579](https://github.com/cucumber/cucumber-ruby/pull/579) Jeff Nyman)
|
105
551
|
* Random scenario ordering with `--order random`
|
106
|
-
* Embed plain text ([712](https://github.com/cucumber/cucumber/pull/712) @bingwei)
|
107
|
-
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber/pull/700) @brasmusson)
|
552
|
+
* Embed plain text ([712](https://github.com/cucumber/cucumber-ruby/pull/712) @bingwei)
|
553
|
+
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber-ruby/pull/700) @brasmusson)
|
108
554
|
|
109
555
|
### Features removed
|
110
556
|
|
@@ -122,229 +568,229 @@ all.
|
|
122
568
|
|
123
569
|
### Minor changes
|
124
570
|
|
125
|
-
* Greek examples added ([497](https://github.com/cucumber/cucumber/issues/497) @rousisk)
|
571
|
+
* Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
|
126
572
|
|
127
|
-
## [
|
573
|
+
## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
|
128
574
|
|
129
|
-
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber/pull/701) @brasmusson)
|
130
|
-
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber/pull/689) @cyphactor)
|
131
|
-
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber/pull/710) @brasmusson)
|
575
|
+
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
|
576
|
+
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
|
577
|
+
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
|
132
578
|
|
133
|
-
## [
|
579
|
+
## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
|
134
580
|
|
135
581
|
* Fixed intermittent ConcurrencyError seen in JRuby
|
136
|
-
([671](https://github.com/cucumber/cucumber/issues/670) @cbusbey)
|
582
|
+
([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
|
137
583
|
|
138
|
-
## [
|
584
|
+
## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
|
139
585
|
|
140
586
|
* Rerun formatter includes all scenarios when the background fails
|
141
|
-
([660](https://github.com/cucumber/cucumber/issues/660),
|
142
|
-
[661](https://github.com/cucumber/cucumber/pull/661) @brasmusson)
|
587
|
+
([660](https://github.com/cucumber/cucumber-ruby/issues/660),
|
588
|
+
[661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
|
143
589
|
|
144
|
-
## [
|
590
|
+
## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
|
145
591
|
|
146
592
|
* Rerun formatter includes all scenarios when the background fails
|
147
|
-
([654](https://github.com/cucumber/cucumber/pull/654) @brasmusson)
|
593
|
+
([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
|
148
594
|
|
149
|
-
## [
|
595
|
+
## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
|
150
596
|
|
151
597
|
* Use MultiTest to handle assertions library selection (@tooky)
|
152
|
-
|
598
|
+
* Adds full support for rails 4.1 / Minitest
|
153
599
|
|
154
|
-
## [
|
600
|
+
## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
|
155
601
|
|
156
|
-
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber/pull/644) @tooky, @chrismdp)
|
602
|
+
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
|
157
603
|
|
158
|
-
## [
|
604
|
+
## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
|
159
605
|
|
160
|
-
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber/pull/599) @jmcaffee)
|
606
|
+
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
|
161
607
|
|
162
|
-
## [
|
608
|
+
## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
|
163
609
|
|
164
610
|
* Disable minitest autorun after loading support files (@tooky)
|
165
611
|
* Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
|
166
612
|
* Remove deprecation warnings on `Ast::Table` (@tooky)
|
167
|
-
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber/pull/587) @jshraibman-mdsol)
|
613
|
+
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
|
168
614
|
|
169
|
-
## [
|
615
|
+
## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
|
170
616
|
|
171
617
|
* Make the MultiJson dependency less restrictive (@tooky)
|
172
618
|
|
173
|
-
## [1.3.7](https://github.com/cucumber/cucumber/compare/v1.3.6...v1.3.7)
|
619
|
+
## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
|
174
620
|
|
175
621
|
* Fixed incorrect html formatter behaviour when background step fails
|
176
|
-
([520](https://github.com/cucumber/cucumber/issues/520),
|
177
|
-
[521](https://github.com/cucumber/cucumber/issues/521) @mlex)
|
622
|
+
([520](https://github.com/cucumber/cucumber-ruby/issues/520),
|
623
|
+
[521](https://github.com/cucumber/cucumber-ruby/issues/521) @mlex)
|
178
624
|
|
179
625
|
* Fixed problem with printing badly formatted backtrace for failed background
|
180
|
-
([522](https://github.com/cucumber/cucumber/issues/522),
|
181
|
-
[523](https://github.com/cucumber/cucumber/issues/523) @mlex)
|
626
|
+
([522](https://github.com/cucumber/cucumber-ruby/issues/522),
|
627
|
+
[523](https://github.com/cucumber/cucumber-ruby/issues/523) @mlex)
|
182
628
|
|
183
629
|
* required Gherkin version bumped to 2.12.1
|
184
630
|
|
185
631
|
* All mutating methods of AST::Table deprecated
|
186
|
-
([505](https://github.com/cucumber/cucumber/issues/505),
|
187
|
-
[525](https://github.com/cucumber/cucumber/issues/525) @adbatista)
|
632
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/505),
|
633
|
+
[525](https://github.com/cucumber/cucumber-ruby/issues/525) @adbatista)
|
188
634
|
|
189
635
|
* AST::Table#map_headers doesn't use #map_headers! anymore
|
190
|
-
([505](https://github.com/cucumber/cucumber/issues/528) @adbatista)
|
636
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
|
191
637
|
|
192
|
-
## [1.3.6](https://github.com/cucumber/cucumber/compare/v1.3.5...v1.3.6)
|
638
|
+
## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
|
193
639
|
|
194
640
|
* Html formatter fixed to not mark passes scenarios with tables as pending
|
195
|
-
([493](https://github.com/cucumber/cucumber/issues/493) Oleg Sukhodolsky)
|
641
|
+
([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
|
196
642
|
|
197
|
-
## [1.3.5](https://github.com/cucumber/cucumber/compare/v1.3.4...v1.3.5)
|
643
|
+
## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
|
198
644
|
|
199
|
-
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber/issues/501) @mattwynne)
|
645
|
+
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
|
200
646
|
|
201
|
-
## [1.3.4](https://github.com/cucumber/cucumber/compare/v1.3.3...v1.3.4)
|
647
|
+
## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
|
202
648
|
|
203
|
-
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber/issues/496) @ambirag)
|
649
|
+
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
|
204
650
|
|
205
|
-
## [1.3.3](https://github.com/cucumber/cucumber/compare/v1.3.2...v1.3.3)
|
651
|
+
## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
|
206
652
|
|
207
|
-
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber/issues/456) Matt Wynne)
|
653
|
+
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
|
208
654
|
* Warn that Spork support is broken (Steve Tooke)
|
209
655
|
* Fix error with Ruby 2.0.0 and `Cucumber::RUBY_1_8_7`
|
210
|
-
([#492](https://github.com/cucumber/cucumber/issues/492) Matt Wynne)
|
211
|
-
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber/issues/448) Matt Wynne)
|
656
|
+
([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
|
657
|
+
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
|
212
658
|
|
213
|
-
## [1.3.2](https://github.com/cucumber/cucumber/compare/v1.3.1...v1.3.2)
|
659
|
+
## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
|
214
660
|
|
215
661
|
### Bugfixes
|
216
662
|
* Fixed ugly NoMethodError when a Scenario Outline has no Examples
|
217
|
-
([#438](https://github.com/cucumber/cucumber/issues/438) Steve Tooke)
|
663
|
+
([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
|
218
664
|
|
219
|
-
## [1.3.1](https://github.com/cucumber/cucumber/compare/v1.3.0...v1.3.1)
|
665
|
+
## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
|
220
666
|
|
221
667
|
### Bugfixes
|
222
668
|
* Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
|
223
669
|
|
224
|
-
## [1.3.0](https://github.com/cucumber/cucumber/compare/v1.2.5...v1.3.0)
|
670
|
+
## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
|
225
671
|
|
226
672
|
### New Features
|
227
673
|
* Faster features, thanks to in-process Aruba. (Aslak Hellesøy)
|
228
674
|
* Add lib to default load path
|
229
|
-
([#162](https://github.com/cucumber/cucumber/issues/162) Steve Tooke)
|
675
|
+
([#162](https://github.com/cucumber/cucumber-ruby/issues/162) Steve Tooke)
|
230
676
|
* Add snippet type to support different type of ruby snippets.
|
231
|
-
([#390](https://github.com/cucumber/cucumber/pull/390) Roel van Dijk)
|
232
|
-
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber/pull/433) Tomohiko Himura)
|
677
|
+
([#390](https://github.com/cucumber/cucumber-ruby/pull/390) Roel van Dijk)
|
678
|
+
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber-ruby/pull/433) Tomohiko Himura)
|
233
679
|
|
234
680
|
### Bugfixes
|
235
|
-
* Update watir example ([#427](https://github.com/cucumber/cucumber/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
236
|
-
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber/issues/416)) Steve Tooke
|
237
|
-
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber/issues/400) Andrey Vakarev
|
681
|
+
* Update watir example ([#427](https://github.com/cucumber/cucumber-ruby/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
682
|
+
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber-ruby/issues/416)) Steve Tooke
|
683
|
+
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber-ruby/issues/400) Andrey Vakarev
|
238
684
|
* Show details of nested steps in backtraces
|
239
|
-
([#69](https://github.com/cucumber/cucumber/issues/69)) Steve Tooke
|
685
|
+
([#69](https://github.com/cucumber/cucumber-ruby/issues/69)) Steve Tooke
|
240
686
|
* Filter out control characters from CDATA section of JUnit formatter output.
|
241
|
-
([#383](https://github.com/cucumber/cucumber/issues/383) @teacup-on-rockingchair)
|
687
|
+
([#383](https://github.com/cucumber/cucumber-ruby/issues/383) @teacup-on-rockingchair)
|
242
688
|
* Fix problem with non-ascii characters in file path
|
243
|
-
([#150](https://github.com/cucumber/cucumber/issues/150) Oleg Sukhodolsky)
|
689
|
+
([#150](https://github.com/cucumber/cucumber-ruby/issues/150) Oleg Sukhodolsky)
|
244
690
|
* Fix problem loading ruby files in project root directory
|
245
|
-
([#269](https://github.com/cucumber/cucumber/issues/269) Steve Tooke)
|
691
|
+
([#269](https://github.com/cucumber/cucumber-ruby/issues/269) Steve Tooke)
|
246
692
|
* Fix JsonPretty formatter problem
|
247
|
-
([#197](https://github.com/cucumber/cucumber/issues/197) Oleg Sukhodolsky)
|
693
|
+
([#197](https://github.com/cucumber/cucumber-ruby/issues/197) Oleg Sukhodolsky)
|
248
694
|
* Don't display multi-line strings when --no-multiline is passed
|
249
|
-
([#201](https://github.com/cucumber/cucumber/issues/201) David Kowis)
|
695
|
+
([#201](https://github.com/cucumber/cucumber-ruby/issues/201) David Kowis)
|
250
696
|
* Moved the profile information output to a callback of the formatter
|
251
|
-
([#175](https://github.com/cucumber/cucumber/issues/175) David Kowis)
|
697
|
+
([#175](https://github.com/cucumber/cucumber-ruby/issues/175) David Kowis)
|
252
698
|
* Fix html formatter to not mark skipped/unimplemented steps as failed
|
253
|
-
([#337](https://github.com/cucumber/cucumber/issues/337) Oleg Sukhodolsky)
|
699
|
+
([#337](https://github.com/cucumber/cucumber-ruby/issues/337) Oleg Sukhodolsky)
|
254
700
|
* Allow duplication for format+output pair in command line
|
255
|
-
([#434](https://github.com/cucumber/cucumber/issues/434) David Lantos)
|
701
|
+
([#434](https://github.com/cucumber/cucumber-ruby/issues/434) David Lantos)
|
256
702
|
* Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
|
257
|
-
([#312](https://github.com/cucumber/cucumber/issues/312) Oleg Sukhodolsky)
|
703
|
+
([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
|
258
704
|
|
259
|
-
## [1.2.5](https://github.com/cucumber/cucumber/compare/v1.2.3...v1.2.5)
|
705
|
+
## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
|
260
706
|
|
261
|
-
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber/issues/393) Oleg Sukhodolsky)
|
262
|
-
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber/issues/420) Oleg Sukhodolsky)
|
707
|
+
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
|
708
|
+
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
|
263
709
|
|
264
|
-
##
|
710
|
+
## 1.2.4
|
265
711
|
|
266
|
-
Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
712
|
+
Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
267
713
|
|
268
|
-
## [1.2.3](https://github.com/cucumber/cucumber/compare/v1.2.2...v1.2.3)
|
714
|
+
## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
|
269
715
|
|
270
716
|
### Bugfixes
|
271
|
-
* Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber/issues/386), [#388](https://github.com/cucumber/cucumber/issues/388) @y-higuchi)
|
272
|
-
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber/issues/315) Oleg Sukhodolsky)
|
717
|
+
* Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber-ruby/issues/386), [#388](https://github.com/cucumber/cucumber-ruby/issues/388) @y-higuchi)
|
718
|
+
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
|
273
719
|
|
274
|
-
## [1.2.2](https://github.com/cucumber/cucumber/compare/v1.2.1...v1.2.2)
|
720
|
+
## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
|
275
721
|
|
276
722
|
### New Features
|
277
|
-
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber/issues/357) @charliesome)
|
278
|
-
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber/issues/329) Rick Beyer)
|
723
|
+
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber-ruby/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber-ruby/issues/357) @charliesome)
|
724
|
+
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber-ruby/issues/329) Rick Beyer)
|
279
725
|
* Added support for Hindi (hi), although some systems may need to install fonts which support the Devanagari script.
|
280
|
-
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber/issues/324) Eric Hodel)
|
726
|
+
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber-ruby/issues/324) Eric Hodel)
|
281
727
|
|
282
728
|
### Bugfixes
|
283
|
-
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber/issues/345), [#346](https://github.com/cucumber/cucumber/issues/346) @ksylvest)
|
284
|
-
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber/issues/299) @aaronjensen)
|
285
|
-
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber/issues/275) @chrisbloom7 / Matt Wynne)
|
286
|
-
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber/issues/284) Oleg Sukhodolsky)
|
287
|
-
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber/issues/348) @rdammkoehler)
|
288
|
-
* Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber/issues/248) / [#255](https://github.com/cucumber/cucumber/issues/255) Igor Afonov)
|
289
|
-
* More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber/issues/328) / [#331](https://github.com/cucumber/cucumber/issues/331) @martco)
|
290
|
-
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber/issues/336) Roberto Decurnex)
|
291
|
-
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber/issues/220))
|
729
|
+
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber-ruby/issues/345), [#346](https://github.com/cucumber/cucumber-ruby/issues/346) @ksylvest)
|
730
|
+
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber-ruby/issues/299) @aaronjensen)
|
731
|
+
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber-ruby/issues/275) @chrisbloom7 / Matt Wynne)
|
732
|
+
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber-ruby/issues/284) Oleg Sukhodolsky)
|
733
|
+
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber-ruby/issues/348) @rdammkoehler)
|
734
|
+
* Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber-ruby/issues/248) / [#255](https://github.com/cucumber/cucumber-ruby/issues/255) Igor Afonov)
|
735
|
+
* More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber-ruby/issues/328) / [#331](https://github.com/cucumber/cucumber-ruby/issues/331) @martco)
|
736
|
+
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
|
737
|
+
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
|
292
738
|
|
293
|
-
## [1.2.1](https://github.com/cucumber/cucumber/compare/v1.2.0...v1.2.1)
|
739
|
+
## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
|
294
740
|
|
295
741
|
### New Features
|
296
742
|
* Updated to gherkin 2.11.0. (Aslak Hellesøy)
|
297
743
|
|
298
|
-
## [1.2.0](https://github.com/cucumber/cucumber/compare/v1.1.9...v1.2.0)
|
744
|
+
## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
|
299
745
|
|
300
746
|
### Bugfixes
|
301
|
-
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber/issues/266) Andrew Kiellor)
|
747
|
+
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber-ruby/issues/266) Andrew Kiellor)
|
302
748
|
|
303
749
|
### New Features
|
304
|
-
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber/issues/241) Matt Wynne)
|
305
|
-
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber/issues/43) Joe Fiorini)
|
306
|
-
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber/issues/168) Giles Alexander)
|
307
|
-
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber/issues/181) Roman Chernyatchik)
|
308
|
-
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber/issues/182) Niklas H)
|
309
|
-
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber/issues/237) meyering)
|
310
|
-
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber/issues/252) Chase Stubblefield)
|
311
|
-
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber/issues/212) Steve Richert)
|
312
|
-
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber/issues/193) @litvinok)
|
313
|
-
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber/issues/259) R. Tyler Croy)
|
750
|
+
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber-ruby/issues/241) Matt Wynne)
|
751
|
+
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber-ruby/issues/43) Joe Fiorini)
|
752
|
+
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber-ruby/issues/168) Giles Alexander)
|
753
|
+
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber-ruby/issues/181) Roman Chernyatchik)
|
754
|
+
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber-ruby/issues/182) Niklas H)
|
755
|
+
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber-ruby/issues/237) meyering)
|
756
|
+
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber-ruby/issues/252) Chase Stubblefield)
|
757
|
+
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber-ruby/issues/212) Steve Richert)
|
758
|
+
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
|
759
|
+
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
|
314
760
|
|
315
|
-
## [1.1.9](https://github.com/cucumber/cucumber/compare/v1.1.8...v1.1.9)
|
761
|
+
## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
|
316
762
|
|
317
763
|
### Bugfixes
|
318
764
|
* Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
|
319
765
|
|
320
|
-
## [1.1.8](https://github.com/cucumber/cucumber/compare/v1.1.7...v1.1.8)
|
766
|
+
## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
|
321
767
|
|
322
768
|
### Bugfixes
|
323
|
-
* Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber/issues/202), [#208](https://github.com/cucumber/cucumber/pull/208) Brian Dunn)
|
769
|
+
* Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber-ruby/issues/202), [#208](https://github.com/cucumber/cucumber-ruby/pull/208) Brian Dunn)
|
324
770
|
|
325
771
|
### New Features
|
326
|
-
* Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber/issues/219), [#221](https://github.com/cucumber/cucumber/pull/221) Ben Woosley)
|
772
|
+
* Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber-ruby/issues/219), [#221](https://github.com/cucumber/cucumber-ruby/pull/221) Ben Woosley)
|
327
773
|
|
328
|
-
## [1.1.7](https://github.com/cucumber/cucumber/compare/v1.1.6...v1.1.7)
|
774
|
+
## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
|
329
775
|
|
330
776
|
### Bugfixes
|
331
777
|
|
332
|
-
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber/pull/229) Cezary Baginski)
|
778
|
+
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
|
333
779
|
|
334
|
-
## [1.1.6](https://github.com/cucumber/cucumber/compare/v1.1.5...v1.1.6)
|
780
|
+
## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
|
335
781
|
|
336
782
|
### New features
|
337
783
|
|
338
|
-
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber/pull/214) MOROHASHI Kyosuke)
|
784
|
+
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber-ruby/pull/214) MOROHASHI Kyosuke)
|
339
785
|
|
340
786
|
### Bugfixes
|
341
787
|
|
342
788
|
* Release 1.1.5 unintentionally broke backwards compatibility in some APIs we hadn't considered were used outside of cucumber.
|
343
789
|
Well, it was, in the popular Capybara browser automation tool, so we added back the API we removed. See the history for details. (Aslak Hellesøy)
|
344
790
|
* After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
|
345
|
-
I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber/pull/203) Jon Merrifield)
|
791
|
+
I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber-ruby/pull/203) Jon Merrifield)
|
346
792
|
|
347
|
-
## [1.1.5](https://github.com/cucumber/cucumber/compare/v1.1.4...v1.1.5)
|
793
|
+
## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
|
348
794
|
|
349
795
|
### New Features
|
350
796
|
|
@@ -352,29 +798,29 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
352
798
|
|
353
799
|
### Bugfixes
|
354
800
|
|
355
|
-
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber/issues/205) tcwitte)
|
801
|
+
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
|
356
802
|
|
357
|
-
## [1.1.4](https://github.com/cucumber/cucumber/compare/v1.1.3...v1.1.4)
|
803
|
+
## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
|
358
804
|
|
359
805
|
### New Features
|
360
806
|
|
361
807
|
* Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
|
362
808
|
|
363
|
-
## [1.1.3](https://github.com/cucumber/cucumber/compare/v1.1.2...v1.1.3)
|
809
|
+
## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
|
364
810
|
|
365
811
|
### New Features
|
366
812
|
|
367
813
|
* Generate stepdef metadata with --dotcucumber. Useful for Cukepatch. (Aslak Hellesøy)
|
368
|
-
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber/pull/159) Jari Bakken)
|
369
|
-
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber/pull/163) Richard Lawrence)
|
814
|
+
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber-ruby/pull/159) Jari Bakken)
|
815
|
+
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber-ruby/pull/163) Richard Lawrence)
|
370
816
|
|
371
817
|
### Bugfixes
|
372
818
|
|
373
|
-
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber/pull/178) leachdaniel)
|
374
|
-
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber/pull/172) Charles Finkel)
|
375
|
-
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber/issues/57) Jan Brauer)
|
819
|
+
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber-ruby/pull/178) leachdaniel)
|
820
|
+
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
|
821
|
+
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
|
376
822
|
|
377
|
-
## [1.1.2](https://github.com/cucumber/cucumber/compare/v1.1.1...v1.1.2)
|
823
|
+
## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
|
378
824
|
|
379
825
|
### Changed features
|
380
826
|
|
@@ -382,7 +828,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
382
828
|
|
383
829
|
### Changed features
|
384
830
|
|
385
|
-
* Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber/issues/68) Matt Wynne)
|
831
|
+
* Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber-ruby/issues/68) Matt Wynne)
|
386
832
|
* The JSON formatter output has changed slightly. Old format:
|
387
833
|
|
388
834
|
{
|
@@ -395,44 +841,44 @@ New format:
|
|
395
841
|
|
396
842
|
Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) for info about new `id` and `uri` elements in the JSON.
|
397
843
|
|
398
|
-
## [1.1.0](https://github.com/cucumber/cucumber/compare/v1.0.6...v1.1.0)
|
844
|
+
## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
|
399
845
|
|
400
846
|
### Changed features
|
401
847
|
* The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) (Aslak Hellesøy)
|
402
848
|
|
403
|
-
## [1.0.6](https://github.com/cucumber/cucumber/compare/v1.0.5...v1.0.6)
|
849
|
+
## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
|
404
850
|
|
405
851
|
### Bugfixes
|
406
|
-
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
852
|
+
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
407
853
|
|
408
|
-
## [1.0.5](https://github.com/cucumber/cucumber/compare/v1.0.4...v1.0.5)
|
854
|
+
## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
|
409
855
|
|
410
856
|
### Bugfixes
|
411
857
|
|
412
|
-
* Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
858
|
+
* Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
413
859
|
|
414
|
-
## [1.0.4](https://github.com/cucumber/cucumber/compare/v1.0.3...v1.0.4)
|
860
|
+
## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
|
415
861
|
|
416
862
|
### Bugfixes
|
417
863
|
|
418
|
-
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber/pull/93) Christopher Meiklejohn)
|
419
|
-
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber/issues/117) Roman Chernyatchik)
|
420
|
-
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber/pull/106) Thomas Walpole)
|
864
|
+
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber-ruby/pull/93) Christopher Meiklejohn)
|
865
|
+
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber-ruby/issues/117) Roman Chernyatchik)
|
866
|
+
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber-ruby/pull/106) Thomas Walpole)
|
421
867
|
* Patched unmatched message in HTML formatter. (Nikita)
|
422
868
|
* Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
|
423
869
|
|
424
|
-
## [1.0.3](https://github.com/cucumber/cucumber/compare/v1.0.2...v1.0.3)
|
870
|
+
## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
|
425
871
|
|
426
872
|
### Bugfixes
|
427
|
-
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber/pull/126) Jonathan Tron)
|
873
|
+
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber-ruby/pull/126) Jonathan Tron)
|
428
874
|
|
429
875
|
### New Features
|
430
|
-
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber/issues/132) Matt Wynne)
|
876
|
+
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
|
431
877
|
|
432
|
-
## [1.0.2](https://github.com/cucumber/cucumber/compare/v1.0.1...v1.0.2)
|
878
|
+
## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
|
433
879
|
|
434
880
|
### Bugfixes
|
435
|
-
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber/issues/104) Aslak Hellesøy)
|
881
|
+
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber-ruby/issues/104) Aslak Hellesøy)
|
436
882
|
|
437
883
|
### New Features
|
438
884
|
* Better line truncation if $CUCUMBER_TRUNCATE_OUTPUT has a max line length value. (Aslak Hellesøy)
|
@@ -440,19 +886,19 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
440
886
|
### Changes Features
|
441
887
|
* --no-source also excludes location from the summary. (Aslak Hellesøy)
|
442
888
|
|
443
|
-
## [1.0.1](https://github.com/cucumber/cucumber/compare/v1.0.0...v1.0.1)
|
889
|
+
## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
|
444
890
|
|
445
891
|
### Bugfixes
|
446
|
-
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber/pull/99) Juan Manuel Barreneche)
|
447
|
-
* cucumber 1.0.0 wrong number of arguments error when generating json format on jruby for windows ([#97](https://github.com/cucumber/cucumber/issues/97) (Aslak Hellesøy)
|
448
|
-
* Recent change to junit.rb breaks on Windows ([#81](https://github.com/cucumber/cucumber/issues/81), [#86](https://github.com/cucumber/cucumber/pull/86) Johnlon, Aslak Hellesøy)
|
449
|
-
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber/pull/95) Nikita)
|
450
|
-
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber/issues/58) Aslak Hellesøy)
|
892
|
+
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber-ruby/pull/99) Juan Manuel Barreneche)
|
893
|
+
* cucumber 1.0.0 wrong number of arguments error when generating json format on jruby for windows ([#97](https://github.com/cucumber/cucumber-ruby/issues/97) (Aslak Hellesøy)
|
894
|
+
* Recent change to junit.rb breaks on Windows ([#81](https://github.com/cucumber/cucumber-ruby/issues/81), [#86](https://github.com/cucumber/cucumber-ruby/pull/86) Johnlon, Aslak Hellesøy)
|
895
|
+
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber-ruby/pull/95) Nikita)
|
896
|
+
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber-ruby/issues/58) Aslak Hellesøy)
|
451
897
|
|
452
898
|
### New Features
|
453
899
|
* If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
|
454
900
|
|
455
|
-
## [1.0.0](https://github.com/cucumber/cucumber/compare/v0.10.6...v1.0.0)
|
901
|
+
## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
|
456
902
|
|
457
903
|
Yipeeeeeeeee!
|
458
904
|
|
@@ -461,7 +907,7 @@ Yipeeeeeeeee!
|
|
461
907
|
* Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
|
462
908
|
* Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
|
463
909
|
|
464
|
-
## [0.10.6](https://github.com/cucumber/cucumber/compare/v0.10.5...v0.10.6)
|
910
|
+
## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
|
465
911
|
|
466
912
|
### New Features
|
467
913
|
* API docs at http://cukes.info/cucumber/api/ruby/latest/
|
@@ -469,7 +915,7 @@ Yipeeeeeeeee!
|
|
469
915
|
### Bugfixes
|
470
916
|
* Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
|
471
917
|
|
472
|
-
## [0.10.5](https://github.com/cucumber/cucumber/compare/v0.10.3...v0.10.5)
|
918
|
+
## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
|
473
919
|
|
474
920
|
(0.10.4 was forgotten!)
|
475
921
|
|
@@ -484,7 +930,7 @@ Yipeeeeeeeee!
|
|
484
930
|
* Fix for Gem.available? deprecation warning (#75 Jake Benilov)
|
485
931
|
* Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
|
486
932
|
|
487
|
-
## [0.10.3](https://github.com/cucumber/cucumber/compare/v0.10.2...v0.10.3)
|
933
|
+
## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
|
488
934
|
|
489
935
|
### New Features
|
490
936
|
* Better JUnit formatter support for sub directories and scenario outlines (#59 Matt Simpson)
|
@@ -493,12 +939,12 @@ Yipeeeeeeeee!
|
|
493
939
|
* Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
|
494
940
|
* JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
|
495
941
|
|
496
|
-
## [0.10.2](https://github.com/cucumber/cucumber/compare/v0.10.1...v0.10.2)
|
942
|
+
## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
|
497
943
|
|
498
944
|
### Bugfixes
|
499
945
|
* Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
|
500
946
|
|
501
|
-
## [0.10.1](https://github.com/cucumber/cucumber/compare/v0.10.0...v0.10.1)
|
947
|
+
## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
|
502
948
|
|
503
949
|
### New Features
|
504
950
|
* The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon)
|
@@ -518,7 +964,7 @@ Yipeeeeeeeee!
|
|
518
964
|
* Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
|
519
965
|
* Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
|
520
966
|
|
521
|
-
## [0.10.0](https://github.com/cucumber/cucumber/compare/v0.9.4...v0.10.0)
|
967
|
+
## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
|
522
968
|
|
523
969
|
We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
|
524
970
|
This should not affect users. The major new feature in this release is ANSICON support for Windows users.
|
@@ -534,7 +980,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
534
980
|
### Changed Features
|
535
981
|
* JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
536
982
|
|
537
|
-
## [0.9.4](https://github.com/cucumber/cucumber/compare/v0.9.3...v0.9.4)
|
983
|
+
## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
|
538
984
|
|
539
985
|
### Bugfixes
|
540
986
|
* Superfluous space after step_keyword value in snippet_text message (#679 Aslak Hellesøy)
|
@@ -543,7 +989,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
543
989
|
* Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
|
544
990
|
* Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
|
545
991
|
|
546
|
-
## [0.9.3](https://github.com/cucumber/cucumber/compare/v0.9.2...v0.9.3)
|
992
|
+
## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
|
547
993
|
|
548
994
|
### Bugfixes
|
549
995
|
* Better JSON representation of Regexps (Aslak Hellesøy)
|
@@ -551,17 +997,17 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
551
997
|
* Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
|
552
998
|
* Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
|
553
999
|
|
554
|
-
## [0.9.2](https://github.com/cucumber/cucumber/compare/v0.9.1...v0.9.2)
|
1000
|
+
## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
|
555
1001
|
|
556
1002
|
### Bugfixes
|
557
1003
|
* Too many open files - getcwd (#666 Aslak Hellesøy)
|
558
1004
|
|
559
|
-
## [0.9.1](https://github.com/cucumber/cucumber/compare/v0.9.0...v0.9.1)
|
1005
|
+
## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
|
560
1006
|
|
561
1007
|
### Bugfixes
|
562
1008
|
* Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
|
563
1009
|
|
564
|
-
## [0.9.0](https://github.com/cucumber/cucumber/compare/v0.8.5...v0.9.0)
|
1010
|
+
## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
|
565
1011
|
|
566
1012
|
Maintenance release for the new release of Gherkin 2.2.3.
|
567
1013
|
|
@@ -579,13 +1025,13 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
579
1025
|
### Internal changes
|
580
1026
|
* Big refactoring of StepMother (Matt Wynne)
|
581
1027
|
|
582
|
-
## [0.8.5](https://github.com/cucumber/cucumber/compare/v0.8.4...v0.8.5)
|
1028
|
+
## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
|
583
1029
|
|
584
1030
|
### Bugfixes
|
585
1031
|
* Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
|
586
1032
|
* Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
|
587
1033
|
|
588
|
-
## [0.8.4](https://github.com/cucumber/cucumber/compare/v0.8.3...v0.8.4)
|
1034
|
+
## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
|
589
1035
|
|
590
1036
|
### Bugfixes
|
591
1037
|
* Fix "Errno::EADDRNOTAVAIL" errors that may be received with spork on Snow Leopard. (Lucas Mundim)
|
@@ -594,14 +1040,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
594
1040
|
* Detect limit for negative tags (#636 Aslak Hellesøy)
|
595
1041
|
* Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
|
596
1042
|
|
597
|
-
## [0.8.3](https://github.com/cucumber/cucumber/compare/v0.8.2...v0.8.3)
|
1043
|
+
## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
|
598
1044
|
|
599
1045
|
Just a quick bugfix release.
|
600
1046
|
|
601
1047
|
### Bugfixes
|
602
1048
|
* Scenario outlines that fail with exception exit process (Aslak Hellesøy)
|
603
1049
|
|
604
|
-
## [0.8.2](https://github.com/cucumber/cucumber/compare/v0.8.1...v0.8.2)
|
1050
|
+
## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
|
605
1051
|
|
606
1052
|
Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
607
1053
|
|
@@ -614,7 +1060,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
614
1060
|
### New Features
|
615
1061
|
* JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
|
616
1062
|
|
617
|
-
## [0.8.1](https://github.com/cucumber/cucumber/compare/v0.8.0...v0.8.1)
|
1063
|
+
## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
|
618
1064
|
|
619
1065
|
### Bufixes
|
620
1066
|
* generate test report fails: ast/outline_table.rb fails in status() (#615 Aslak Hellesøy)
|
@@ -622,7 +1068,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
622
1068
|
### New Features
|
623
1069
|
* Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
|
624
1070
|
|
625
|
-
## [0.8.0](https://github.com/cucumber/cucumber/compare/v0.7.3...v0.8.0)
|
1071
|
+
## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
|
626
1072
|
|
627
1073
|
### Bugfixes
|
628
1074
|
* Require profile option causes a NoMethodError for Cucumber with JRuby (#601 John Firebaugh)
|
@@ -634,25 +1080,25 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
634
1080
|
* JSON formatters (json and json_pretty). (Jari Bakken)
|
635
1081
|
|
636
1082
|
### Removed features
|
637
|
-
* The --no-diff option is removed. If you're using RSpec you will
|
1083
|
+
* The --no-diff option is removed. If you're using RSpec you will*always* get diffs. (Aslak Hellesøy)
|
638
1084
|
|
639
1085
|
### Changed Features
|
640
1086
|
* Upgraded to be compatible with rspec 2.0.0.beta.10 (Aslak Hellesøy)
|
641
1087
|
* Ruby snippets will use "([^"]*)" instead of "([^\"]*)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
|
642
1088
|
* Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
|
643
1089
|
|
644
|
-
## [0.7.3](https://github.com/cucumber/cucumber/compare/v0.7.2...v0.7.3)
|
1090
|
+
## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
|
645
1091
|
|
646
1092
|
### New Features
|
647
1093
|
* Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
|
648
1094
|
* Added support for Around hooks. (#605 John Firebaugh)
|
649
1095
|
|
650
|
-
## [0.7.2](https://github.com/cucumber/cucumber/compare/v0.7.1...v0.7.2)
|
1096
|
+
## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
|
651
1097
|
|
652
1098
|
### Bugfixes
|
653
1099
|
* REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
654
1100
|
|
655
|
-
## [0.7.1](https://github.com/cucumber/cucumber/compare/v0.7.0...v0.7.1)
|
1101
|
+
## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
|
656
1102
|
|
657
1103
|
### Bugfixes
|
658
1104
|
* Add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
@@ -660,29 +1106,29 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
660
1106
|
### Changed Features
|
661
1107
|
* Ruby and Javascript snippets will use "([^"]*)" instead of "([^\"]*)"$/ (Aslak Hellesøy)
|
662
1108
|
|
663
|
-
## [0.7.0](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.8...v0.7.0)
|
1109
|
+
## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
|
664
1110
|
|
665
1111
|
This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
|
666
1112
|
files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
|
667
1113
|
instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
668
1114
|
|
669
|
-
## [0.7.0.beta.8](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
1115
|
+
## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
670
1116
|
|
671
1117
|
### Bugfixes
|
672
1118
|
* Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
|
673
1119
|
* Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
|
674
1120
|
|
675
|
-
## [0.7.0.beta.7](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
1121
|
+
## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
676
1122
|
|
677
1123
|
### Bugfixes
|
678
1124
|
* Depend on gherkin-1.0.22, which should now make things work on Windows and Ruby 1.8.x-1.9.x. (Aslak Hellesøy)
|
679
1125
|
|
680
|
-
## [0.7.0.beta.6](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
1126
|
+
## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
681
1127
|
|
682
1128
|
### Bugfixes
|
683
1129
|
* Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
|
684
1130
|
|
685
|
-
## [0.7.0.beta.5](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
1131
|
+
## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
686
1132
|
|
687
1133
|
### New Features
|
688
1134
|
* Support RSpec 2. (RSpec >= 1.2.4 is still supported). (Aslak Hellesøy, Ryan Bigg)
|
@@ -690,7 +1136,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
690
1136
|
### Removed features
|
691
1137
|
* No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
|
692
1138
|
|
693
|
-
## [0.7.0.beta.4](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
1139
|
+
## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
694
1140
|
|
695
1141
|
### New Features
|
696
1142
|
* New, experimental V8 javascript support - step definitions in Javascript! (Joseph Wilk)
|
@@ -698,17 +1144,17 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
698
1144
|
### Bugfixes
|
699
1145
|
* Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
|
700
1146
|
|
701
|
-
## [0.7.0.beta.3](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
1147
|
+
## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
702
1148
|
|
703
1149
|
### Changed Features
|
704
1150
|
* Step Definitions and calling steps from step definitions can again use And and But (was removed in 0.7.0.beta.2) (Aslak Hellesøy)
|
705
1151
|
|
706
|
-
## [0.7.0.beta.2](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
1152
|
+
## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
707
1153
|
|
708
1154
|
### New Features
|
709
1155
|
* Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
|
710
1156
|
|
711
|
-
## [0.7.0.beta.1](https://github.com/cucumber/cucumber/compare/v0.6.4...v0.7.0.beta.1)
|
1157
|
+
## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
|
712
1158
|
|
713
1159
|
Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
|
714
1160
|
Parse times are up to 100 times faster.
|
@@ -719,7 +1165,7 @@ Parse times are up to 100 times faster.
|
|
719
1165
|
### Changed Features
|
720
1166
|
* New i18n translations now have to be contributed to the gherkin project.
|
721
1167
|
|
722
|
-
## [0.6.4](https://github.com/cucumber/cucumber/compare/v0.6.3...v0.6.4)
|
1168
|
+
## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
|
723
1169
|
|
724
1170
|
### Bugfixes
|
725
1171
|
* Better handling of --guess with optional capture groups (Tim Felgentreff)
|
@@ -740,7 +1186,7 @@ Parse times are up to 100 times faster.
|
|
740
1186
|
* Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
741
1187
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
742
1188
|
|
743
|
-
## [0.6.3](https://github.com/cucumber/cucumber/compare/v0.6.2...v0.6.3)
|
1189
|
+
## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
|
744
1190
|
|
745
1191
|
### Bugfixes
|
746
1192
|
* Split arguments in cucumber.yml with shellwords. Example: myprofile: --out="Features report.html" (Nathaniel Haas)
|
@@ -759,7 +1205,7 @@ Parse times are up to 100 times faster.
|
|
759
1205
|
* Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
|
760
1206
|
* Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
|
761
1207
|
|
762
|
-
## [0.6.2](https://github.com/cucumber/cucumber/compare/v0.6.1...v0.6.2)
|
1208
|
+
## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
|
763
1209
|
|
764
1210
|
### Bugfixes
|
765
1211
|
* Update --help for --tags which was out of date. (Aslak Hellesøy)
|
@@ -776,12 +1222,12 @@ Parse times are up to 100 times faster.
|
|
776
1222
|
### Removed features
|
777
1223
|
* element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
|
778
1224
|
|
779
|
-
## [0.6.1](https://github.com/cucumber/cucumber/compare/v0.6.0...v0.6.1)
|
1225
|
+
## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
|
780
1226
|
|
781
1227
|
### Bugfixes
|
782
1228
|
* Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
|
783
1229
|
|
784
|
-
## [0.6.0](https://github.com/cucumber/cucumber/compare/v0.5.3...v0.6.0)
|
1230
|
+
## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
|
785
1231
|
|
786
1232
|
Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
|
787
1233
|
|
@@ -806,14 +1252,14 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
|
|
806
1252
|
* All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
|
807
1253
|
* Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
|
808
1254
|
|
809
|
-
## [0.5.3](https://github.com/cucumber/cucumber/compare/v0.5.2...v0.5.3)
|
1255
|
+
## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
|
810
1256
|
|
811
1257
|
Another small release today to please a sister project. This time Cuke4Nuke.
|
812
1258
|
|
813
1259
|
### New Features
|
814
1260
|
* Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
|
815
1261
|
|
816
|
-
## [0.5.2](https://github.com/cucumber/cucumber/compare/v0.5.1...v0.5.2)
|
1262
|
+
## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
|
817
1263
|
|
818
1264
|
### New Features
|
819
1265
|
* On JRuby/Cuke4Duke, --require DIR will put DIR on the $CLASSPATH, making it easier to load step def classes (Aslak Hellesøy)
|
@@ -823,14 +1269,14 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
823
1269
|
* Add #embed back to html formatter (#547 Brandon Faloona)
|
824
1270
|
* Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
|
825
1271
|
|
826
|
-
## [0.5.1](https://github.com/cucumber/cucumber/compare/v0.5.0...v0.5.1)
|
1272
|
+
## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
|
827
1273
|
|
828
1274
|
Small bugfix release.
|
829
1275
|
|
830
1276
|
### Bugfixes
|
831
1277
|
* Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
|
832
1278
|
|
833
|
-
## [0.5.0](https://github.com/cucumber/cucumber/compare/v0.4.4...v0.5.0)
|
1279
|
+
## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
|
834
1280
|
|
835
1281
|
We're bumping to 0.5.0 for this release since all of the Rails code has now moved to a new gem - cucumber-rails.
|
836
1282
|
Please see History.txt in cucumber-rails for details about what's new on the Rails side.
|
@@ -839,7 +1285,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
839
1285
|
* "Given" in Dutch is now aliased to "Gegeven" or "Stel". (Iain Hecker)
|
840
1286
|
* New --i18n option to list keywords in various languages. (Aslak Hellesøy)
|
841
1287
|
* Added a Tcl example using Sam Stephenson's ruby-tcl (Aslak Hellesøy)
|
842
|
-
* Added
|
1288
|
+
* Added* as a synonym for Given/When/Then/And/But (for all i18n languages). (#462 Aslak Hellesøy)
|
843
1289
|
* The HTML formatter produces a much nicer report, with TextMate link integration. (Rob Aldred)
|
844
1290
|
* Wire protocol now supports table arguments, step definition source & regexp, snippets, pending, table diffing (Matt Wynne)
|
845
1291
|
|
@@ -861,7 +1307,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
861
1307
|
* All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
|
862
1308
|
* --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
|
863
1309
|
|
864
|
-
## [0.4.4](https://github.com/cucumber/cucumber/compare/v0.4.3...v0.4.4)
|
1310
|
+
## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
|
865
1311
|
|
866
1312
|
What a bad day to make a release, but here goes.
|
867
1313
|
|
@@ -886,7 +1332,7 @@ What a bad day to make a release, but here goes.
|
|
886
1332
|
* $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
|
887
1333
|
* Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
|
888
1334
|
|
889
|
-
## [0.4.3](https://github.com/cucumber/cucumber/compare/v0.4.2...v0.4.3)
|
1335
|
+
## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
|
890
1336
|
|
891
1337
|
The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
|
892
1338
|
now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
|
@@ -899,7 +1345,7 @@ As usual there are several small features and bug fixes.
|
|
899
1345
|
* New Wire Protocol - allowing out of process execution of Cucumber scenarios. (#428 Matt Wynne)
|
900
1346
|
* Added an example illustrating how to get screenshots in HTML reports (examples/watir) (Aslak Hellesøy)
|
901
1347
|
* Added new #embed(file, mime_type) method to visitors and Ruby Worlds to make it easier to embed screenshots (Aslak Hellesøy)
|
902
|
-
* The #puts method available from Ruby Step Definitions will print
|
1348
|
+
* The #puts method available from Ruby Step Definitions will print*after* the step is executed. (#487 Zoltan Penzeli)
|
903
1349
|
* Add support for rolling back transaction for all open database connections. (John Ferlito)
|
904
1350
|
* Show scenario and step summary in HTML formatter (#285 Joseph Wilk)
|
905
1351
|
* Ast::Table can now be constructed with an Array of Hash. (Aslak Hellesøy)
|
@@ -915,11 +1361,11 @@ As usual there are several small features and bug fixes.
|
|
915
1361
|
* Better Danish translation (Thorbjørn Ravn Andersen)
|
916
1362
|
|
917
1363
|
|
918
|
-
## [0.4.2](https://github.com/cucumber/cucumber/compare/v0.4.1...v0.4.2)
|
1364
|
+
## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
|
919
1365
|
|
920
1366
|
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
921
1367
|
|
922
|
-
## [0.4.1](https://github.com/cucumber/cucumber/compare/v0.4.0...v0.4.1)
|
1368
|
+
## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
|
923
1369
|
|
924
1370
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
925
1371
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
@@ -946,13 +1392,13 @@ development environment.
|
|
946
1392
|
* Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
947
1393
|
* StepDefinitionMethods is gone.
|
948
1394
|
|
949
|
-
## [0.4.0](https://github.com/cucumber/cucumber/compare/v0.3.104...v0.4.0)
|
1395
|
+
## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
|
950
1396
|
|
951
1397
|
The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
|
952
1398
|
went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
|
953
1399
|
better to do this while still on 0.3.x.
|
954
1400
|
|
955
|
-
Rails users: you
|
1401
|
+
Rails users: you*must* run script/generate cucumber after installing this version.
|
956
1402
|
|
957
1403
|
If something breaks for you, please please please read this file carefully. It's most likely something referenced here, and
|
958
1404
|
that will give you more information so you can solve any problems. If not, just get in touch on IRC or the Google Group.
|
@@ -993,7 +1439,7 @@ that will give you more information so you can solve any problems. If not, just
|
|
993
1439
|
* Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
|
994
1440
|
* String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
|
995
1441
|
|
996
|
-
## [0.3.104](https://github.com/cucumber/cucumber/compare/v0.3.103...v0.3.104)
|
1442
|
+
## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
|
997
1443
|
|
998
1444
|
This release has some minor changes to the command line and formatters. The biggest change is internally, paving
|
999
1445
|
the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
|
@@ -1018,7 +1464,7 @@ Groovy, Clojure and Javascript!
|
|
1018
1464
|
* The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
|
1019
1465
|
* The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
|
1020
1466
|
|
1021
|
-
## [0.3.103](https://github.com/cucumber/cucumber/compare/v0.3.102...v0.3.103)
|
1467
|
+
## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
|
1022
1468
|
|
1023
1469
|
This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
|
1024
1470
|
previous release.
|
@@ -1036,7 +1482,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
|
|
1036
1482
|
### Changed Features
|
1037
1483
|
* The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
|
1038
1484
|
|
1039
|
-
## [0.3.102](https://github.com/cucumber/cucumber/compare/v0.3.101...v0.3.102)
|
1485
|
+
## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
|
1040
1486
|
|
1041
1487
|
This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
|
1042
1488
|
Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
|
@@ -1044,7 +1490,7 @@ Other noteworthy new features are improved Hook, tags and Transform support, and
|
|
1044
1490
|
### New Features
|
1045
1491
|
* Added new internal API for Regexp and groups, allowing other programming languages to leverage native regexps. (Aslak Hellesøy)
|
1046
1492
|
* New @allow_rescue tag for Rails scenarios. Causes exceptions raised in actions to be caught by rails and not bubble up to Cucumber (Aslak Hellesøy)
|
1047
|
-
* Negative tags can now be used in hooks, just like the command line's --tags option: Before('~@yarr') - will run for all scenarios that
|
1493
|
+
* Negative tags can now be used in hooks, just like the command line's --tags option: Before('~@yarr') - will run for all scenarios that*don't* have the @yarr tag. (Aslak Hellesøy)
|
1048
1494
|
* Transform has current "World" scope (Larry Diehl)
|
1049
1495
|
* Other Transforms can be reused by calling Transform with a string inside of another Transform definition (Larry Diehl)
|
1050
1496
|
* Execute "After" hooks in reverse order of declaration for better behavior with dependent blocks and to mimic the behavior of at_exit (David Waite)
|
@@ -1058,13 +1504,13 @@ Other noteworthy new features are improved Hook, tags and Transform support, and
|
|
1058
1504
|
* Cucumber with Spork breaks on OS X Snow Leopard (#431 David Chelimsky)
|
1059
1505
|
|
1060
1506
|
### Changed Features
|
1061
|
-
* Tag names passed on the command line
|
1507
|
+
* Tag names passed on the command line*always* have to use the @ sign. --tags foo or --tags ~bar won't work. Use --tags @foo or --tags ~@bar (Aslak Hellesøy)
|
1062
1508
|
|
1063
1509
|
### Removed features
|
1064
1510
|
* The Cucumber::Rails.bypass_rescue no longer exists. Errors will always bubble up, unless you use the new @allow_rescue tag. (Aslak Hellesøy)
|
1065
1511
|
* The Cucumber::Rails.use_transactional_fixtures no longer exists. Transactional fixtures are always enabled for the cucumber environment. (Aslak Hellesøy)
|
1066
1512
|
|
1067
|
-
## [0.3.101](https://github.com/cucumber/cucumber/compare/v0.3.100...v0.3.101)
|
1513
|
+
## [0.3.101](https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101)
|
1068
1514
|
|
1069
1515
|
Two exciting things in this release. Step Argument Transforms and a PDF formatter you can use to send
|
1070
1516
|
your features to your customer for review!
|
@@ -1077,7 +1523,7 @@ your features to your customer for review!
|
|
1077
1523
|
* Adding webrat steps for asserting content does or does not exist within a particular element
|
1078
1524
|
(using webrat's within method) (Kieran Pilkington)
|
1079
1525
|
|
1080
|
-
## [0.3.100](https://github.com/cucumber/cucumber/compare/v0.3.99...v0.3.100)
|
1526
|
+
## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
|
1081
1527
|
|
1082
1528
|
The JavaZone release!
|
1083
1529
|
|
@@ -1089,7 +1535,7 @@ The JavaZone release!
|
|
1089
1535
|
* Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
|
1090
1536
|
* When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
|
1091
1537
|
|
1092
|
-
## [0.3.99](https://github.com/cucumber/cucumber/compare/v0.3.98...v0.3.99)
|
1538
|
+
## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
|
1093
1539
|
|
1094
1540
|
### New Features
|
1095
1541
|
* Support for Croatian (Bkrsta)
|
@@ -1098,7 +1544,7 @@ The JavaZone release!
|
|
1098
1544
|
* New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
|
1099
1545
|
* Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
|
1100
1546
|
|
1101
|
-
## [0.3.98](https://github.com/cucumber/cucumber/compare/v0.3.97...v0.3.98)
|
1547
|
+
## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
|
1102
1548
|
|
1103
1549
|
Just a small release to help Cuke4Duke, which will be presented at Agile2009
|
1104
1550
|
in 2 days.
|
@@ -1107,7 +1553,7 @@ in 2 days.
|
|
1107
1553
|
* Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
|
1108
1554
|
* Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
|
1109
1555
|
|
1110
|
-
## [0.3.97](https://github.com/cucumber/cucumber/compare/v0.3.96...v0.3.97)
|
1556
|
+
## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
|
1111
1557
|
|
1112
1558
|
The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
|
1113
1559
|
with the new language API and maybe knock out some better .NET support.
|
@@ -1126,7 +1572,7 @@ with the new language API and maybe knock out some better .NET support.
|
|
1126
1572
|
* Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
|
1127
1573
|
* The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
|
1128
1574
|
|
1129
|
-
## [0.3.96](https://github.com/cucumber/cucumber/compare/v0.3.95...v0.3.96)
|
1575
|
+
## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
|
1130
1576
|
|
1131
1577
|
This release doesn't have any significant new features or bug fixes, but there are big
|
1132
1578
|
internal changes. This release has a new API for plugging in other programming languages.
|
@@ -1145,7 +1591,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
|
|
1145
1591
|
* --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
|
1146
1592
|
* junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
|
1147
1593
|
|
1148
|
-
## [0.3.95](https://github.com/cucumber/cucumber/compare/v0.3.94...v0.3.95)
|
1594
|
+
## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
|
1149
1595
|
|
1150
1596
|
This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
|
1151
1597
|
elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
|
@@ -1172,7 +1618,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
|
|
1172
1618
|
* element_at('table').to_table should be used instead of table_at('table').to_a. The old way is deprecated but still works. (Aslak Hellesøy)
|
1173
1619
|
* element_at (and the depracated table_at) no longer takes a DOM id, only CSS selectors. Change "my_id" to "#my_id". (Aslak Hellesøy)
|
1174
1620
|
|
1175
|
-
## [0.3.94](https://github.com/cucumber/cucumber/compare/v0.3.93...v0.3.94)
|
1621
|
+
## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
|
1176
1622
|
|
1177
1623
|
Kanban take II.
|
1178
1624
|
|
@@ -1196,12 +1642,12 @@ You'll achieve better flow this way.
|
|
1196
1642
|
* Added examples/python that uses rubypython. (Aslak Hellesøy)
|
1197
1643
|
* Checks the number of available colors on the terminal with ruby-terminfo if ruby-terminfo is installed.
|
1198
1644
|
This prevents Apple's Terminal.app from stalling (Yugui - Yuki Sonoda).
|
1199
|
-
|
1200
|
-
|
1645
|
+
* Set 'xterm-256color' to TERM if your terminal supports grey.
|
1646
|
+
* ruby-terminfo is available as genki-ruby-terminfo gem from github.
|
1201
1647
|
* Document builtin formatters with --help. (#406 Aslak Hellesøy)
|
1202
1648
|
* Added support for using regular expressions when mapping table headers. (Peter Williams)
|
1203
1649
|
|
1204
|
-
## [0.3.93](https://github.com/cucumber/cucumber/compare/v0.3.92...v0.3.93)
|
1650
|
+
## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
|
1205
1651
|
|
1206
1652
|
Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
|
1207
1653
|
|
@@ -1216,7 +1662,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
|
|
1216
1662
|
* script/cucumber correctly loads the gem's binary if the plugin isn't installed.
|
1217
1663
|
* Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
|
1218
1664
|
|
1219
|
-
## [0.3.92](https://github.com/cucumber/cucumber/compare/v0.3.91...v0.3.92)
|
1665
|
+
## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
|
1220
1666
|
|
1221
1667
|
This release has some minor improvements to the new Table.diff! functionality. For example,
|
1222
1668
|
if you're using Webrat and you want to compare a feature table with a HTML table containing
|
@@ -1237,7 +1683,7 @@ links in one of the columns, you can do:
|
|
1237
1683
|
### Changed Features
|
1238
1684
|
* The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
|
1239
1685
|
|
1240
|
-
## [0.3.91](https://github.com/cucumber/cucumber/compare/v0.3.90...v0.3.91)
|
1686
|
+
## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
|
1241
1687
|
|
1242
1688
|
### New Features
|
1243
1689
|
* CTRL-C will exit immediately instead of carrying on until all features are run. (Aslak Hellesøy)
|
@@ -1245,7 +1691,7 @@ links in one of the columns, you can do:
|
|
1245
1691
|
* Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
|
1246
1692
|
* Table support for cuke4duke
|
1247
1693
|
|
1248
|
-
## [0.3.90](https://github.com/cucumber/cucumber/compare/v0.3.11...v0.3.90)
|
1694
|
+
## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
|
1249
1695
|
|
1250
1696
|
The Hot summer release
|
1251
1697
|
|
@@ -1297,7 +1743,7 @@ expected data passed to a step. Here is an example:
|
|
1297
1743
|
end
|
1298
1744
|
|
1299
1745
|
You can do the same trick to compare data from a Rails ActiveRecord table (although this is not a
|
1300
|
-
recommended practice - your Then steps should compare against what users
|
1746
|
+
recommended practice - your Then steps should compare against what users*see*, not what's in the
|
1301
1747
|
database):
|
1302
1748
|
|
1303
1749
|
# This requires that you use the column names in the header of the plain text expected table
|
@@ -1346,7 +1792,7 @@ This release also has several bugfixes related to --format and Before/After hook
|
|
1346
1792
|
* The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
|
1347
1793
|
* Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
|
1348
1794
|
|
1349
|
-
## [0.3.11](https://github.com/cucumber/cucumber/compare/v0.3.10...v0.3.11)
|
1795
|
+
## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
|
1350
1796
|
|
1351
1797
|
This release just fixes a tiny bug in the formatter to fix an incompatibility
|
1352
1798
|
with the latest RedMine release. It should have been included in 0.3.10, but
|
@@ -1355,7 +1801,7 @@ was forgotten.
|
|
1355
1801
|
### Bugfixes
|
1356
1802
|
* Formatter API was broken in 0.3.9 (Roman Chernyatchik)
|
1357
1803
|
|
1358
|
-
## [0.3.10](https://github.com/cucumber/cucumber/compare/v0.3.9...v0.3.10)
|
1804
|
+
## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
|
1359
1805
|
|
1360
1806
|
The Spork Release!
|
1361
1807
|
|
@@ -1365,7 +1811,7 @@ thanks to a brand new gem called Spork by Tim Harper and Ben Mabey. (You can fin
|
|
1365
1811
|
here: http://github.com/timcharper/spork/tree/master). You can start Spork and have it preload your
|
1366
1812
|
application in a separate process. Spork listens for DRb connections, and when you run cucumber with
|
1367
1813
|
--drb the features will run inside the Spork server instead. Spork provides two simple hooks for preloading
|
1368
|
-
your application - one for framework/stable code (Spork.prefork) and one for the code that
|
1814
|
+
your application - one for framework/stable code (Spork.prefork) and one for the code that*you* write and
|
1369
1815
|
change often (Spork.each_run). Keep in mind that all World, Before, and other Cucumber hooks need to be
|
1370
1816
|
in the Spork.each_run block. Using Spork works great for Ruby on Rails, which can take a while to load,
|
1371
1817
|
but --drb and Spork aren't tied to Rails at all. The new --drb switch also works great alongside autotest
|
@@ -1395,7 +1841,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
|
|
1395
1841
|
### Changed features
|
1396
1842
|
* The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
|
1397
1843
|
|
1398
|
-
## [0.3.9](https://github.com/cucumber/cucumber/compare/v0.3.8...v0.3.9)
|
1844
|
+
## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
|
1399
1845
|
|
1400
1846
|
Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
|
1401
1847
|
generator which is fixed in 0.3.9.
|
@@ -1404,10 +1850,10 @@ generator which is fixed in 0.3.9.
|
|
1404
1850
|
* Fix broken Rails cucumber generator (Tim Glen)
|
1405
1851
|
* The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
|
1406
1852
|
|
1407
|
-
## [0.3.8](https://github.com/cucumber/cucumber/compare/v0.3.7...v0.3.8)
|
1853
|
+
## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
|
1408
1854
|
|
1409
1855
|
This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
|
1410
|
-
use Cucumber with a Rails app we
|
1856
|
+
use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
|
1411
1857
|
|
1412
1858
|
ruby script/generate cucumber
|
1413
1859
|
|
@@ -1422,10 +1868,10 @@ use Cucumber with a Rails app we *strongly* recommend you bootstrap Cucumber aga
|
|
1422
1868
|
* The Cucumber Rake task will again fork by default (as 0.3.3 and earlier). Forking must be turned off explicitly. (Aslak Hellesøy)
|
1423
1869
|
|
1424
1870
|
### Bugfixes
|
1425
|
-
* Better coexistence with RSpec - Cucumber now
|
1871
|
+
* Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
|
1426
1872
|
* The differ= exception is gone (#325, #340 Aslak Hellesøy)
|
1427
1873
|
|
1428
|
-
## [0.3.7](https://github.com/cucumber/cucumber/compare/v0.3.6...v0.3.7)
|
1874
|
+
## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
|
1429
1875
|
|
1430
1876
|
This is the "Help JetBrains RubyMine" release!
|
1431
1877
|
|
@@ -1438,7 +1884,7 @@ This is the "Help JetBrains RubyMine" release!
|
|
1438
1884
|
* 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
|
1439
1885
|
* CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
|
1440
1886
|
|
1441
|
-
## [0.3.6](https://github.com/cucumber/cucumber/compare/v0.3.5...v0.3.6)
|
1887
|
+
## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
|
1442
1888
|
|
1443
1889
|
Kanban! With this release you can tag features or scenarios that are work in progress
|
1444
1890
|
with a tag and use the new --wip switch.
|
@@ -1456,21 +1902,21 @@ Another handy feature in this release is that you can package your own formatter
|
|
1456
1902
|
* Gracefully handle exceptions in After block (#330 Matt Wynne)
|
1457
1903
|
* Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
|
1458
1904
|
|
1459
|
-
## [0.3.5](https://github.com/cucumber/cucumber/compare/v0.3.4...v0.3.5)
|
1905
|
+
## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
|
1460
1906
|
|
1461
1907
|
Let's make a new release today because two annoying bugs are fixed.
|
1462
1908
|
|
1463
1909
|
### Bugfixes
|
1464
1910
|
* Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
|
1465
1911
|
|
1466
|
-
## [0.3.4](https://github.com/cucumber/cucumber/compare/v0.3.3...v0.3.4)
|
1912
|
+
## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
|
1467
1913
|
|
1468
1914
|
A couple of great new features in this release. Running with Rake is faster than before,
|
1469
1915
|
and there is a brand new JUnit formatter - great for Continuous Integration reports!
|
1470
1916
|
|
1471
1917
|
This release was made especially for the Oslo XP Meetup today.
|
1472
1918
|
|
1473
|
-
** IMPORTANT UPGRADE NOTES FOR RAILS USERS
|
1919
|
+
** IMPORTANT UPGRADE NOTES FOR RAILS USERS**
|
1474
1920
|
|
1475
1921
|
Running Cucumber features in the same Ruby interpreter as Rake doesn't seem to work,
|
1476
1922
|
so you have to explicitly tell the task to fork (like it was doing by default in prior
|
@@ -1507,7 +1953,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
|
|
1507
1953
|
unless explicitly told to fork a new interpreter. This is to increase speed. You can
|
1508
1954
|
force a new interpreter by setting fork=true or rcov=true in the task.
|
1509
1955
|
|
1510
|
-
## [0.3.3](https://github.com/cucumber/cucumber/compare/v0.3.2...v0.3.3)
|
1956
|
+
## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
|
1511
1957
|
|
1512
1958
|
Minor bugfix release, made specially for EuRuKo!
|
1513
1959
|
|
@@ -1519,7 +1965,7 @@ Minor bugfix release, made specially for EuRuKo!
|
|
1519
1965
|
### Removed/changed features
|
1520
1966
|
* New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
|
1521
1967
|
|
1522
|
-
## [0.3.2](https://github.com/cucumber/cucumber/compare/v0.3.1...v0.3.2)
|
1968
|
+
## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
|
1523
1969
|
|
1524
1970
|
This release has some minor bug fixes and new features.
|
1525
1971
|
Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
@@ -1535,7 +1981,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
|
1535
1981
|
* Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
|
1536
1982
|
* Added support for Examples selection when using --name. (#295 Joseph Wilk)
|
1537
1983
|
|
1538
|
-
## [0.3.1](https://github.com/cucumber/cucumber/compare/v0.3.0...v0.3.1)
|
1984
|
+
## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
|
1539
1985
|
|
1540
1986
|
This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
|
1541
1987
|
now supports 32(!!) languages.
|
@@ -1560,7 +2006,7 @@ now supports 32(!!) languages.
|
|
1560
2006
|
### Removed/changed features
|
1561
2007
|
* --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
|
1562
2008
|
|
1563
|
-
## [0.3.0](https://github.com/cucumber/cucumber/compare/v0.2.3...v0.3.0)
|
2009
|
+
## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
|
1564
2010
|
|
1565
2011
|
This release has some minor changes to the APIs, but big enough that a new major release is in order.
|
1566
2012
|
The biggest change is the new semantics of the #World method. Previously you would call this method
|
@@ -1610,12 +2056,12 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
|
|
1610
2056
|
|
1611
2057
|
### Removed/changed features
|
1612
2058
|
* The visitor API has changed slightly:
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
2059
|
+
* \#visit_step_name, #visit_multiline_arg and \#visit_exception are no longer official API methods.
|
2060
|
+
* \#visit_step_result replaces those 3 methods.
|
2061
|
+
* Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
|
2062
|
+
* \#visit_py_string no longer takes a status argument.
|
1617
2063
|
|
1618
|
-
## [0.2.3](https://github.com/cucumber/cucumber/compare/v0.2.2...v0.2.3)
|
2064
|
+
## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
|
1619
2065
|
|
1620
2066
|
This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
|
1621
2067
|
in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
|
@@ -1635,7 +2081,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
|
|
1635
2081
|
* Fixed step name after step keyword without space (#265 Aslak Hellesøy)
|
1636
2082
|
* Backtrace is back in HTML reports (Aslak Hellesøy)
|
1637
2083
|
|
1638
|
-
## [0.2.2](https://github.com/cucumber/cucumber/compare/v0.2.1...v0.2.2)
|
2084
|
+
## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
|
1639
2085
|
|
1640
2086
|
This release includes some minor changes to make Cucumber work with pure Java. Cucumber
|
1641
2087
|
has already worked with Java for a while (using JRuby and step definitions in Ruby),
|
@@ -1644,7 +2090,7 @@ but now you can write step definitions in pure Java!
|
|
1644
2090
|
Check out the Cucumber Java project for more details:
|
1645
2091
|
http://github.com/aslakhellesoy/cucumber_java/tree/master
|
1646
2092
|
|
1647
|
-
## [0.2.1](https://github.com/cucumber/cucumber/compare/v0.2.0...v0.2.1)
|
2093
|
+
## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
|
1648
2094
|
|
1649
2095
|
This release fixes a few minor bugs and adds a couple of new features.
|
1650
2096
|
|
@@ -1663,7 +2109,7 @@ This release fixes a few minor bugs and adds a couple of new features.
|
|
1663
2109
|
### Removed features
|
1664
2110
|
* -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
|
1665
2111
|
|
1666
|
-
## [0.2.0](https://github.com/cucumber/cucumber/compare/v0.1.16...v0.2.0)
|
2112
|
+
## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
|
1667
2113
|
|
1668
2114
|
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
1669
2115
|
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
@@ -1768,7 +2214,7 @@ to this:
|
|
1768
2214
|
* Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
1769
2215
|
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
1770
2216
|
|
1771
|
-
## [0.1.16](https://github.com/cucumber/cucumber/compare/v0.1.15...v0.1.16)
|
2217
|
+
## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
|
1772
2218
|
|
1773
2219
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
1774
2220
|
upgrade both Cucumber and Webrat gems.
|
@@ -1784,7 +2230,7 @@ upgrade both Cucumber and Webrat gems.
|
|
1784
2230
|
|
1785
2231
|
### Removed features
|
1786
2232
|
|
1787
|
-
## [0.1.15](https://github.com/cucumber/cucumber/compare/v0.1.14...v0.1.15)
|
2233
|
+
## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
|
1788
2234
|
|
1789
2235
|
Bugfix release
|
1790
2236
|
|
@@ -1797,7 +2243,7 @@ Bugfix release
|
|
1797
2243
|
* Better quoting of Scenario names in Autotest (Peter Jaros)
|
1798
2244
|
* Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
|
1799
2245
|
|
1800
|
-
## [0.1.14](https://github.com/cucumber/cucumber/compare/v0.1.13...v0.1.14)
|
2246
|
+
## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
|
1801
2247
|
|
1802
2248
|
This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
|
1803
2249
|
with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
|
@@ -1814,7 +2260,7 @@ a couple of minor bug fixes and polishing.
|
|
1814
2260
|
### Removed features
|
1815
2261
|
* The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
|
1816
2262
|
|
1817
|
-
## [0.1.13](https://github.com/cucumber/cucumber/compare/v0.1.12...v0.1.13)
|
2263
|
+
## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
|
1818
2264
|
|
1819
2265
|
It's time for some new features again. Output is now much better since you can use diffing, tweak
|
1820
2266
|
the output colours and get the full --backtrace if you want. Managing your support/* files became
|
@@ -1849,7 +2295,7 @@ Enjoy!
|
|
1849
2295
|
|
1850
2296
|
### Removed features
|
1851
2297
|
|
1852
|
-
## [0.1.12](https://github.com/cucumber/cucumber/compare/v0.1.11...v0.1.12)
|
2298
|
+
## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
|
1853
2299
|
|
1854
2300
|
This is the "getting serious with IronRuby release" - largely based on
|
1855
2301
|
"Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
|
@@ -1864,7 +2310,7 @@ blog entry.
|
|
1864
2310
|
### Removed features
|
1865
2311
|
None
|
1866
2312
|
|
1867
|
-
## [0.1.11](https://github.com/cucumber/cucumber/compare/v0.1.10...v0.1.11)
|
2313
|
+
## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
|
1868
2314
|
|
1869
2315
|
Bugfix release with a couple of minor additional features to the command line options.
|
1870
2316
|
|
@@ -1882,7 +2328,7 @@ Bugfix release with a couple of minor additional features to the command line op
|
|
1882
2328
|
### Removed features
|
1883
2329
|
* The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
|
1884
2330
|
|
1885
|
-
## [0.1.10](https://github.com/cucumber/cucumber/compare/v0.1.9...v0.1.10)
|
2331
|
+
## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
|
1886
2332
|
|
1887
2333
|
This release mostly has smaller bugfixes. The most significant new feature is how
|
1888
2334
|
line numbers are specified. You can now run multiple features at specific lines numbers like this:
|
@@ -1912,7 +2358,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
|
|
1912
2358
|
* Step definition without a block being treated as pending (#64 Joseph Wilk)
|
1913
2359
|
* The --line option has been removed. Use the new file.feature:line format instead.
|
1914
2360
|
|
1915
|
-
## [0.1.9](https://github.com/cucumber/cucumber/compare/v0.1.8...v0.1.9)
|
2361
|
+
## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
|
1916
2362
|
|
1917
2363
|
With this release Cucumber supports 19 (!) natural languages:
|
1918
2364
|
|
@@ -1995,7 +2441,7 @@ spaces removed too.
|
|
1995
2441
|
### Removed features
|
1996
2442
|
|
1997
2443
|
|
1998
|
-
## [0.1.8](https://github.com/cucumber/cucumber/compare/v0.1.7...v0.1.8)
|
2444
|
+
## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
|
1999
2445
|
|
2000
2446
|
This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
|
2001
2447
|
In previous releases it has been possible to use tables to define "more examples" of a scenario in
|
@@ -2063,6 +2509,7 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
2063
2509
|
* Show the feature file and line for pending steps as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
|
2064
2510
|
|
2065
2511
|
### Bugfixes
|
2512
|
+
|
2066
2513
|
* Fixed speling errors in Spanish (Daniel Cadenas)
|
2067
2514
|
* ActionMailer delivery_method should not be set to test (#41, Luke Melia)
|
2068
2515
|
* Reverse incorrectly ordered args in webrat select step (#43, David Chelimsky)
|
@@ -2070,12 +2517,14 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
2070
2517
|
* Fixed the HTML Formatter to use actual values for FIT table headers (#30, Joseph Wilk)
|
2071
2518
|
|
2072
2519
|
### Removed features
|
2520
|
+
|
2073
2521
|
* Removed the /^I go to (.*)$/ step from common_webrat.rb - it's not language agnostic and provides little value.
|
2074
2522
|
|
2075
2523
|
### New features
|
2524
|
+
|
2076
2525
|
* Added new --out option to make it easier to specify output from Rake and cucumber.yml
|
2077
2526
|
|
2078
|
-
## [0.1.7](https://github.com/cucumber/cucumber/compare/v0.1.6...v0.1.7)
|
2527
|
+
## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
|
2079
2528
|
|
2080
2529
|
This release fixes a few bugs and adds some new features. The most notable features are:
|
2081
2530
|
|
@@ -2118,16 +2567,18 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
|
|
2118
2567
|
And the result class should be Float # features/steps/calculator_steps.rb:24
|
2119
2568
|
|
2120
2569
|
### Bugfixes
|
2570
|
+
|
2121
2571
|
* Fixed a bug in the command line args being lost when using --profile (#27, Joseph Wilk)
|
2122
2572
|
* Fixed a bug in Webrat selects (Tim Glen)
|
2123
2573
|
* Fixed parsing of DOS line endings (#2, #28, Aslak Hellesøy)
|
2124
2574
|
|
2125
2575
|
### New features
|
2576
|
+
|
2126
2577
|
* Steps can be called from other steps (#3, Bryan Helmkamp, Aslak Hellesøy)
|
2127
2578
|
* Added But keyword to all languages (#21, Aslak Hellesøy)
|
2128
2579
|
* Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
|
2129
2580
|
* Added more Webrat steps (#25, Tim Glen)
|
2130
2581
|
|
2131
|
-
## [0.1.6](https://github.com/cucumber/cucumber/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2582
|
+
## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2132
2583
|
|
2133
2584
|
First gem release!
|