cucumber 2.0.0.rc.5 → 4.0.0.rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/{History.md → CHANGELOG.md} +700 -264
- 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 -7
- data/lib/cucumber/cli/configuration.rb +23 -106
- data/lib/cucumber/cli/main.rb +45 -25
- data/lib/cucumber/cli/options.rb +410 -229
- 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 +3 -1
- data/lib/cucumber/errors.rb +9 -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 +7 -13
- 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 +143 -173
- 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 +4 -3
- 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 +15 -70
- data/lib/cucumber/runtime.rb +83 -81
- 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 +46 -160
- 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 +257 -621
- 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/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/ht/Rakefile +0 -6
- data/examples/i18n/ht/features/adisyon.feature +0 -17
- data/examples/i18n/ht/features/divizyon.feature +0 -10
- data/examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb +0 -25
- data/examples/i18n/ht/lib/kalkilatris.rb +0 -14
- 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 -68
- 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 -64
- data/features/docs/defining_steps/nested_steps.feature +0 -178
- 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_around_hook.feature +0 -80
- 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 -760
- data/features/docs/formatters/junit_formatter.feature +0 -316
- 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/wire_protocol/erb_configuration.feature +0 -56
- data/features/docs/wire_protocol/handle_unexpected_response.feature +0 -30
- data/features/docs/wire_protocol/invoke_message.feature +0 -216
- data/features/docs/wire_protocol/readme.md +0 -26
- data/features/docs/wire_protocol/snippets_message.feature +0 -51
- data/features/docs/wire_protocol/step_matches_message.feature +0 -81
- data/features/docs/wire_protocol/table_diffing.feature +0 -126
- data/features/docs/wire_protocol/tags.feature +0 -87
- data/features/docs/wire_protocol/timeouts.feature +0 -64
- 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 -260
- data/features/docs/writing_support_code/before_hook.feature +0 -65
- 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 -95
- 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 -58
- data/features/lib/support/env.rb +0 -21
- data/features/lib/support/fake_wire_server.rb +0 -80
- 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/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 -204
- 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 -1060
- 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 -131
- 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 -252
- data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +0 -2090
- data/spec/cucumber/formatter/pretty_spec.rb +0 -823
- 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/project_initializer_spec.rb +0 -87
- 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 -170
- 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/running_test_case_spec.rb +0 -83
- 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 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ee911dfd2e4141ad61af0c67b5c9be6e169fe2d27bd2a9c407a590fe9eb0e72a
|
4
|
+
data.tar.gz: 28fd680ef1f6f8d60bbcaba4a44c153d94d0a626c873aac9956b7ee8b36e8c7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75974422135d45e115c32f685e88971eeec3f1c13473a0fc312412c4f73b665e84d439840642c67b93076a7499cf0130e28caddbb6761e5780b8e29b66e767eb
|
7
|
+
data.tar.gz: d0eebdfd398decebf6fd0982306f31d501794bb8c5866452e0e65354a3af10da9d50c49cd08a137ec87193902cc2934e70340bed5a41b23ee59f84191c66add8
|
data/{History.md → CHANGELOG.md}
RENAMED
@@ -1,85 +1,521 @@
|
|
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.2...v4.0.0.rc.3)
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
* Update to cucumber-wire 1.1.
|
18
|
+
|
19
|
+
|
20
|
+
## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2)
|
21
|
+
|
22
|
+
### Added
|
23
|
+
* There is a new methodology in Cucumber for how the auto-loader works
|
24
|
+
* The old `load` behaviour is now replaced with a newer `require` behaviour
|
25
|
+
* Cucumber will (From version 4), now auto-load files using the `require` method
|
26
|
+
* If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
|
27
|
+
* Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
|
28
|
+
* For more information on this change, including why it was made. Please read this
|
29
|
+
[Blog Post](www.google.com)
|
30
|
+
([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
|
31
|
+
[#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
|
32
|
+
[luke-hill](https://github.com/luke-hill))
|
33
|
+
|
34
|
+
### Changed
|
35
|
+
* Going forward the minimum ruby version for all cucumber based gems is 2.3
|
36
|
+
([luke-hill](https://github.com/luke-hill))
|
37
|
+
|
38
|
+
### Removed
|
39
|
+
* Removed Travis publish job for cucumber-pro(a.k.a. jam)
|
40
|
+
([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
|
41
|
+
[luke-hill](https://github.com/luke-hill))
|
42
|
+
|
43
|
+
* Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
|
44
|
+
start working, or if someone can make the build pass with an older version.
|
45
|
+
All this means is we're ok to make releases while the jruby CI job is failing.
|
46
|
+
|
47
|
+
([aslakhellesoy](https://github.com/aslakhellesoy))
|
48
|
+
|
49
|
+
* Remove `dots-formatter introduced in `4.0.0rc1`
|
50
|
+
|
51
|
+
### Fixed
|
52
|
+
|
53
|
+
* Fix the placeholder expansions in the json formatter
|
54
|
+
([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
|
55
|
+
[brasmusson](https://github.com/brasmusson))
|
56
|
+
* Fix seed printed in cucumber UI to match the seed that was actually used.
|
57
|
+
([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
|
58
|
+
[deivid-rodriguez](https://github.com/deivid-rodriguez))
|
59
|
+
* 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`.
|
60
|
+
([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
|
61
|
+
[akostadinov](https://github.com/akostadinov))
|
62
|
+
|
63
|
+
### Improved
|
64
|
+
|
65
|
+
* Filter out any lines containing `site_ruby` from stacktrace
|
66
|
+
|
67
|
+
## [4.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.2...v4.0.0.rc.1) (2018-09-29)
|
68
|
+
|
69
|
+
### Added
|
70
|
+
|
71
|
+
* Added support for new `Rule` keyword. [Read more here.](https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25)
|
72
|
+
* 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.
|
73
|
+
|
74
|
+
### Changed
|
75
|
+
|
76
|
+
* Use Gherkin v6.
|
77
|
+
([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
|
78
|
+
[brasmusson](https://github.com/brasmusson))
|
79
|
+
* Do not apply Before and After Hooks to Test Cases with no Test Steps.
|
80
|
+
([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
|
81
|
+
[brasmusson](https://github.com/brasmusson))
|
82
|
+
* Pass the registry to the Wire plugin.
|
83
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
84
|
+
[brasmusson](https://github.com/brasmusson))
|
85
|
+
* Adapt to using the Gherkin compiler and Pickles in the core.
|
86
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
87
|
+
[brasmusson](https://github.com/brasmusson))
|
88
|
+
* Let the Pretty Formatter use events.
|
89
|
+
([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
|
90
|
+
[brasmusson](https://github.com/brasmusson))
|
91
|
+
* Use single quotes in generated template steps ([#1323](https://github.com/cucumber/cucumber-ruby/pull/1323) [acant](https://github.com/acant))
|
92
|
+
|
93
|
+
### Removed
|
94
|
+
|
95
|
+
* Remove the support of old style tag expressions.
|
96
|
+
([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
|
97
|
+
[brasmusson](https://github.com/brasmusson))
|
98
|
+
* Remove the Legacy API for Formatters.
|
99
|
+
([#1230](https://github.com/cucumber/cucumber-ruby/pull/1230),
|
100
|
+
[#839](https://github.com/cucumber/cucumber-ruby/issues/839)
|
101
|
+
[brasmusson](https://github.com/brasmusson))
|
102
|
+
* Remove the JSON Pretty Formatter (which was the same as the JSON formatter).
|
103
|
+
([brasmusson](https://github.com/brasmusson))
|
104
|
+
* Remove the HTML Formatter.
|
105
|
+
([#1306](https://github.com/cucumber/cucumber-ruby/pull/1306)
|
106
|
+
[brasmusson](https://github.com/brasmusson))
|
107
|
+
|
108
|
+
### Fixed
|
109
|
+
|
110
|
+
* Wire protocol compatibility for docstrings.
|
111
|
+
([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
|
112
|
+
* Let the Rerun Formatter handle flaky scenarios.
|
113
|
+
([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
|
114
|
+
[brasmusson](https://github.com/brasmusson))
|
115
|
+
|
116
|
+
### Improved
|
117
|
+
|
118
|
+
* 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))
|
119
|
+
|
120
|
+
## [3.1.2](https://github.com/cucumber/cucumber-ruby/compare/v3.1.1...v3.1.2) (2018-07-13)
|
121
|
+
|
122
|
+
### Changed
|
123
|
+
|
124
|
+
* Upgraded to `cucumber-core` 3.2.0
|
125
|
+
* Change to use the gherkin step location in the Json formatter.
|
126
|
+
([#1243](https://github.com/cucumber/cucumber-ruby/pull/1243),
|
127
|
+
[#1108](https://github.com/cucumber/cucumber-ruby/issues/1108)
|
128
|
+
[brasmusson](https://github.com/brasmusson))
|
129
|
+
|
130
|
+
### Fixed
|
131
|
+
|
132
|
+
* Support ParameterType with empty capture group.
|
133
|
+
([#404](https://github.com/cucumber/cucumber/issues/404)
|
134
|
+
[aslakhellesoy](https://github.com/aslakhellesoy))
|
135
|
+
|
136
|
+
## [3.1.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.0...v3.1.1) (2018-06-03)
|
137
|
+
|
138
|
+
### Added
|
139
|
+
|
140
|
+
* N/A
|
141
|
+
|
142
|
+
### Changed
|
143
|
+
|
144
|
+
* Add Rubocop to default Rake task ([#1256](https://github.com/cucumber/cucumber-ruby/pull/1256) [@jaysonesmith](https://github.com/jaysonesmith))
|
145
|
+
* Upgraded `cucumber-expressions` dependency to ~> 6.0.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
146
|
+
* Upgraded to `gherkin` 5.1.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
147
|
+
|
148
|
+
### Deprecated
|
149
|
+
|
150
|
+
* N/A
|
151
|
+
|
152
|
+
### Removed
|
153
|
+
|
154
|
+
* N/A
|
155
|
+
|
156
|
+
### Fixed
|
157
|
+
|
158
|
+
* Make `--fail-fast` play nice with `--retry` ([#1283](https://github.com/cucumber/cucumber-ruby/pull/1283) [@yrral86](https://github.com/yrral86))
|
159
|
+
* 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))
|
160
|
+
* Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
161
|
+
* 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))
|
162
|
+
* 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))
|
163
|
+
|
164
|
+
### Improved
|
165
|
+
|
166
|
+
* N/A
|
167
|
+
|
168
|
+
## [3.1.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.2...v3.1.0) (2017-11-28)
|
169
|
+
|
170
|
+
### Added
|
171
|
+
|
172
|
+
* ParameterType transformer runs in World
|
173
|
+
([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
|
174
|
+
[@aslakhellesoy](https://github.com/aslakhellesoy))
|
175
|
+
|
176
|
+
### Changed
|
177
|
+
|
178
|
+
* Upgraded to `cucumber-expressions` 5.0.4
|
179
|
+
* Upgraded to `cucumber-tag_expressions` 1.1.0
|
180
|
+
* Upgraded to `gherkin` 5.0.0
|
181
|
+
|
182
|
+
### Fixed
|
183
|
+
|
184
|
+
* Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
185
|
+
|
186
|
+
## [3.0.2](https://github.com/cucumber/cucumber-ruby/compare/v3.0.1...v3.0.2) (2017-11-11)
|
187
|
+
|
188
|
+
### Removed
|
189
|
+
|
190
|
+
* Cucumber is no longer tested on Ruby 2.1 and below.
|
191
|
+
|
192
|
+
### Fixed
|
193
|
+
|
194
|
+
* Fix html reporter with more than one embedded screenshot ([#1216](https://github.com/cucumber/cucumber-ruby/pull/1216) [@nonkor](https://github.com/nonkor))
|
195
|
+
* Change test expectation to handle Ruby's unstable sorting ([#1210](https://github.com/cucumber/cucumber-ruby/pull/1210) [@jaysonesmith](https://github.com/jaysonesmith))
|
196
|
+
* 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))
|
197
|
+
* Handle the `--retry` option in profiles ([#1050](https://github.com/cucumber/cucumber-ruby/issues/1050) [@brasmusson](https://github.com/brasmusson))
|
198
|
+
|
199
|
+
## [3.0.1](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0...3.0.1) (2017-09-29)
|
200
|
+
|
201
|
+
### Fixed
|
202
|
+
|
203
|
+
* `ParameterType` can now override `use_for_snippets` and `prefer_for_regexp_match` without throwing an error. ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
204
|
+
* Gemspec has `required_ruby_version = '>= 2.1'` ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
205
|
+
|
206
|
+
## [3.0.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0.pre.2...v3.0.0) (2017-09-27)
|
207
|
+
|
208
|
+
### Changed
|
209
|
+
|
210
|
+
* Regexp capture groups with `(\d+)` are automatically converted to `Integer`
|
211
|
+
* Rename `Step#name` to `#text` ([#1130](https://github.com/cucumber/cucumber-ruby/pull/1130) [@olleolleolle](https://github.com/olleolleolle))
|
212
|
+
* `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)
|
213
|
+
* Nested capture groups are not counted as parameters. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). (@aslakhellesoy)
|
214
|
+
|
215
|
+
### Added
|
216
|
+
|
217
|
+
* Handle selective strict options. ([#1169](https://github.com/cucumber/cucumber-ruby/pull/1169), [#1160](https://github.com/cucumber/cucumber-ruby/issues/1160) @brasmusson)
|
218
|
+
|
219
|
+
### Fixed
|
220
|
+
|
221
|
+
* Use absolute path in IO formatter to prevent `chdir` issues. ([#1111](https://github.com/cucumber/cucumber-ruby/pull/1111/files) @akostadinov)
|
222
|
+
|
223
|
+
* Fix bug in DataTable#symbolic_hashes ([#1200](https://github.com/cucumber/cucumber-ruby/pull/1200) @Ben-Behar)
|
224
|
+
|
225
|
+
* Fix typo in JSON formatter ([#1196](https://github.com/cucumber/cucumber-ruby/pull/1196) @alb-i986)
|
226
|
+
|
227
|
+
* 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)
|
228
|
+
|
229
|
+
### Improved
|
230
|
+
|
231
|
+
* 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))
|
232
|
+
* 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))
|
233
|
+
* Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
|
234
|
+
|
235
|
+
## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2)
|
236
|
+
|
237
|
+
### Breaking changes
|
238
|
+
|
239
|
+
* Remove support for Ruby 1.9.3 ([#993](https://github.com/cucumber/cucumber-ruby/pull/993) @brasmusson)
|
240
|
+
* Remove support for Ruby 2.0.0 ([#1068](https://github.com/cucumber/cucumber-ruby/pull/1068) @mattwynne)
|
241
|
+
|
242
|
+
### New Features
|
243
|
+
|
244
|
+
* Support for Cucumber Expressions ([#1156](https://github.com/cucumber/cucumber-ruby/pull/1156))
|
245
|
+
* Use newlines in the rerun file produces by the rerun formatter ([1162](https://github.com/cucumber/cucumber-ruby/issues/1162) @brasmusson)
|
246
|
+
* 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)
|
247
|
+
* List all not ok scenarios in the summary ([#1158](https://github.com/cucumber/cucumber-ruby/pull/1158) @brasmusson)
|
248
|
+
* Emulate Cucumber-JS's new i18n CLI options ([#1140](https://github.com/cucumber/cucumber-ruby/pull/1140) @aidamanna)
|
249
|
+
* Use the event bus in Cucumber-Ruby-Core ([#973](https://github.com/cucumber/cucumber-ruby/pull/973) @mattwynne)
|
250
|
+
* Add --retry option to retry failed tests as part of the same run ([#920](https://github.com/cucumber/cucumber-ruby/pull/920) @DanaScheider)
|
251
|
+
* Add a summary formatter ([#999](https://github.com/cucumber/cucumber-ruby/pull/999) @mattwynne)
|
252
|
+
* Namespaced World modules ([#1007](https://github.com/cucumber/cucumber-ruby/pull/1007) @nodo)
|
253
|
+
* Add per-formatter CLI options ([#1058](https://github.com/cucumber/cucumber-ruby/pull/1058) @nodo)
|
254
|
+
* Use tag expressions for tag filtering ([#1054](https://github.com/cucumber/cucumber-ruby/pull/1054) @brasmusson)
|
255
|
+
* Add a `TestRunStarting` event ([#1082](https://github.com/cucumber/cucumber-ruby/pull/1082) @mattwynne)
|
256
|
+
|
257
|
+
### Bugfixes
|
258
|
+
|
259
|
+
* Fix the profile loader on Windows ([#1133](https://github.com/cucumber/cucumber-ruby/pulls/1133) @enkessler)
|
260
|
+
* Fix incorrect `DataTable#diff!` results ([#1102](https://github.com/cucumber/cucumber-ruby/pulls/1102) @botandrose)
|
261
|
+
* 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)
|
262
|
+
* 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))
|
263
|
+
* 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))
|
264
|
+
* Fix regression displaying CLI help ([#991](https://github.com/cucumber/cucumber-ruby/pull/991) @mattwynne)
|
265
|
+
* with_filtered_backtrace called on Test::Result::Unknown with strange feature file ([#967](https://github.com/cucumber/cucumber-ruby/issues/967) @danascheider)
|
266
|
+
* fix HTML formatter backtrace duplicate line bug ([#965](https://gthub.com/cucumber/cucumber-ruby/pull/965) @josephks)
|
267
|
+
* Update env names correctly ([#1067](https://github.com/cucumber/cucumber-ruby/pull/1067) @junaruga)
|
268
|
+
* Relax filter for "/usr/local/ruby-X.Y.Z/bin/bundle" ([#1079](https://github.com/cucumber/cucumber-ruby/pull/1079) @junaruga)
|
269
|
+
* Avoid showing "@ rb_sysopen" noise for Ruby 2.4 ([#1080](https://github.com/cucumber/cucumber-ruby/pull/1080) @junaruga)
|
270
|
+
|
271
|
+
### Refactoring / Developer Experience
|
272
|
+
|
273
|
+
* Spec: Events.registry exercised ([#1126](https://github.com/cucumber/cucumber-ruby/pulls/1126) @olleolleolle)
|
274
|
+
* Remove programming language abstraction ([#1131](https://github.com/cucumber/cucumber-ruby/pulls/1131) @tooky, @mattwynne)
|
275
|
+
* Update cucumber yaml to use new tag syntax ([#1147](https://github.com/cucumber/cucumber-ruby/pulls/1147) @danascheider)
|
276
|
+
* Turn off Windows failures ([#1142](https://github.com/cucumber/cucumber-ruby/pulls/1142) @enkessler)
|
277
|
+
* Add script to update history.md ([#1141](https://github.com/cucumber/cucumber-ruby/pulls/1141) @mattwynne)
|
278
|
+
* Update Ruby 2.3 and 2.4 in .travis.yml ([#1100](https://github.com/cucumber/cucumber-ruby/pull/1100) @junaruga)
|
279
|
+
* Fixes for rubocop violations ([#1095](https://github.com/cucumber/cucumber-ruby/pull/1095) @bv)
|
280
|
+
* Fixes for rubocop violations ([#1042](https://github.com/cucumber/cucumber-ruby/pull/1042) @phoebeclarke)
|
281
|
+
* Add frozen string literal magic comment to files and fix issues it causes ([#996](https://github.com/cucumber/cucumber-ruby/pull/996) @twalpole)
|
282
|
+
* Several tests failing with rbenv ([#1017](https://github.com/cucumber/cucumber-ruby/issues/1017) @nodo)
|
283
|
+
* Add rubocop to check the style of the codebase ([1014](https://github.com/cucumber/cucumber-ruby/issues/1014) @nodo)
|
284
|
+
* Fix the rubocop violation 'Lint/AmbiguousRegexpLiteral' ([1025](https://github.com/cucumber/cucumber-ruby/pull/1025) @pmatsinopoulos)
|
285
|
+
* Fix rubocop violations ([#1024](https://github.com/cucumber/cucumber-ruby/pull/1024) @madundead)
|
286
|
+
* Fix style violations ([#1023](https://github.com/cucumber/cucumber-ruby/pull/1023) @nodo)
|
287
|
+
* fix Lint/UselessAssignment ([1029](https://github.com/cucumber/cucumber-ruby/pull/1029) @hotovson)
|
288
|
+
* fix Lint/EndAlignment ([#1032](https://github.com/cucumber/cucumber-ruby/pull/1032) @hotovson)
|
289
|
+
* fix Lint/NonLocalExitFromIterator ([#1037](https://github.com/cucumber/cucumber-ruby/pull/1037) @hotovson)
|
290
|
+
* fix Lint/UselessAccessModifier ([#1036](https://github.com/cucumber/cucumber-ruby/pull/1036) @hotovson)
|
291
|
+
* Refs #1021 - Fixes the rubocop violation 'Style/StringLiterals' ([#1027](https://github.com/cucumber/cucumber-ruby/pull/1027) @pmatsinopoulos)
|
292
|
+
* Fixes rubocop violation Lint/StringConversionInInterpolation ([#1038](https://github.com/cucumber/cucumber-ruby/pull/1038) @hotovson)
|
293
|
+
* Fixes rubocop violation Style/FormatString ([#1040](https://github.com/cucumber/cucumber-ruby/pull/1040) @pmatsinopoulos)
|
294
|
+
* Don't check temporary files by rubocop ([#1034](https://github.com/cucumber/cucumber-ruby/pull/1034) @hotovson)
|
295
|
+
* fix Lint/NestedMethodDefinition ([#1035](https://github.com/cucumber/cucumber-ruby/pull/1035) @hotovson)
|
296
|
+
* fix Lint/UnusedArgument ([#1033](https://github.com/cucumber/cucumber-ruby/pull/1033) @hotovson)
|
297
|
+
* Fixes rubocop violation Performance/StringReplacement ([#1039](https://github.com/cucumber/cucumber-ruby/pull/1039) @pmatsinopoulos)
|
298
|
+
* Fix an json compile error for "bundle install" on Ruby 2.4 ([#1069](https://github.com/cucumber/cucumber-ruby/pull/1069) @junaruga)
|
299
|
+
* Add Ruby 2.4.0 as allow_failures in .travis.yml ([#1078](https://github.com/cucumber/cucumber-ruby/pull/1078) @junaruga)
|
300
|
+
* Add ruby-head as a allow failures in .travis.yml ([#1087](https://github.com/cucumber/cucumber-ruby/pull/1087) @junaruga)
|
301
|
+
* Refactoring for Rakefile to display cucumber task by "rake -T". ([#1088](https://github.com/cucumber/cucumber-ruby/pull/1088) @junaruga)
|
302
|
+
* Fix some rubocop offenses ([#1093](https://github.com/cucumber/cucumber-ruby/pull/1093) @bv)
|
303
|
+
* Add supported platforms to README.md. ([#1092](https://github.com/cucumber/cucumber-ruby/pull/1092) @junaruga)
|
304
|
+
* Remove Ruby 2.4 from allow_failures in .travis.yml. ([#1099](https://github.com/cucumber/cucumber-ruby/pull/1099) @junaruga)
|
305
|
+
* History: change bad character to space ([#1104](https://github.com/cucumber/cucumber-ruby/pull/1104) @olleolleolle)
|
306
|
+
* Travis: jruby-9.1.8.0 in CI ([#1105](https://github.com/cucumber/cucumber-ruby/pull/1105) @olleolleolle)
|
307
|
+
* Fix rubocop offenses 1021 003 ([#1107](https://github.com/cucumber/cucumber-ruby/pull/1107) @bv)
|
308
|
+
* Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
|
309
|
+
* 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)
|
310
|
+
|
311
|
+
## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0)
|
312
|
+
|
313
|
+
### New Features
|
314
|
+
|
315
|
+
* Update to Gherkin v4.0 (@brasmusson)
|
316
|
+
|
317
|
+
### Bugfixes
|
318
|
+
|
319
|
+
* Use HTTPS instead of Git as transport protocol ([#960](https://github.com/cucumber/cucumber-ruby/pull/960))
|
320
|
+
* 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))
|
321
|
+
* Run scenarios in fully random order ([#970](https://github.com/cucumber/cucumber-ruby/pull/970) @threedaymonk)
|
322
|
+
* Adding Test Step in AfterStep hook. ([#931](https://github.com/cucumber/cucumber-ruby/pull/931) @t-morgan)
|
323
|
+
* Handle even more exotic rerun file formats seen in the wild ([#928](https://github.com/cucumber/cucumber-ruby/pull/928) @mcrmfc)
|
324
|
+
* Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
|
325
|
+
* Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
|
326
|
+
|
327
|
+
## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3)
|
328
|
+
|
329
|
+
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.
|
330
|
+
|
331
|
+
### Bugfixes
|
332
|
+
|
333
|
+
* Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
|
334
|
+
* 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)
|
335
|
+
|
336
|
+
## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2)
|
337
|
+
|
338
|
+
Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
|
339
|
+
|
340
|
+
## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1)
|
341
|
+
|
342
|
+
Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
|
343
|
+
|
344
|
+
## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0)
|
2
345
|
|
3
346
|
### New Features
|
4
347
|
|
5
|
-
*
|
348
|
+
* Update to Gherkin v3.2.0 (@brasmusson)
|
349
|
+
|
350
|
+
### Bugfixes
|
351
|
+
|
352
|
+
### Refactoring
|
353
|
+
|
354
|
+
## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0)
|
355
|
+
|
356
|
+
Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
|
357
|
+
could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
|
358
|
+
|
359
|
+
### Bugfixes
|
360
|
+
|
361
|
+
* 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)
|
362
|
+
* Fix Configuration.with_options merge direction ([#922](https://github.com/cucumber/cucumber-ruby/pull/922) @limhoff-r7)
|
363
|
+
* Consistent line breaks / truncation in backtraces ([#941](https://github.com/cucumber/cucumber-ruby/pull/941) @tooky)
|
364
|
+
* Fix extra arg passed to ensure_io ([#939](https://github.com/cucumber/cucumber-ruby/pull/939A @benshan)
|
365
|
+
|
366
|
+
### Refactoring
|
367
|
+
|
368
|
+
* Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
|
369
|
+
* Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
|
370
|
+
|
371
|
+
## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0)
|
372
|
+
|
373
|
+
### New Features
|
374
|
+
|
375
|
+
* Introduce EventBus ([903](https://github.com/cucumber/cucumber-ruby/pull/903) @mattwynne @tooky)
|
376
|
+
* Fail-fast CLI switch ([906](https://github.com/cucumber/cucumber-ruby/pull/906) @danascheider)
|
377
|
+
|
378
|
+
### Bugfixes
|
379
|
+
|
380
|
+
* 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).
|
381
|
+
|
382
|
+
### Refactoring
|
383
|
+
|
384
|
+
* Coveralls badge switch to SVG ([897](https://github.com/cucumber/cucumber-ruby/pull/897) @nickmerwin)
|
385
|
+
* Moved simplecov_setup into lib folder ([896](https://github.com/cucumber/cucumber-ruby/pull/896) @tboerger)
|
386
|
+
* Pass DocString as String ([891](https://github.com/cucumber/cucumber-ruby/pull/891) @aslakhellesoy)
|
387
|
+
* Remove core_ext/proc.rb and use Proc#source_location instead ([888](https://github.com/cucumber/cucumber-ruby/pull/888) @brasmusson)
|
388
|
+
* Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
|
389
|
+
* Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
|
390
|
+
|
391
|
+
## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2)
|
392
|
+
|
393
|
+
### Bugfixes
|
394
|
+
|
395
|
+
* 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).
|
396
|
+
* Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
|
397
|
+
|
398
|
+
## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
|
399
|
+
|
400
|
+
### New Features
|
401
|
+
|
402
|
+
* Properly support symbol keys in table hashes ([840](https://github.com/cucumber/cucumber-ruby/issues/840) @dmorgan3405)
|
403
|
+
* Default require path to features unless specified explicitly. ([842](https://github.com/cucumber/cucumber-ruby/issues/842) @pdswan)
|
404
|
+
* 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)
|
405
|
+
* Expose #status on Cucumber::RunningTestCase ([#836](https://github.com/cucumber/cucumber-ruby/pull/846) [#836](https://github.com/cucumber/cucumber-ruby/issues/836) @pdswan)
|
406
|
+
* New `--no-duration` flag on command-line ([#822](https://github.com/cucumber/cucumber-ruby/pull/822) @richarda)
|
407
|
+
* Make the Rerun Formatter consistent with the exit code ([860](https://github.com/cucumber/cucumber-ruby/pull/860) @brasmusson)
|
408
|
+
* 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)
|
409
|
+
|
410
|
+
### Bugfixes
|
411
|
+
|
412
|
+
* Pass tags and comments to the legacy api formatters correctly, fixes [864](https://github.com/cucumber/cucumber-ruby/pull/864) (@brasmusson).
|
413
|
+
* 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)
|
414
|
+
* Make the HTML formatter handle failures in hooks ([835](https://github.com/cucumber/cucumber-ruby/issues/835) @brasmusson)
|
415
|
+
* Fix the check for multiple formatters using stdout ([826](https://github.com/cucumber/cucumber-ruby/pull/826) @brasmusson)
|
416
|
+
* Make background.feature available to formatters (backward compatibility with v1.3.x) (@brasmusson)
|
417
|
+
* Cucumber::Ast::Table.diff! is broken when using no headers ([832](https://github.com/cucumber/cucumber-ruby/pull/832) @roschaefer)
|
418
|
+
* `cucumber --i18n <invalid_language>` breaks ([#869](https://github.com/cucumber/cucumber-ruby/issues/869) (@danascheider)
|
419
|
+
|
420
|
+
### Refactoring
|
421
|
+
|
422
|
+
* Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
|
423
|
+
* Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
|
424
|
+
|
425
|
+
## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
|
426
|
+
|
427
|
+
### New Features
|
428
|
+
|
429
|
+
* Support ruby 2.2 in master (@mattwynne, @tooky)
|
430
|
+
* Tell users to use the `--init` command ([818](https://github.com/cucumber/cucumber-ruby/pull/818) @olleolleolle)
|
431
|
+
|
432
|
+
### Bugfixes
|
433
|
+
|
434
|
+
* Ensure After Hooks execute in reverse order (@tooky)
|
435
|
+
* Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
|
436
|
+
|
437
|
+
## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
|
438
|
+
|
439
|
+
### New Features
|
440
|
+
|
441
|
+
* Add `--init` command ([699](https://github.com/cucumber/cucumber-ruby/pull/699) @LGordon2)
|
6
442
|
|
7
443
|
## Bugfixes
|
8
444
|
|
9
|
-
* Let the JUnitFormatter handle Scenario Outlines with the --expand option ([124](https://github.com/cucumber/cucumber/issues/124), [808](https://github.com/cucumber/cucumber/pull/808) @brasmusson, @richarda)
|
10
|
-
* Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber/pull/663) @rwz)
|
11
|
-
* Pass when using both the --dry-run and the --strict options, unless there are undefined steps ([810](https://github.com/cucumber/cucumber/issues/810) @brasmusson)
|
12
|
-
* Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber/issues/806) @brasmusson)
|
13
|
-
* Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber/issues/693) @mattwynne)
|
14
|
-
* Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber/pull/814) @brasmusson)
|
15
|
-
* JUnit expand option ([808](https://github.com/cucumber/cucumber/pull/808) @richarda @brasmusson)
|
16
|
-
* Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber/pull/807) @tooky)
|
445
|
+
* 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)
|
446
|
+
* Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber-ruby/pull/663) @rwz)
|
447
|
+
* 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)
|
448
|
+
* Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber-ruby/issues/806) @brasmusson)
|
449
|
+
* Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber-ruby/issues/693) @mattwynne)
|
450
|
+
* Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber-ruby/pull/814) @brasmusson)
|
451
|
+
* JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
|
452
|
+
* Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
|
17
453
|
|
18
|
-
## [
|
454
|
+
## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
|
19
455
|
|
20
456
|
### Features
|
21
457
|
|
22
|
-
* [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
|
458
|
+
* [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
|
23
459
|
|
24
460
|
### Bugfixes
|
25
461
|
|
26
462
|
* Fix missing `require Forwardable` (@tooky)
|
27
|
-
* Fix snippet suggestions ([765](https://github.com/cucumber/cucumber/pull/765) @richarda), also with i18n languages (@brasmusson)
|
28
|
-
* Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber/pull/796) @bolshakov)
|
29
|
-
* Sort scenarios by location ([789](https://github.com/cucumber/cucumber/issues/789) @mattwynne)
|
30
|
-
* Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber/issues/768) @richarda, @akostadinov)
|
463
|
+
* Fix snippet suggestions ([765](https://github.com/cucumber/cucumber-ruby/pull/765) @richarda), also with i18n languages (@brasmusson)
|
464
|
+
* Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber-ruby/pull/796) @bolshakov)
|
465
|
+
* Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
|
466
|
+
* Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
|
31
467
|
|
32
|
-
## [
|
468
|
+
## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
|
33
469
|
|
34
470
|
### Bugfixes
|
35
471
|
|
36
472
|
* MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
|
37
473
|
|
38
|
-
## [
|
474
|
+
## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
|
39
475
|
|
40
476
|
### Bugfixes
|
41
477
|
|
42
478
|
* World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
|
43
479
|
|
44
|
-
## [
|
480
|
+
## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
|
45
481
|
|
46
482
|
### Removed Features
|
47
|
-
|
483
|
+
|
48
484
|
* Removed support for IronRuby (@tooky @mattwynne)
|
49
485
|
|
50
486
|
### New Features
|
51
487
|
|
52
|
-
* Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber/pull/697) @idstein, @brasmusson)
|
53
|
-
* Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber/pull/755) @snowe2010)
|
54
|
-
* Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber/pull/760) @tooky)
|
488
|
+
* Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber-ruby/pull/697) @idstein, @brasmusson)
|
489
|
+
* Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber-ruby/pull/755) @snowe2010)
|
490
|
+
* Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber-ruby/pull/760) @tooky)
|
55
491
|
|
56
492
|
### Bugfixes
|
57
493
|
|
58
494
|
* Add old Scenario#skip_invoke! method back (@mattwynne)
|
59
|
-
* No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber/pull/548) @bilus)
|
60
|
-
* Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber/pull/786) @jdks)
|
61
|
-
* Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber/pull/793) @callahat)
|
495
|
+
* No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber-ruby/pull/548) @bilus)
|
496
|
+
* Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
|
497
|
+
* Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
|
62
498
|
|
63
|
-
## [
|
499
|
+
## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
|
64
500
|
|
65
501
|
* Depend on the correct version of core (@tooky)
|
66
502
|
|
67
|
-
## [
|
503
|
+
## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
|
68
504
|
### New Features
|
69
505
|
|
70
506
|
* Support both new and legacy formatter APIs simultaneously (@mattwynne and @tooky)
|
71
507
|
|
72
508
|
### Bugfixes
|
73
509
|
|
74
|
-
* Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber/pull/766) @brasmusson)
|
75
|
-
* Handle hook output appropriately in the HTML formatter ([746](https://github.com/cucumber/cucumber/pull/746), [731](https://github.com/cucumber/cucumber/issues/731), [298](https://github.com/cucumber/cucumber/pull/298) @brasmusson)
|
76
|
-
* Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber/pull/738) @brasmusson)
|
510
|
+
* Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber-ruby/pull/766) @brasmusson)
|
511
|
+
* 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)
|
512
|
+
* Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber-ruby/pull/738) @brasmusson)
|
77
513
|
|
78
514
|
### Internal changes
|
79
515
|
|
80
516
|
* Re-write rerun formatter against new formatter API
|
81
517
|
|
82
|
-
## [
|
518
|
+
## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
|
83
519
|
|
84
520
|
### Removed Features
|
85
521
|
|
@@ -87,29 +523,29 @@
|
|
87
523
|
|
88
524
|
### New Features
|
89
525
|
|
90
|
-
* Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber/pull/730) @brasmusson)
|
91
|
-
* Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber/pull/728) [Erran Carey](https://github.com/erran))
|
92
|
-
* Support embedding images directly in HTML and JSON reports ([696](https://github.com/cucumber/cucumber/pull/696),[695](https://github.com/cucumber/cucumber/pull/695/files) @brasmusson)
|
526
|
+
* Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber-ruby/pull/730) @brasmusson)
|
527
|
+
* Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber-ruby/pull/728) [Erran Carey](https://github.com/erran))
|
528
|
+
* 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)
|
93
529
|
|
94
530
|
### Bugfixes
|
95
531
|
|
96
|
-
* Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber/pull/732) @brasmusson)
|
532
|
+
* Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber-ruby/pull/732) @brasmusson)
|
97
533
|
* Added tests for, and re-added behaviour to support Scenario#failed? in hooks (Matt Wynne)
|
98
|
-
* Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber/pull/690) @awls99)
|
99
|
-
* Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber/pull/729) @mattwynne and @tooky)
|
100
|
-
* Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber/issues/739) @os97673)
|
534
|
+
* Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber-ruby/pull/690) @awls99)
|
535
|
+
* Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
|
536
|
+
* Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
|
101
537
|
|
102
|
-
## [
|
538
|
+
## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
|
103
539
|
|
104
540
|
### Bugfixes
|
105
541
|
|
106
|
-
* Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber/pull/723) @mattwynne)
|
542
|
+
* Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
|
107
543
|
* Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
|
108
544
|
|
109
|
-
## [
|
545
|
+
## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
|
110
546
|
|
111
547
|
Version 2.0 contains a major internal redesign, extracting the core logic of
|
112
|
-
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-core).
|
548
|
+
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
|
113
549
|
|
114
550
|
Although we've tried to keep the API and behaviour consistent through this change,
|
115
551
|
there are bound to be differences our tests haven't picked up. We're still working through
|
@@ -118,10 +554,10 @@ all.
|
|
118
554
|
|
119
555
|
### New features
|
120
556
|
|
121
|
-
* Better snippet comment ([579](https://github.com/cucumber/cucumber/pull/579) Jeff Nyman)
|
557
|
+
* Better snippet comment ([579](https://github.com/cucumber/cucumber-ruby/pull/579) Jeff Nyman)
|
122
558
|
* Random scenario ordering with `--order random`
|
123
|
-
* Embed plain text ([712](https://github.com/cucumber/cucumber/pull/712) @bingwei)
|
124
|
-
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber/pull/700) @brasmusson)
|
559
|
+
* Embed plain text ([712](https://github.com/cucumber/cucumber-ruby/pull/712) @bingwei)
|
560
|
+
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber-ruby/pull/700) @brasmusson)
|
125
561
|
|
126
562
|
### Features removed
|
127
563
|
|
@@ -139,229 +575,229 @@ all.
|
|
139
575
|
|
140
576
|
### Minor changes
|
141
577
|
|
142
|
-
* Greek examples added ([497](https://github.com/cucumber/cucumber/issues/497) @rousisk)
|
578
|
+
* Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
|
143
579
|
|
144
|
-
## [
|
580
|
+
## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
|
145
581
|
|
146
|
-
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber/pull/701) @brasmusson)
|
147
|
-
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber/pull/689) @cyphactor)
|
148
|
-
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber/pull/710) @brasmusson)
|
582
|
+
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
|
583
|
+
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
|
584
|
+
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
|
149
585
|
|
150
|
-
## [
|
586
|
+
## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
|
151
587
|
|
152
588
|
* Fixed intermittent ConcurrencyError seen in JRuby
|
153
|
-
([671](https://github.com/cucumber/cucumber/issues/670) @cbusbey)
|
589
|
+
([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
|
154
590
|
|
155
|
-
## [
|
591
|
+
## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
|
156
592
|
|
157
593
|
* Rerun formatter includes all scenarios when the background fails
|
158
|
-
([660](https://github.com/cucumber/cucumber/issues/660),
|
159
|
-
[661](https://github.com/cucumber/cucumber/pull/661) @brasmusson)
|
594
|
+
([660](https://github.com/cucumber/cucumber-ruby/issues/660),
|
595
|
+
[661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
|
160
596
|
|
161
|
-
## [
|
597
|
+
## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
|
162
598
|
|
163
599
|
* Rerun formatter includes all scenarios when the background fails
|
164
|
-
([654](https://github.com/cucumber/cucumber/pull/654) @brasmusson)
|
600
|
+
([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
|
165
601
|
|
166
|
-
## [
|
602
|
+
## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
|
167
603
|
|
168
604
|
* Use MultiTest to handle assertions library selection (@tooky)
|
169
605
|
* Adds full support for rails 4.1 / Minitest
|
170
606
|
|
171
|
-
## [
|
607
|
+
## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
|
172
608
|
|
173
|
-
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber/pull/644) @tooky, @chrismdp)
|
609
|
+
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
|
174
610
|
|
175
|
-
## [
|
611
|
+
## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
|
176
612
|
|
177
|
-
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber/pull/599) @jmcaffee)
|
613
|
+
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
|
178
614
|
|
179
|
-
## [
|
615
|
+
## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
|
180
616
|
|
181
617
|
* Disable minitest autorun after loading support files (@tooky)
|
182
618
|
* Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
|
183
619
|
* Remove deprecation warnings on `Ast::Table` (@tooky)
|
184
|
-
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber/pull/587) @jshraibman-mdsol)
|
620
|
+
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
|
185
621
|
|
186
|
-
## [
|
622
|
+
## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
|
187
623
|
|
188
624
|
* Make the MultiJson dependency less restrictive (@tooky)
|
189
625
|
|
190
|
-
## [1.3.7](https://github.com/cucumber/cucumber/compare/v1.3.6...v1.3.7)
|
626
|
+
## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
|
191
627
|
|
192
628
|
* Fixed incorrect html formatter behaviour when background step fails
|
193
|
-
([520](https://github.com/cucumber/cucumber/issues/520),
|
194
|
-
[521](https://github.com/cucumber/cucumber/issues/521) @mlex)
|
629
|
+
([520](https://github.com/cucumber/cucumber-ruby/issues/520),
|
630
|
+
[521](https://github.com/cucumber/cucumber-ruby/issues/521) @mlex)
|
195
631
|
|
196
632
|
* Fixed problem with printing badly formatted backtrace for failed background
|
197
|
-
([522](https://github.com/cucumber/cucumber/issues/522),
|
198
|
-
[523](https://github.com/cucumber/cucumber/issues/523) @mlex)
|
633
|
+
([522](https://github.com/cucumber/cucumber-ruby/issues/522),
|
634
|
+
[523](https://github.com/cucumber/cucumber-ruby/issues/523) @mlex)
|
199
635
|
|
200
636
|
* required Gherkin version bumped to 2.12.1
|
201
637
|
|
202
638
|
* All mutating methods of AST::Table deprecated
|
203
|
-
([505](https://github.com/cucumber/cucumber/issues/505),
|
204
|
-
[525](https://github.com/cucumber/cucumber/issues/525) @adbatista)
|
639
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/505),
|
640
|
+
[525](https://github.com/cucumber/cucumber-ruby/issues/525) @adbatista)
|
205
641
|
|
206
642
|
* AST::Table#map_headers doesn't use #map_headers! anymore
|
207
|
-
([505](https://github.com/cucumber/cucumber/issues/528) @adbatista)
|
643
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
|
208
644
|
|
209
|
-
## [1.3.6](https://github.com/cucumber/cucumber/compare/v1.3.5...v1.3.6)
|
645
|
+
## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
|
210
646
|
|
211
647
|
* Html formatter fixed to not mark passes scenarios with tables as pending
|
212
|
-
([493](https://github.com/cucumber/cucumber/issues/493) Oleg Sukhodolsky)
|
648
|
+
([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
|
213
649
|
|
214
|
-
## [1.3.5](https://github.com/cucumber/cucumber/compare/v1.3.4...v1.3.5)
|
650
|
+
## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
|
215
651
|
|
216
|
-
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber/issues/501) @mattwynne)
|
652
|
+
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
|
217
653
|
|
218
|
-
## [1.3.4](https://github.com/cucumber/cucumber/compare/v1.3.3...v1.3.4)
|
654
|
+
## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
|
219
655
|
|
220
|
-
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber/issues/496) @ambirag)
|
656
|
+
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
|
221
657
|
|
222
|
-
## [1.3.3](https://github.com/cucumber/cucumber/compare/v1.3.2...v1.3.3)
|
658
|
+
## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
|
223
659
|
|
224
|
-
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber/issues/456) Matt Wynne)
|
660
|
+
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
|
225
661
|
* Warn that Spork support is broken (Steve Tooke)
|
226
662
|
* Fix error with Ruby 2.0.0 and `Cucumber::RUBY_1_8_7`
|
227
|
-
([#492](https://github.com/cucumber/cucumber/issues/492) Matt Wynne)
|
228
|
-
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber/issues/448) Matt Wynne)
|
663
|
+
([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
|
664
|
+
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
|
229
665
|
|
230
|
-
## [1.3.2](https://github.com/cucumber/cucumber/compare/v1.3.1...v1.3.2)
|
666
|
+
## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
|
231
667
|
|
232
668
|
### Bugfixes
|
233
669
|
* Fixed ugly NoMethodError when a Scenario Outline has no Examples
|
234
|
-
([#438](https://github.com/cucumber/cucumber/issues/438) Steve Tooke)
|
670
|
+
([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
|
235
671
|
|
236
|
-
## [1.3.1](https://github.com/cucumber/cucumber/compare/v1.3.0...v1.3.1)
|
672
|
+
## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
|
237
673
|
|
238
674
|
### Bugfixes
|
239
675
|
* Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
|
240
676
|
|
241
|
-
## [1.3.0](https://github.com/cucumber/cucumber/compare/v1.2.5...v1.3.0)
|
677
|
+
## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
|
242
678
|
|
243
679
|
### New Features
|
244
680
|
* Faster features, thanks to in-process Aruba. (Aslak Hellesøy)
|
245
681
|
* Add lib to default load path
|
246
|
-
([#162](https://github.com/cucumber/cucumber/issues/162) Steve Tooke)
|
682
|
+
([#162](https://github.com/cucumber/cucumber-ruby/issues/162) Steve Tooke)
|
247
683
|
* Add snippet type to support different type of ruby snippets.
|
248
|
-
([#390](https://github.com/cucumber/cucumber/pull/390) Roel van Dijk)
|
249
|
-
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber/pull/433) Tomohiko Himura)
|
684
|
+
([#390](https://github.com/cucumber/cucumber-ruby/pull/390) Roel van Dijk)
|
685
|
+
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber-ruby/pull/433) Tomohiko Himura)
|
250
686
|
|
251
687
|
### Bugfixes
|
252
|
-
* Update watir example ([#427](https://github.com/cucumber/cucumber/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
253
|
-
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber/issues/416)) Steve Tooke
|
254
|
-
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber/issues/400) Andrey Vakarev
|
688
|
+
* Update watir example ([#427](https://github.com/cucumber/cucumber-ruby/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
689
|
+
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber-ruby/issues/416)) Steve Tooke
|
690
|
+
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber-ruby/issues/400) Andrey Vakarev
|
255
691
|
* Show details of nested steps in backtraces
|
256
|
-
([#69](https://github.com/cucumber/cucumber/issues/69)) Steve Tooke
|
692
|
+
([#69](https://github.com/cucumber/cucumber-ruby/issues/69)) Steve Tooke
|
257
693
|
* Filter out control characters from CDATA section of JUnit formatter output.
|
258
|
-
([#383](https://github.com/cucumber/cucumber/issues/383) @teacup-on-rockingchair)
|
694
|
+
([#383](https://github.com/cucumber/cucumber-ruby/issues/383) @teacup-on-rockingchair)
|
259
695
|
* Fix problem with non-ascii characters in file path
|
260
|
-
([#150](https://github.com/cucumber/cucumber/issues/150) Oleg Sukhodolsky)
|
696
|
+
([#150](https://github.com/cucumber/cucumber-ruby/issues/150) Oleg Sukhodolsky)
|
261
697
|
* Fix problem loading ruby files in project root directory
|
262
|
-
([#269](https://github.com/cucumber/cucumber/issues/269) Steve Tooke)
|
698
|
+
([#269](https://github.com/cucumber/cucumber-ruby/issues/269) Steve Tooke)
|
263
699
|
* Fix JsonPretty formatter problem
|
264
|
-
([#197](https://github.com/cucumber/cucumber/issues/197) Oleg Sukhodolsky)
|
700
|
+
([#197](https://github.com/cucumber/cucumber-ruby/issues/197) Oleg Sukhodolsky)
|
265
701
|
* Don't display multi-line strings when --no-multiline is passed
|
266
|
-
([#201](https://github.com/cucumber/cucumber/issues/201) David Kowis)
|
702
|
+
([#201](https://github.com/cucumber/cucumber-ruby/issues/201) David Kowis)
|
267
703
|
* Moved the profile information output to a callback of the formatter
|
268
|
-
([#175](https://github.com/cucumber/cucumber/issues/175) David Kowis)
|
704
|
+
([#175](https://github.com/cucumber/cucumber-ruby/issues/175) David Kowis)
|
269
705
|
* Fix html formatter to not mark skipped/unimplemented steps as failed
|
270
|
-
([#337](https://github.com/cucumber/cucumber/issues/337) Oleg Sukhodolsky)
|
706
|
+
([#337](https://github.com/cucumber/cucumber-ruby/issues/337) Oleg Sukhodolsky)
|
271
707
|
* Allow duplication for format+output pair in command line
|
272
|
-
([#434](https://github.com/cucumber/cucumber/issues/434) David Lantos)
|
708
|
+
([#434](https://github.com/cucumber/cucumber-ruby/issues/434) David Lantos)
|
273
709
|
* Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
|
274
|
-
([#312](https://github.com/cucumber/cucumber/issues/312) Oleg Sukhodolsky)
|
710
|
+
([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
|
275
711
|
|
276
|
-
## [1.2.5](https://github.com/cucumber/cucumber/compare/v1.2.3...v1.2.5)
|
712
|
+
## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
|
277
713
|
|
278
|
-
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber/issues/393) Oleg Sukhodolsky)
|
279
|
-
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber/issues/420) Oleg Sukhodolsky)
|
714
|
+
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
|
715
|
+
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
|
280
716
|
|
281
|
-
##
|
717
|
+
## 1.2.4
|
282
718
|
|
283
|
-
Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
719
|
+
Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
284
720
|
|
285
|
-
## [1.2.3](https://github.com/cucumber/cucumber/compare/v1.2.2...v1.2.3)
|
721
|
+
## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
|
286
722
|
|
287
723
|
### Bugfixes
|
288
|
-
* 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)
|
289
|
-
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber/issues/315) Oleg Sukhodolsky)
|
724
|
+
* 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)
|
725
|
+
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
|
290
726
|
|
291
|
-
## [1.2.2](https://github.com/cucumber/cucumber/compare/v1.2.1...v1.2.2)
|
727
|
+
## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
|
292
728
|
|
293
729
|
### New Features
|
294
|
-
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber/issues/357) @charliesome)
|
295
|
-
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber/issues/329) Rick Beyer)
|
730
|
+
* 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)
|
731
|
+
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber-ruby/issues/329) Rick Beyer)
|
296
732
|
* Added support for Hindi (hi), although some systems may need to install fonts which support the Devanagari script.
|
297
|
-
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber/issues/324) Eric Hodel)
|
733
|
+
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber-ruby/issues/324) Eric Hodel)
|
298
734
|
|
299
735
|
### Bugfixes
|
300
|
-
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber/issues/345), [#346](https://github.com/cucumber/cucumber/issues/346) @ksylvest)
|
301
|
-
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber/issues/299) @aaronjensen)
|
302
|
-
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber/issues/275) @chrisbloom7 / Matt Wynne)
|
303
|
-
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber/issues/284) Oleg Sukhodolsky)
|
304
|
-
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber/issues/348) @rdammkoehler)
|
305
|
-
* 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)
|
306
|
-
* 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)
|
307
|
-
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber/issues/336) Roberto Decurnex)
|
308
|
-
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber/issues/220))
|
736
|
+
* 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)
|
737
|
+
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber-ruby/issues/299) @aaronjensen)
|
738
|
+
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber-ruby/issues/275) @chrisbloom7 / Matt Wynne)
|
739
|
+
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber-ruby/issues/284) Oleg Sukhodolsky)
|
740
|
+
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber-ruby/issues/348) @rdammkoehler)
|
741
|
+
* 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)
|
742
|
+
* 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)
|
743
|
+
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
|
744
|
+
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
|
309
745
|
|
310
|
-
## [1.2.1](https://github.com/cucumber/cucumber/compare/v1.2.0...v1.2.1)
|
746
|
+
## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
|
311
747
|
|
312
748
|
### New Features
|
313
749
|
* Updated to gherkin 2.11.0. (Aslak Hellesøy)
|
314
750
|
|
315
|
-
## [1.2.0](https://github.com/cucumber/cucumber/compare/v1.1.9...v1.2.0)
|
751
|
+
## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
|
316
752
|
|
317
753
|
### Bugfixes
|
318
|
-
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber/issues/266) Andrew Kiellor)
|
754
|
+
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber-ruby/issues/266) Andrew Kiellor)
|
319
755
|
|
320
756
|
### New Features
|
321
|
-
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber/issues/241) Matt Wynne)
|
322
|
-
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber/issues/43) Joe Fiorini)
|
323
|
-
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber/issues/168) Giles Alexander)
|
324
|
-
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber/issues/181) Roman Chernyatchik)
|
325
|
-
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber/issues/182) Niklas H)
|
326
|
-
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber/issues/237) meyering)
|
327
|
-
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber/issues/252) Chase Stubblefield)
|
328
|
-
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber/issues/212) Steve Richert)
|
329
|
-
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber/issues/193) @litvinok)
|
330
|
-
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber/issues/259) R. Tyler Croy)
|
757
|
+
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber-ruby/issues/241) Matt Wynne)
|
758
|
+
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber-ruby/issues/43) Joe Fiorini)
|
759
|
+
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber-ruby/issues/168) Giles Alexander)
|
760
|
+
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber-ruby/issues/181) Roman Chernyatchik)
|
761
|
+
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber-ruby/issues/182) Niklas H)
|
762
|
+
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber-ruby/issues/237) meyering)
|
763
|
+
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber-ruby/issues/252) Chase Stubblefield)
|
764
|
+
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber-ruby/issues/212) Steve Richert)
|
765
|
+
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
|
766
|
+
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
|
331
767
|
|
332
|
-
## [1.1.9](https://github.com/cucumber/cucumber/compare/v1.1.8...v1.1.9)
|
768
|
+
## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
|
333
769
|
|
334
770
|
### Bugfixes
|
335
771
|
* Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
|
336
772
|
|
337
|
-
## [1.1.8](https://github.com/cucumber/cucumber/compare/v1.1.7...v1.1.8)
|
773
|
+
## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
|
338
774
|
|
339
775
|
### Bugfixes
|
340
|
-
* 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)
|
776
|
+
* 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)
|
341
777
|
|
342
778
|
### New Features
|
343
|
-
* 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)
|
779
|
+
* 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)
|
344
780
|
|
345
|
-
## [1.1.7](https://github.com/cucumber/cucumber/compare/v1.1.6...v1.1.7)
|
781
|
+
## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
|
346
782
|
|
347
783
|
### Bugfixes
|
348
784
|
|
349
|
-
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber/pull/229) Cezary Baginski)
|
785
|
+
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
|
350
786
|
|
351
|
-
## [1.1.6](https://github.com/cucumber/cucumber/compare/v1.1.5...v1.1.6)
|
787
|
+
## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
|
352
788
|
|
353
789
|
### New features
|
354
790
|
|
355
|
-
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber/pull/214) MOROHASHI Kyosuke)
|
791
|
+
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber-ruby/pull/214) MOROHASHI Kyosuke)
|
356
792
|
|
357
793
|
### Bugfixes
|
358
794
|
|
359
795
|
* Release 1.1.5 unintentionally broke backwards compatibility in some APIs we hadn't considered were used outside of cucumber.
|
360
796
|
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)
|
361
797
|
* After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
|
362
|
-
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)
|
798
|
+
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)
|
363
799
|
|
364
|
-
## [1.1.5](https://github.com/cucumber/cucumber/compare/v1.1.4...v1.1.5)
|
800
|
+
## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
|
365
801
|
|
366
802
|
### New Features
|
367
803
|
|
@@ -369,29 +805,29 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
369
805
|
|
370
806
|
### Bugfixes
|
371
807
|
|
372
|
-
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber/issues/205) tcwitte)
|
808
|
+
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
|
373
809
|
|
374
|
-
## [1.1.4](https://github.com/cucumber/cucumber/compare/v1.1.3...v1.1.4)
|
810
|
+
## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
|
375
811
|
|
376
812
|
### New Features
|
377
813
|
|
378
814
|
* Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
|
379
815
|
|
380
|
-
## [1.1.3](https://github.com/cucumber/cucumber/compare/v1.1.2...v1.1.3)
|
816
|
+
## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
|
381
817
|
|
382
818
|
### New Features
|
383
819
|
|
384
820
|
* Generate stepdef metadata with --dotcucumber. Useful for Cukepatch. (Aslak Hellesøy)
|
385
|
-
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber/pull/159) Jari Bakken)
|
386
|
-
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber/pull/163) Richard Lawrence)
|
821
|
+
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber-ruby/pull/159) Jari Bakken)
|
822
|
+
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber-ruby/pull/163) Richard Lawrence)
|
387
823
|
|
388
824
|
### Bugfixes
|
389
825
|
|
390
|
-
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber/pull/178) leachdaniel)
|
391
|
-
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber/pull/172) Charles Finkel)
|
392
|
-
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber/issues/57) Jan Brauer)
|
826
|
+
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber-ruby/pull/178) leachdaniel)
|
827
|
+
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
|
828
|
+
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
|
393
829
|
|
394
|
-
## [1.1.2](https://github.com/cucumber/cucumber/compare/v1.1.1...v1.1.2)
|
830
|
+
## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
|
395
831
|
|
396
832
|
### Changed features
|
397
833
|
|
@@ -399,7 +835,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
399
835
|
|
400
836
|
### Changed features
|
401
837
|
|
402
|
-
* Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber/issues/68) Matt Wynne)
|
838
|
+
* 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)
|
403
839
|
* The JSON formatter output has changed slightly. Old format:
|
404
840
|
|
405
841
|
{
|
@@ -412,44 +848,44 @@ New format:
|
|
412
848
|
|
413
849
|
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.
|
414
850
|
|
415
|
-
## [1.1.0](https://github.com/cucumber/cucumber/compare/v1.0.6...v1.1.0)
|
851
|
+
## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
|
416
852
|
|
417
853
|
### Changed features
|
418
854
|
* The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) (Aslak Hellesøy)
|
419
855
|
|
420
|
-
## [1.0.6](https://github.com/cucumber/cucumber/compare/v1.0.5...v1.0.6)
|
856
|
+
## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
|
421
857
|
|
422
858
|
### Bugfixes
|
423
|
-
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
859
|
+
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
424
860
|
|
425
|
-
## [1.0.5](https://github.com/cucumber/cucumber/compare/v1.0.4...v1.0.5)
|
861
|
+
## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
|
426
862
|
|
427
863
|
### Bugfixes
|
428
864
|
|
429
|
-
* 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)
|
865
|
+
* 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)
|
430
866
|
|
431
|
-
## [1.0.4](https://github.com/cucumber/cucumber/compare/v1.0.3...v1.0.4)
|
867
|
+
## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
|
432
868
|
|
433
869
|
### Bugfixes
|
434
870
|
|
435
|
-
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber/pull/93) Christopher Meiklejohn)
|
436
|
-
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber/issues/117) Roman Chernyatchik)
|
437
|
-
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber/pull/106) Thomas Walpole)
|
871
|
+
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber-ruby/pull/93) Christopher Meiklejohn)
|
872
|
+
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber-ruby/issues/117) Roman Chernyatchik)
|
873
|
+
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber-ruby/pull/106) Thomas Walpole)
|
438
874
|
* Patched unmatched message in HTML formatter. (Nikita)
|
439
875
|
* Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
|
440
876
|
|
441
|
-
## [1.0.3](https://github.com/cucumber/cucumber/compare/v1.0.2...v1.0.3)
|
877
|
+
## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
|
442
878
|
|
443
879
|
### Bugfixes
|
444
|
-
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber/pull/126) Jonathan Tron)
|
880
|
+
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber-ruby/pull/126) Jonathan Tron)
|
445
881
|
|
446
882
|
### New Features
|
447
|
-
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber/issues/132) Matt Wynne)
|
883
|
+
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
|
448
884
|
|
449
|
-
## [1.0.2](https://github.com/cucumber/cucumber/compare/v1.0.1...v1.0.2)
|
885
|
+
## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
|
450
886
|
|
451
887
|
### Bugfixes
|
452
|
-
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber/issues/104) Aslak Hellesøy)
|
888
|
+
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber-ruby/issues/104) Aslak Hellesøy)
|
453
889
|
|
454
890
|
### New Features
|
455
891
|
* Better line truncation if $CUCUMBER_TRUNCATE_OUTPUT has a max line length value. (Aslak Hellesøy)
|
@@ -457,19 +893,19 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
457
893
|
### Changes Features
|
458
894
|
* --no-source also excludes location from the summary. (Aslak Hellesøy)
|
459
895
|
|
460
|
-
## [1.0.1](https://github.com/cucumber/cucumber/compare/v1.0.0...v1.0.1)
|
896
|
+
## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
|
461
897
|
|
462
898
|
### Bugfixes
|
463
|
-
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber/pull/99) Juan Manuel Barreneche)
|
464
|
-
* 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)
|
465
|
-
* 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)
|
466
|
-
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber/pull/95) Nikita)
|
467
|
-
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber/issues/58) Aslak Hellesøy)
|
899
|
+
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber-ruby/pull/99) Juan Manuel Barreneche)
|
900
|
+
* 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)
|
901
|
+
* 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)
|
902
|
+
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber-ruby/pull/95) Nikita)
|
903
|
+
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber-ruby/issues/58) Aslak Hellesøy)
|
468
904
|
|
469
905
|
### New Features
|
470
906
|
* If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
|
471
907
|
|
472
|
-
## [1.0.0](https://github.com/cucumber/cucumber/compare/v0.10.6...v1.0.0)
|
908
|
+
## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
|
473
909
|
|
474
910
|
Yipeeeeeeeee!
|
475
911
|
|
@@ -478,7 +914,7 @@ Yipeeeeeeeee!
|
|
478
914
|
* Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
|
479
915
|
* Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
|
480
916
|
|
481
|
-
## [0.10.6](https://github.com/cucumber/cucumber/compare/v0.10.5...v0.10.6)
|
917
|
+
## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
|
482
918
|
|
483
919
|
### New Features
|
484
920
|
* API docs at http://cukes.info/cucumber/api/ruby/latest/
|
@@ -486,7 +922,7 @@ Yipeeeeeeeee!
|
|
486
922
|
### Bugfixes
|
487
923
|
* Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
|
488
924
|
|
489
|
-
## [0.10.5](https://github.com/cucumber/cucumber/compare/v0.10.3...v0.10.5)
|
925
|
+
## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
|
490
926
|
|
491
927
|
(0.10.4 was forgotten!)
|
492
928
|
|
@@ -501,7 +937,7 @@ Yipeeeeeeeee!
|
|
501
937
|
* Fix for Gem.available? deprecation warning (#75 Jake Benilov)
|
502
938
|
* Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
|
503
939
|
|
504
|
-
## [0.10.3](https://github.com/cucumber/cucumber/compare/v0.10.2...v0.10.3)
|
940
|
+
## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
|
505
941
|
|
506
942
|
### New Features
|
507
943
|
* Better JUnit formatter support for sub directories and scenario outlines (#59 Matt Simpson)
|
@@ -510,12 +946,12 @@ Yipeeeeeeeee!
|
|
510
946
|
* Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
|
511
947
|
* JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
|
512
948
|
|
513
|
-
## [0.10.2](https://github.com/cucumber/cucumber/compare/v0.10.1...v0.10.2)
|
949
|
+
## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
|
514
950
|
|
515
951
|
### Bugfixes
|
516
952
|
* Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
|
517
953
|
|
518
|
-
## [0.10.1](https://github.com/cucumber/cucumber/compare/v0.10.0...v0.10.1)
|
954
|
+
## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
|
519
955
|
|
520
956
|
### New Features
|
521
957
|
* The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon)
|
@@ -535,7 +971,7 @@ Yipeeeeeeeee!
|
|
535
971
|
* Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
|
536
972
|
* Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
|
537
973
|
|
538
|
-
## [0.10.0](https://github.com/cucumber/cucumber/compare/v0.9.4...v0.10.0)
|
974
|
+
## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
|
539
975
|
|
540
976
|
We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
|
541
977
|
This should not affect users. The major new feature in this release is ANSICON support for Windows users.
|
@@ -551,7 +987,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
551
987
|
### Changed Features
|
552
988
|
* JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
553
989
|
|
554
|
-
## [0.9.4](https://github.com/cucumber/cucumber/compare/v0.9.3...v0.9.4)
|
990
|
+
## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
|
555
991
|
|
556
992
|
### Bugfixes
|
557
993
|
* Superfluous space after step_keyword value in snippet_text message (#679 Aslak Hellesøy)
|
@@ -560,7 +996,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
560
996
|
* Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
|
561
997
|
* Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
|
562
998
|
|
563
|
-
## [0.9.3](https://github.com/cucumber/cucumber/compare/v0.9.2...v0.9.3)
|
999
|
+
## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
|
564
1000
|
|
565
1001
|
### Bugfixes
|
566
1002
|
* Better JSON representation of Regexps (Aslak Hellesøy)
|
@@ -568,17 +1004,17 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
568
1004
|
* Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
|
569
1005
|
* Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
|
570
1006
|
|
571
|
-
## [0.9.2](https://github.com/cucumber/cucumber/compare/v0.9.1...v0.9.2)
|
1007
|
+
## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
|
572
1008
|
|
573
1009
|
### Bugfixes
|
574
1010
|
* Too many open files - getcwd (#666 Aslak Hellesøy)
|
575
1011
|
|
576
|
-
## [0.9.1](https://github.com/cucumber/cucumber/compare/v0.9.0...v0.9.1)
|
1012
|
+
## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
|
577
1013
|
|
578
1014
|
### Bugfixes
|
579
1015
|
* Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
|
580
1016
|
|
581
|
-
## [0.9.0](https://github.com/cucumber/cucumber/compare/v0.8.5...v0.9.0)
|
1017
|
+
## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
|
582
1018
|
|
583
1019
|
Maintenance release for the new release of Gherkin 2.2.3.
|
584
1020
|
|
@@ -596,13 +1032,13 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
596
1032
|
### Internal changes
|
597
1033
|
* Big refactoring of StepMother (Matt Wynne)
|
598
1034
|
|
599
|
-
## [0.8.5](https://github.com/cucumber/cucumber/compare/v0.8.4...v0.8.5)
|
1035
|
+
## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
|
600
1036
|
|
601
1037
|
### Bugfixes
|
602
1038
|
* Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
|
603
1039
|
* Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
|
604
1040
|
|
605
|
-
## [0.8.4](https://github.com/cucumber/cucumber/compare/v0.8.3...v0.8.4)
|
1041
|
+
## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
|
606
1042
|
|
607
1043
|
### Bugfixes
|
608
1044
|
* Fix "Errno::EADDRNOTAVAIL" errors that may be received with spork on Snow Leopard. (Lucas Mundim)
|
@@ -611,14 +1047,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
611
1047
|
* Detect limit for negative tags (#636 Aslak Hellesøy)
|
612
1048
|
* Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
|
613
1049
|
|
614
|
-
## [0.8.3](https://github.com/cucumber/cucumber/compare/v0.8.2...v0.8.3)
|
1050
|
+
## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
|
615
1051
|
|
616
1052
|
Just a quick bugfix release.
|
617
1053
|
|
618
1054
|
### Bugfixes
|
619
1055
|
* Scenario outlines that fail with exception exit process (Aslak Hellesøy)
|
620
1056
|
|
621
|
-
## [0.8.2](https://github.com/cucumber/cucumber/compare/v0.8.1...v0.8.2)
|
1057
|
+
## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
|
622
1058
|
|
623
1059
|
Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
624
1060
|
|
@@ -631,7 +1067,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
631
1067
|
### New Features
|
632
1068
|
* JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
|
633
1069
|
|
634
|
-
## [0.8.1](https://github.com/cucumber/cucumber/compare/v0.8.0...v0.8.1)
|
1070
|
+
## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
|
635
1071
|
|
636
1072
|
### Bufixes
|
637
1073
|
* generate test report fails: ast/outline_table.rb fails in status() (#615 Aslak Hellesøy)
|
@@ -639,7 +1075,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
639
1075
|
### New Features
|
640
1076
|
* Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
|
641
1077
|
|
642
|
-
## [0.8.0](https://github.com/cucumber/cucumber/compare/v0.7.3...v0.8.0)
|
1078
|
+
## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
|
643
1079
|
|
644
1080
|
### Bugfixes
|
645
1081
|
* Require profile option causes a NoMethodError for Cucumber with JRuby (#601 John Firebaugh)
|
@@ -658,18 +1094,18 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
658
1094
|
* Ruby snippets will use "([^"]*)" instead of "([^\"]*)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
|
659
1095
|
* Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
|
660
1096
|
|
661
|
-
## [0.7.3](https://github.com/cucumber/cucumber/compare/v0.7.2...v0.7.3)
|
1097
|
+
## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
|
662
1098
|
|
663
1099
|
### New Features
|
664
1100
|
* Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
|
665
1101
|
* Added support for Around hooks. (#605 John Firebaugh)
|
666
1102
|
|
667
|
-
## [0.7.2](https://github.com/cucumber/cucumber/compare/v0.7.1...v0.7.2)
|
1103
|
+
## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
|
668
1104
|
|
669
1105
|
### Bugfixes
|
670
1106
|
* REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
671
1107
|
|
672
|
-
## [0.7.1](https://github.com/cucumber/cucumber/compare/v0.7.0...v0.7.1)
|
1108
|
+
## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
|
673
1109
|
|
674
1110
|
### Bugfixes
|
675
1111
|
* Add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
@@ -677,29 +1113,29 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
677
1113
|
### Changed Features
|
678
1114
|
* Ruby and Javascript snippets will use "([^"]*)" instead of "([^\"]*)"$/ (Aslak Hellesøy)
|
679
1115
|
|
680
|
-
## [0.7.0](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.8...v0.7.0)
|
1116
|
+
## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
|
681
1117
|
|
682
1118
|
This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
|
683
1119
|
files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
|
684
1120
|
instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
685
1121
|
|
686
|
-
## [0.7.0.beta.8](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
1122
|
+
## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
687
1123
|
|
688
1124
|
### Bugfixes
|
689
1125
|
* Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
|
690
1126
|
* Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
|
691
1127
|
|
692
|
-
## [0.7.0.beta.7](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
1128
|
+
## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
693
1129
|
|
694
1130
|
### Bugfixes
|
695
1131
|
* 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)
|
696
1132
|
|
697
|
-
## [0.7.0.beta.6](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
1133
|
+
## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
698
1134
|
|
699
1135
|
### Bugfixes
|
700
1136
|
* Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
|
701
1137
|
|
702
|
-
## [0.7.0.beta.5](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
1138
|
+
## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
703
1139
|
|
704
1140
|
### New Features
|
705
1141
|
* Support RSpec 2. (RSpec >= 1.2.4 is still supported). (Aslak Hellesøy, Ryan Bigg)
|
@@ -707,7 +1143,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
707
1143
|
### Removed features
|
708
1144
|
* No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
|
709
1145
|
|
710
|
-
## [0.7.0.beta.4](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
1146
|
+
## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
711
1147
|
|
712
1148
|
### New Features
|
713
1149
|
* New, experimental V8 javascript support - step definitions in Javascript! (Joseph Wilk)
|
@@ -715,17 +1151,17 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
715
1151
|
### Bugfixes
|
716
1152
|
* Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
|
717
1153
|
|
718
|
-
## [0.7.0.beta.3](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
1154
|
+
## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
719
1155
|
|
720
1156
|
### Changed Features
|
721
1157
|
* 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)
|
722
1158
|
|
723
|
-
## [0.7.0.beta.2](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
1159
|
+
## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
724
1160
|
|
725
1161
|
### New Features
|
726
1162
|
* Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
|
727
1163
|
|
728
|
-
## [0.7.0.beta.1](https://github.com/cucumber/cucumber/compare/v0.6.4...v0.7.0.beta.1)
|
1164
|
+
## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
|
729
1165
|
|
730
1166
|
Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
|
731
1167
|
Parse times are up to 100 times faster.
|
@@ -736,7 +1172,7 @@ Parse times are up to 100 times faster.
|
|
736
1172
|
### Changed Features
|
737
1173
|
* New i18n translations now have to be contributed to the gherkin project.
|
738
1174
|
|
739
|
-
## [0.6.4](https://github.com/cucumber/cucumber/compare/v0.6.3...v0.6.4)
|
1175
|
+
## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
|
740
1176
|
|
741
1177
|
### Bugfixes
|
742
1178
|
* Better handling of --guess with optional capture groups (Tim Felgentreff)
|
@@ -757,7 +1193,7 @@ Parse times are up to 100 times faster.
|
|
757
1193
|
* Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
758
1194
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
759
1195
|
|
760
|
-
## [0.6.3](https://github.com/cucumber/cucumber/compare/v0.6.2...v0.6.3)
|
1196
|
+
## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
|
761
1197
|
|
762
1198
|
### Bugfixes
|
763
1199
|
* Split arguments in cucumber.yml with shellwords. Example: myprofile: --out="Features report.html" (Nathaniel Haas)
|
@@ -776,7 +1212,7 @@ Parse times are up to 100 times faster.
|
|
776
1212
|
* Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
|
777
1213
|
* Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
|
778
1214
|
|
779
|
-
## [0.6.2](https://github.com/cucumber/cucumber/compare/v0.6.1...v0.6.2)
|
1215
|
+
## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
|
780
1216
|
|
781
1217
|
### Bugfixes
|
782
1218
|
* Update --help for --tags which was out of date. (Aslak Hellesøy)
|
@@ -793,12 +1229,12 @@ Parse times are up to 100 times faster.
|
|
793
1229
|
### Removed features
|
794
1230
|
* element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
|
795
1231
|
|
796
|
-
## [0.6.1](https://github.com/cucumber/cucumber/compare/v0.6.0...v0.6.1)
|
1232
|
+
## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
|
797
1233
|
|
798
1234
|
### Bugfixes
|
799
1235
|
* Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
|
800
1236
|
|
801
|
-
## [0.6.0](https://github.com/cucumber/cucumber/compare/v0.5.3...v0.6.0)
|
1237
|
+
## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
|
802
1238
|
|
803
1239
|
Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
|
804
1240
|
|
@@ -823,14 +1259,14 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
|
|
823
1259
|
* All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
|
824
1260
|
* Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
|
825
1261
|
|
826
|
-
## [0.5.3](https://github.com/cucumber/cucumber/compare/v0.5.2...v0.5.3)
|
1262
|
+
## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
|
827
1263
|
|
828
1264
|
Another small release today to please a sister project. This time Cuke4Nuke.
|
829
1265
|
|
830
1266
|
### New Features
|
831
1267
|
* Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
|
832
1268
|
|
833
|
-
## [0.5.2](https://github.com/cucumber/cucumber/compare/v0.5.1...v0.5.2)
|
1269
|
+
## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
|
834
1270
|
|
835
1271
|
### New Features
|
836
1272
|
* On JRuby/Cuke4Duke, --require DIR will put DIR on the $CLASSPATH, making it easier to load step def classes (Aslak Hellesøy)
|
@@ -840,14 +1276,14 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
840
1276
|
* Add #embed back to html formatter (#547 Brandon Faloona)
|
841
1277
|
* Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
|
842
1278
|
|
843
|
-
## [0.5.1](https://github.com/cucumber/cucumber/compare/v0.5.0...v0.5.1)
|
1279
|
+
## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
|
844
1280
|
|
845
1281
|
Small bugfix release.
|
846
1282
|
|
847
1283
|
### Bugfixes
|
848
1284
|
* Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
|
849
1285
|
|
850
|
-
## [0.5.0](https://github.com/cucumber/cucumber/compare/v0.4.4...v0.5.0)
|
1286
|
+
## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
|
851
1287
|
|
852
1288
|
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.
|
853
1289
|
Please see History.txt in cucumber-rails for details about what's new on the Rails side.
|
@@ -878,7 +1314,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
878
1314
|
* All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
|
879
1315
|
* --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
|
880
1316
|
|
881
|
-
## [0.4.4](https://github.com/cucumber/cucumber/compare/v0.4.3...v0.4.4)
|
1317
|
+
## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
|
882
1318
|
|
883
1319
|
What a bad day to make a release, but here goes.
|
884
1320
|
|
@@ -903,7 +1339,7 @@ What a bad day to make a release, but here goes.
|
|
903
1339
|
* $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
|
904
1340
|
* Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
|
905
1341
|
|
906
|
-
## [0.4.3](https://github.com/cucumber/cucumber/compare/v0.4.2...v0.4.3)
|
1342
|
+
## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
|
907
1343
|
|
908
1344
|
The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
|
909
1345
|
now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
|
@@ -932,11 +1368,11 @@ As usual there are several small features and bug fixes.
|
|
932
1368
|
* Better Danish translation (Thorbjørn Ravn Andersen)
|
933
1369
|
|
934
1370
|
|
935
|
-
## [0.4.2](https://github.com/cucumber/cucumber/compare/v0.4.1...v0.4.2)
|
1371
|
+
## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
|
936
1372
|
|
937
1373
|
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
938
1374
|
|
939
|
-
## [0.4.1](https://github.com/cucumber/cucumber/compare/v0.4.0...v0.4.1)
|
1375
|
+
## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
|
940
1376
|
|
941
1377
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
942
1378
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
@@ -963,7 +1399,7 @@ development environment.
|
|
963
1399
|
* Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
964
1400
|
* StepDefinitionMethods is gone.
|
965
1401
|
|
966
|
-
## [0.4.0](https://github.com/cucumber/cucumber/compare/v0.3.104...v0.4.0)
|
1402
|
+
## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
|
967
1403
|
|
968
1404
|
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
|
969
1405
|
went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
|
@@ -1010,7 +1446,7 @@ that will give you more information so you can solve any problems. If not, just
|
|
1010
1446
|
* Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
|
1011
1447
|
* String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
|
1012
1448
|
|
1013
|
-
## [0.3.104](https://github.com/cucumber/cucumber/compare/v0.3.103...v0.3.104)
|
1449
|
+
## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
|
1014
1450
|
|
1015
1451
|
This release has some minor changes to the command line and formatters. The biggest change is internally, paving
|
1016
1452
|
the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
|
@@ -1035,7 +1471,7 @@ Groovy, Clojure and Javascript!
|
|
1035
1471
|
* The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
|
1036
1472
|
* The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
|
1037
1473
|
|
1038
|
-
## [0.3.103](https://github.com/cucumber/cucumber/compare/v0.3.102...v0.3.103)
|
1474
|
+
## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
|
1039
1475
|
|
1040
1476
|
This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
|
1041
1477
|
previous release.
|
@@ -1053,7 +1489,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
|
|
1053
1489
|
### Changed Features
|
1054
1490
|
* The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
|
1055
1491
|
|
1056
|
-
## [0.3.102](https://github.com/cucumber/cucumber/compare/v0.3.101...v0.3.102)
|
1492
|
+
## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
|
1057
1493
|
|
1058
1494
|
This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
|
1059
1495
|
Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
|
@@ -1081,7 +1517,7 @@ Other noteworthy new features are improved Hook, tags and Transform support, and
|
|
1081
1517
|
* The Cucumber::Rails.bypass_rescue no longer exists. Errors will always bubble up, unless you use the new @allow_rescue tag. (Aslak Hellesøy)
|
1082
1518
|
* The Cucumber::Rails.use_transactional_fixtures no longer exists. Transactional fixtures are always enabled for the cucumber environment. (Aslak Hellesøy)
|
1083
1519
|
|
1084
|
-
## [0.3.101](https://github.com/cucumber/cucumber/compare/v0.3.100...v0.3.101)
|
1520
|
+
## [0.3.101](https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101)
|
1085
1521
|
|
1086
1522
|
Two exciting things in this release. Step Argument Transforms and a PDF formatter you can use to send
|
1087
1523
|
your features to your customer for review!
|
@@ -1094,7 +1530,7 @@ your features to your customer for review!
|
|
1094
1530
|
* Adding webrat steps for asserting content does or does not exist within a particular element
|
1095
1531
|
(using webrat's within method) (Kieran Pilkington)
|
1096
1532
|
|
1097
|
-
## [0.3.100](https://github.com/cucumber/cucumber/compare/v0.3.99...v0.3.100)
|
1533
|
+
## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
|
1098
1534
|
|
1099
1535
|
The JavaZone release!
|
1100
1536
|
|
@@ -1106,7 +1542,7 @@ The JavaZone release!
|
|
1106
1542
|
* Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
|
1107
1543
|
* When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
|
1108
1544
|
|
1109
|
-
## [0.3.99](https://github.com/cucumber/cucumber/compare/v0.3.98...v0.3.99)
|
1545
|
+
## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
|
1110
1546
|
|
1111
1547
|
### New Features
|
1112
1548
|
* Support for Croatian (Bkrsta)
|
@@ -1115,7 +1551,7 @@ The JavaZone release!
|
|
1115
1551
|
* New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
|
1116
1552
|
* Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
|
1117
1553
|
|
1118
|
-
## [0.3.98](https://github.com/cucumber/cucumber/compare/v0.3.97...v0.3.98)
|
1554
|
+
## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
|
1119
1555
|
|
1120
1556
|
Just a small release to help Cuke4Duke, which will be presented at Agile2009
|
1121
1557
|
in 2 days.
|
@@ -1124,7 +1560,7 @@ in 2 days.
|
|
1124
1560
|
* Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
|
1125
1561
|
* Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
|
1126
1562
|
|
1127
|
-
## [0.3.97](https://github.com/cucumber/cucumber/compare/v0.3.96...v0.3.97)
|
1563
|
+
## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
|
1128
1564
|
|
1129
1565
|
The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
|
1130
1566
|
with the new language API and maybe knock out some better .NET support.
|
@@ -1143,7 +1579,7 @@ with the new language API and maybe knock out some better .NET support.
|
|
1143
1579
|
* Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
|
1144
1580
|
* The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
|
1145
1581
|
|
1146
|
-
## [0.3.96](https://github.com/cucumber/cucumber/compare/v0.3.95...v0.3.96)
|
1582
|
+
## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
|
1147
1583
|
|
1148
1584
|
This release doesn't have any significant new features or bug fixes, but there are big
|
1149
1585
|
internal changes. This release has a new API for plugging in other programming languages.
|
@@ -1162,7 +1598,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
|
|
1162
1598
|
* --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
|
1163
1599
|
* junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
|
1164
1600
|
|
1165
|
-
## [0.3.95](https://github.com/cucumber/cucumber/compare/v0.3.94...v0.3.95)
|
1601
|
+
## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
|
1166
1602
|
|
1167
1603
|
This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
|
1168
1604
|
elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
|
@@ -1189,7 +1625,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
|
|
1189
1625
|
* 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)
|
1190
1626
|
* 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)
|
1191
1627
|
|
1192
|
-
## [0.3.94](https://github.com/cucumber/cucumber/compare/v0.3.93...v0.3.94)
|
1628
|
+
## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
|
1193
1629
|
|
1194
1630
|
Kanban take II.
|
1195
1631
|
|
@@ -1218,7 +1654,7 @@ You'll achieve better flow this way.
|
|
1218
1654
|
* Document builtin formatters with --help. (#406 Aslak Hellesøy)
|
1219
1655
|
* Added support for using regular expressions when mapping table headers. (Peter Williams)
|
1220
1656
|
|
1221
|
-
## [0.3.93](https://github.com/cucumber/cucumber/compare/v0.3.92...v0.3.93)
|
1657
|
+
## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
|
1222
1658
|
|
1223
1659
|
Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
|
1224
1660
|
|
@@ -1233,7 +1669,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
|
|
1233
1669
|
* script/cucumber correctly loads the gem's binary if the plugin isn't installed.
|
1234
1670
|
* Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
|
1235
1671
|
|
1236
|
-
## [0.3.92](https://github.com/cucumber/cucumber/compare/v0.3.91...v0.3.92)
|
1672
|
+
## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
|
1237
1673
|
|
1238
1674
|
This release has some minor improvements to the new Table.diff! functionality. For example,
|
1239
1675
|
if you're using Webrat and you want to compare a feature table with a HTML table containing
|
@@ -1254,7 +1690,7 @@ links in one of the columns, you can do:
|
|
1254
1690
|
### Changed Features
|
1255
1691
|
* The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
|
1256
1692
|
|
1257
|
-
## [0.3.91](https://github.com/cucumber/cucumber/compare/v0.3.90...v0.3.91)
|
1693
|
+
## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
|
1258
1694
|
|
1259
1695
|
### New Features
|
1260
1696
|
* CTRL-C will exit immediately instead of carrying on until all features are run. (Aslak Hellesøy)
|
@@ -1262,7 +1698,7 @@ links in one of the columns, you can do:
|
|
1262
1698
|
* Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
|
1263
1699
|
* Table support for cuke4duke
|
1264
1700
|
|
1265
|
-
## [0.3.90](https://github.com/cucumber/cucumber/compare/v0.3.11...v0.3.90)
|
1701
|
+
## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
|
1266
1702
|
|
1267
1703
|
The Hot summer release
|
1268
1704
|
|
@@ -1363,7 +1799,7 @@ This release also has several bugfixes related to --format and Before/After hook
|
|
1363
1799
|
* The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
|
1364
1800
|
* Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
|
1365
1801
|
|
1366
|
-
## [0.3.11](https://github.com/cucumber/cucumber/compare/v0.3.10...v0.3.11)
|
1802
|
+
## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
|
1367
1803
|
|
1368
1804
|
This release just fixes a tiny bug in the formatter to fix an incompatibility
|
1369
1805
|
with the latest RedMine release. It should have been included in 0.3.10, but
|
@@ -1372,7 +1808,7 @@ was forgotten.
|
|
1372
1808
|
### Bugfixes
|
1373
1809
|
* Formatter API was broken in 0.3.9 (Roman Chernyatchik)
|
1374
1810
|
|
1375
|
-
## [0.3.10](https://github.com/cucumber/cucumber/compare/v0.3.9...v0.3.10)
|
1811
|
+
## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
|
1376
1812
|
|
1377
1813
|
The Spork Release!
|
1378
1814
|
|
@@ -1412,7 +1848,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
|
|
1412
1848
|
### Changed features
|
1413
1849
|
* The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
|
1414
1850
|
|
1415
|
-
## [0.3.9](https://github.com/cucumber/cucumber/compare/v0.3.8...v0.3.9)
|
1851
|
+
## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
|
1416
1852
|
|
1417
1853
|
Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
|
1418
1854
|
generator which is fixed in 0.3.9.
|
@@ -1421,7 +1857,7 @@ generator which is fixed in 0.3.9.
|
|
1421
1857
|
* Fix broken Rails cucumber generator (Tim Glen)
|
1422
1858
|
* The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
|
1423
1859
|
|
1424
|
-
## [0.3.8](https://github.com/cucumber/cucumber/compare/v0.3.7...v0.3.8)
|
1860
|
+
## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
|
1425
1861
|
|
1426
1862
|
This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
|
1427
1863
|
use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
|
@@ -1442,7 +1878,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
|
|
1442
1878
|
* Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
|
1443
1879
|
* The differ= exception is gone (#325, #340 Aslak Hellesøy)
|
1444
1880
|
|
1445
|
-
## [0.3.7](https://github.com/cucumber/cucumber/compare/v0.3.6...v0.3.7)
|
1881
|
+
## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
|
1446
1882
|
|
1447
1883
|
This is the "Help JetBrains RubyMine" release!
|
1448
1884
|
|
@@ -1455,7 +1891,7 @@ This is the "Help JetBrains RubyMine" release!
|
|
1455
1891
|
* 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
|
1456
1892
|
* CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
|
1457
1893
|
|
1458
|
-
## [0.3.6](https://github.com/cucumber/cucumber/compare/v0.3.5...v0.3.6)
|
1894
|
+
## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
|
1459
1895
|
|
1460
1896
|
Kanban! With this release you can tag features or scenarios that are work in progress
|
1461
1897
|
with a tag and use the new --wip switch.
|
@@ -1473,14 +1909,14 @@ Another handy feature in this release is that you can package your own formatter
|
|
1473
1909
|
* Gracefully handle exceptions in After block (#330 Matt Wynne)
|
1474
1910
|
* Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
|
1475
1911
|
|
1476
|
-
## [0.3.5](https://github.com/cucumber/cucumber/compare/v0.3.4...v0.3.5)
|
1912
|
+
## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
|
1477
1913
|
|
1478
1914
|
Let's make a new release today because two annoying bugs are fixed.
|
1479
1915
|
|
1480
1916
|
### Bugfixes
|
1481
1917
|
* Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
|
1482
1918
|
|
1483
|
-
## [0.3.4](https://github.com/cucumber/cucumber/compare/v0.3.3...v0.3.4)
|
1919
|
+
## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
|
1484
1920
|
|
1485
1921
|
A couple of great new features in this release. Running with Rake is faster than before,
|
1486
1922
|
and there is a brand new JUnit formatter - great for Continuous Integration reports!
|
@@ -1524,7 +1960,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
|
|
1524
1960
|
unless explicitly told to fork a new interpreter. This is to increase speed. You can
|
1525
1961
|
force a new interpreter by setting fork=true or rcov=true in the task.
|
1526
1962
|
|
1527
|
-
## [0.3.3](https://github.com/cucumber/cucumber/compare/v0.3.2...v0.3.3)
|
1963
|
+
## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
|
1528
1964
|
|
1529
1965
|
Minor bugfix release, made specially for EuRuKo!
|
1530
1966
|
|
@@ -1536,7 +1972,7 @@ Minor bugfix release, made specially for EuRuKo!
|
|
1536
1972
|
### Removed/changed features
|
1537
1973
|
* New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
|
1538
1974
|
|
1539
|
-
## [0.3.2](https://github.com/cucumber/cucumber/compare/v0.3.1...v0.3.2)
|
1975
|
+
## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
|
1540
1976
|
|
1541
1977
|
This release has some minor bug fixes and new features.
|
1542
1978
|
Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
@@ -1552,7 +1988,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
|
1552
1988
|
* Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
|
1553
1989
|
* Added support for Examples selection when using --name. (#295 Joseph Wilk)
|
1554
1990
|
|
1555
|
-
## [0.3.1](https://github.com/cucumber/cucumber/compare/v0.3.0...v0.3.1)
|
1991
|
+
## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
|
1556
1992
|
|
1557
1993
|
This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
|
1558
1994
|
now supports 32(!!) languages.
|
@@ -1577,7 +2013,7 @@ now supports 32(!!) languages.
|
|
1577
2013
|
### Removed/changed features
|
1578
2014
|
* --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
|
1579
2015
|
|
1580
|
-
## [0.3.0](https://github.com/cucumber/cucumber/compare/v0.2.3...v0.3.0)
|
2016
|
+
## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
|
1581
2017
|
|
1582
2018
|
This release has some minor changes to the APIs, but big enough that a new major release is in order.
|
1583
2019
|
The biggest change is the new semantics of the #World method. Previously you would call this method
|
@@ -1632,7 +2068,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
|
|
1632
2068
|
* Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
|
1633
2069
|
* \#visit_py_string no longer takes a status argument.
|
1634
2070
|
|
1635
|
-
## [0.2.3](https://github.com/cucumber/cucumber/compare/v0.2.2...v0.2.3)
|
2071
|
+
## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
|
1636
2072
|
|
1637
2073
|
This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
|
1638
2074
|
in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
|
@@ -1652,7 +2088,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
|
|
1652
2088
|
* Fixed step name after step keyword without space (#265 Aslak Hellesøy)
|
1653
2089
|
* Backtrace is back in HTML reports (Aslak Hellesøy)
|
1654
2090
|
|
1655
|
-
## [0.2.2](https://github.com/cucumber/cucumber/compare/v0.2.1...v0.2.2)
|
2091
|
+
## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
|
1656
2092
|
|
1657
2093
|
This release includes some minor changes to make Cucumber work with pure Java. Cucumber
|
1658
2094
|
has already worked with Java for a while (using JRuby and step definitions in Ruby),
|
@@ -1661,7 +2097,7 @@ but now you can write step definitions in pure Java!
|
|
1661
2097
|
Check out the Cucumber Java project for more details:
|
1662
2098
|
http://github.com/aslakhellesoy/cucumber_java/tree/master
|
1663
2099
|
|
1664
|
-
## [0.2.1](https://github.com/cucumber/cucumber/compare/v0.2.0...v0.2.1)
|
2100
|
+
## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
|
1665
2101
|
|
1666
2102
|
This release fixes a few minor bugs and adds a couple of new features.
|
1667
2103
|
|
@@ -1680,7 +2116,7 @@ This release fixes a few minor bugs and adds a couple of new features.
|
|
1680
2116
|
### Removed features
|
1681
2117
|
* -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
|
1682
2118
|
|
1683
|
-
## [0.2.0](https://github.com/cucumber/cucumber/compare/v0.1.16...v0.2.0)
|
2119
|
+
## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
|
1684
2120
|
|
1685
2121
|
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
1686
2122
|
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
@@ -1785,7 +2221,7 @@ to this:
|
|
1785
2221
|
* Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
1786
2222
|
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
1787
2223
|
|
1788
|
-
## [0.1.16](https://github.com/cucumber/cucumber/compare/v0.1.15...v0.1.16)
|
2224
|
+
## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
|
1789
2225
|
|
1790
2226
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
1791
2227
|
upgrade both Cucumber and Webrat gems.
|
@@ -1801,7 +2237,7 @@ upgrade both Cucumber and Webrat gems.
|
|
1801
2237
|
|
1802
2238
|
### Removed features
|
1803
2239
|
|
1804
|
-
## [0.1.15](https://github.com/cucumber/cucumber/compare/v0.1.14...v0.1.15)
|
2240
|
+
## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
|
1805
2241
|
|
1806
2242
|
Bugfix release
|
1807
2243
|
|
@@ -1814,7 +2250,7 @@ Bugfix release
|
|
1814
2250
|
* Better quoting of Scenario names in Autotest (Peter Jaros)
|
1815
2251
|
* Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
|
1816
2252
|
|
1817
|
-
## [0.1.14](https://github.com/cucumber/cucumber/compare/v0.1.13...v0.1.14)
|
2253
|
+
## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
|
1818
2254
|
|
1819
2255
|
This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
|
1820
2256
|
with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
|
@@ -1831,7 +2267,7 @@ a couple of minor bug fixes and polishing.
|
|
1831
2267
|
### Removed features
|
1832
2268
|
* The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
|
1833
2269
|
|
1834
|
-
## [0.1.13](https://github.com/cucumber/cucumber/compare/v0.1.12...v0.1.13)
|
2270
|
+
## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
|
1835
2271
|
|
1836
2272
|
It's time for some new features again. Output is now much better since you can use diffing, tweak
|
1837
2273
|
the output colours and get the full --backtrace if you want. Managing your support/* files became
|
@@ -1866,7 +2302,7 @@ Enjoy!
|
|
1866
2302
|
|
1867
2303
|
### Removed features
|
1868
2304
|
|
1869
|
-
## [0.1.12](https://github.com/cucumber/cucumber/compare/v0.1.11...v0.1.12)
|
2305
|
+
## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
|
1870
2306
|
|
1871
2307
|
This is the "getting serious with IronRuby release" - largely based on
|
1872
2308
|
"Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
|
@@ -1881,7 +2317,7 @@ blog entry.
|
|
1881
2317
|
### Removed features
|
1882
2318
|
None
|
1883
2319
|
|
1884
|
-
## [0.1.11](https://github.com/cucumber/cucumber/compare/v0.1.10...v0.1.11)
|
2320
|
+
## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
|
1885
2321
|
|
1886
2322
|
Bugfix release with a couple of minor additional features to the command line options.
|
1887
2323
|
|
@@ -1899,7 +2335,7 @@ Bugfix release with a couple of minor additional features to the command line op
|
|
1899
2335
|
### Removed features
|
1900
2336
|
* The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
|
1901
2337
|
|
1902
|
-
## [0.1.10](https://github.com/cucumber/cucumber/compare/v0.1.9...v0.1.10)
|
2338
|
+
## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
|
1903
2339
|
|
1904
2340
|
This release mostly has smaller bugfixes. The most significant new feature is how
|
1905
2341
|
line numbers are specified. You can now run multiple features at specific lines numbers like this:
|
@@ -1929,7 +2365,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
|
|
1929
2365
|
* Step definition without a block being treated as pending (#64 Joseph Wilk)
|
1930
2366
|
* The --line option has been removed. Use the new file.feature:line format instead.
|
1931
2367
|
|
1932
|
-
## [0.1.9](https://github.com/cucumber/cucumber/compare/v0.1.8...v0.1.9)
|
2368
|
+
## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
|
1933
2369
|
|
1934
2370
|
With this release Cucumber supports 19 (!) natural languages:
|
1935
2371
|
|
@@ -2012,7 +2448,7 @@ spaces removed too.
|
|
2012
2448
|
### Removed features
|
2013
2449
|
|
2014
2450
|
|
2015
|
-
## [0.1.8](https://github.com/cucumber/cucumber/compare/v0.1.7...v0.1.8)
|
2451
|
+
## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
|
2016
2452
|
|
2017
2453
|
This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
|
2018
2454
|
In previous releases it has been possible to use tables to define "more examples" of a scenario in
|
@@ -2095,7 +2531,7 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
2095
2531
|
|
2096
2532
|
* Added new --out option to make it easier to specify output from Rake and cucumber.yml
|
2097
2533
|
|
2098
|
-
## [0.1.7](https://github.com/cucumber/cucumber/compare/v0.1.6...v0.1.7)
|
2534
|
+
## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
|
2099
2535
|
|
2100
2536
|
This release fixes a few bugs and adds some new features. The most notable features are:
|
2101
2537
|
|
@@ -2150,6 +2586,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
|
|
2150
2586
|
* Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
|
2151
2587
|
* Added more Webrat steps (#25, Tim Glen)
|
2152
2588
|
|
2153
|
-
## [0.1.6](https://github.com/cucumber/cucumber/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2589
|
+
## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2154
2590
|
|
2155
2591
|
First gem release!
|