├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── dependabot.yml ├── release.yml └── workflows │ ├── changelog.yml │ ├── release.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .rubocop.yml ├── .ruby-version ├── .simplecov ├── .solargraph.yml ├── .yardopts ├── ALLURE_VERSION ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── allure-cucumber ├── README.md ├── Rakefile ├── allure-cucumber.gemspec ├── lib │ ├── allure-cucumber.rb │ └── allure_cucumber │ │ ├── config.rb │ │ ├── formatter.rb │ │ └── models │ │ ├── cucumber_model.rb │ │ ├── metadata_parser.rb │ │ ├── scenario.rb │ │ └── step.rb └── spec │ ├── cucumber_helper.rb │ ├── spec_helper.rb │ └── unit │ ├── allure_cucumber_spec.rb │ ├── formatter_test_case_started_spec.rb │ ├── formatter_test_case_stopped_spec.rb │ ├── formatter_test_run_finished_spec.rb │ ├── formatter_test_run_started_spec.rb │ ├── formatter_test_step_started_spec.rb │ └── formatter_test_step_stopped_spec.rb ├── allure-rspec ├── README.md ├── Rakefile ├── allure-rspec.gemspec ├── lib │ ├── allure-rspec.rb │ └── allure_rspec │ │ ├── _utils.rb │ │ ├── config.rb │ │ ├── formatter.rb │ │ ├── metadata_parser.rb │ │ └── suite_labels.rb └── spec │ ├── rspec_runner_helper.rb │ ├── spec_helper.rb │ └── unit │ ├── allure_rspec_spec.rb │ ├── formatter_add_step_spec.rb │ ├── formatter_example_finished_spec.rb │ ├── formatter_example_group_finished_spec.rb │ ├── formatter_example_group_started_spec.rb │ ├── formatter_example_started_spec.rb │ ├── formatter_start_spec.rb │ └── formatter_stop_spec.rb ├── allure-ruby-commons ├── README.md ├── Rakefile ├── allure-ruby-commons.gemspec ├── lib │ ├── allure-ruby-commons.rb │ └── allure_ruby_commons │ │ ├── _json_helper.rb │ │ ├── allure_lifecycle.rb │ │ ├── config.rb │ │ ├── file_writer.rb │ │ ├── model │ │ ├── 01_jsonable.rb │ │ ├── attachment.rb │ │ ├── category.rb │ │ ├── content_type.rb │ │ ├── executable_item.rb │ │ ├── fixture_result.rb │ │ ├── label.rb │ │ ├── link.rb │ │ ├── parameter.rb │ │ ├── stage.rb │ │ ├── status.rb │ │ ├── status_details.rb │ │ ├── step_result.rb │ │ ├── test_result.rb │ │ └── test_result_container.rb │ │ ├── result_utils.rb │ │ ├── step_annotation.rb │ │ └── testplan.rb └── spec │ ├── allure-results │ ├── categories.json │ └── environment.properties │ ├── fixtures │ ├── blank.xlsx │ ├── categories.json │ ├── ruby-logo.png │ └── test_plan │ │ ├── correct │ │ └── testplan.json │ │ └── malformed │ │ └── testplan.json │ ├── spec_helper.rb │ └── unit │ ├── allure_spec.rb │ ├── attachment_spec.rb │ ├── file_writer_spec.rb │ ├── lifecycle_spec.rb │ ├── result_utils_spec.rb │ ├── step_annotation_spec.rb │ ├── test_fixture_spec.rb │ ├── test_result_container_spec.rb │ ├── test_result_spec.rb │ ├── test_step_spec.rb │ └── testplan_spec.rb ├── lib ├── task_helpers │ ├── simplecov_merger.rb │ └── util.rb └── tasks │ ├── release.rake │ ├── test.rake │ └── version.rake └── mise.toml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @andrcuns 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.simplecov -------------------------------------------------------------------------------- /.solargraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.solargraph.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /ALLURE_VERSION: -------------------------------------------------------------------------------- 1 | 2.27.0 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /allure-cucumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/README.md -------------------------------------------------------------------------------- /allure-cucumber/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/Rakefile -------------------------------------------------------------------------------- /allure-cucumber/allure-cucumber.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/allure-cucumber.gemspec -------------------------------------------------------------------------------- /allure-cucumber/lib/allure-cucumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure-cucumber.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/config.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/formatter.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/models/cucumber_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/models/cucumber_model.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/models/metadata_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/models/metadata_parser.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/models/scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/models/scenario.rb -------------------------------------------------------------------------------- /allure-cucumber/lib/allure_cucumber/models/step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/lib/allure_cucumber/models/step.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/cucumber_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/cucumber_helper.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/spec_helper.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/allure_cucumber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/allure_cucumber_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_case_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_case_started_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_case_stopped_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_case_stopped_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_run_finished_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_run_finished_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_run_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_run_started_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_step_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_step_started_spec.rb -------------------------------------------------------------------------------- /allure-cucumber/spec/unit/formatter_test_step_stopped_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-cucumber/spec/unit/formatter_test_step_stopped_spec.rb -------------------------------------------------------------------------------- /allure-rspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/README.md -------------------------------------------------------------------------------- /allure-rspec/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/Rakefile -------------------------------------------------------------------------------- /allure-rspec/allure-rspec.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/allure-rspec.gemspec -------------------------------------------------------------------------------- /allure-rspec/lib/allure-rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure-rspec.rb -------------------------------------------------------------------------------- /allure-rspec/lib/allure_rspec/_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure_rspec/_utils.rb -------------------------------------------------------------------------------- /allure-rspec/lib/allure_rspec/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure_rspec/config.rb -------------------------------------------------------------------------------- /allure-rspec/lib/allure_rspec/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure_rspec/formatter.rb -------------------------------------------------------------------------------- /allure-rspec/lib/allure_rspec/metadata_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure_rspec/metadata_parser.rb -------------------------------------------------------------------------------- /allure-rspec/lib/allure_rspec/suite_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/lib/allure_rspec/suite_labels.rb -------------------------------------------------------------------------------- /allure-rspec/spec/rspec_runner_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/rspec_runner_helper.rb -------------------------------------------------------------------------------- /allure-rspec/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/spec_helper.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/allure_rspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/allure_rspec_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_add_step_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_add_step_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_example_finished_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_example_finished_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_example_group_finished_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_example_group_finished_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_example_group_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_example_group_started_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_example_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_example_started_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_start_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_start_spec.rb -------------------------------------------------------------------------------- /allure-rspec/spec/unit/formatter_stop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-rspec/spec/unit/formatter_stop_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/README.md -------------------------------------------------------------------------------- /allure-ruby-commons/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/Rakefile -------------------------------------------------------------------------------- /allure-ruby-commons/allure-ruby-commons.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/allure-ruby-commons.gemspec -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure-ruby-commons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure-ruby-commons.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/_json_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/_json_helper.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/allure_lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/allure_lifecycle.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/config.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/file_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/file_writer.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/01_jsonable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/01_jsonable.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/attachment.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/category.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/content_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/content_type.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/executable_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/executable_item.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/fixture_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/fixture_result.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/label.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/link.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/parameter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/parameter.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/stage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/stage.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/status.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/status_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/status_details.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/step_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/step_result.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/test_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/test_result.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/model/test_result_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/model/test_result_container.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/result_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/result_utils.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/step_annotation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/step_annotation.rb -------------------------------------------------------------------------------- /allure-ruby-commons/lib/allure_ruby_commons/testplan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/lib/allure_ruby_commons/testplan.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/allure-results/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/allure-results/categories.json -------------------------------------------------------------------------------- /allure-ruby-commons/spec/allure-results/environment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/allure-results/environment.properties -------------------------------------------------------------------------------- /allure-ruby-commons/spec/fixtures/blank.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/fixtures/blank.xlsx -------------------------------------------------------------------------------- /allure-ruby-commons/spec/fixtures/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/fixtures/categories.json -------------------------------------------------------------------------------- /allure-ruby-commons/spec/fixtures/ruby-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/fixtures/ruby-logo.png -------------------------------------------------------------------------------- /allure-ruby-commons/spec/fixtures/test_plan/correct/testplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/fixtures/test_plan/correct/testplan.json -------------------------------------------------------------------------------- /allure-ruby-commons/spec/fixtures/test_plan/malformed/testplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/fixtures/test_plan/malformed/testplan.json -------------------------------------------------------------------------------- /allure-ruby-commons/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/spec_helper.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/allure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/allure_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/attachment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/attachment_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/file_writer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/file_writer_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/lifecycle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/lifecycle_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/result_utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/result_utils_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/step_annotation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/step_annotation_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/test_fixture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/test_fixture_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/test_result_container_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/test_result_container_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/test_result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/test_result_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/test_step_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/test_step_spec.rb -------------------------------------------------------------------------------- /allure-ruby-commons/spec/unit/testplan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/allure-ruby-commons/spec/unit/testplan_spec.rb -------------------------------------------------------------------------------- /lib/task_helpers/simplecov_merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/lib/task_helpers/simplecov_merger.rb -------------------------------------------------------------------------------- /lib/task_helpers/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/lib/task_helpers/util.rb -------------------------------------------------------------------------------- /lib/tasks/release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/lib/tasks/release.rake -------------------------------------------------------------------------------- /lib/tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/lib/tasks/test.rake -------------------------------------------------------------------------------- /lib/tasks/version.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/lib/tasks/version.rake -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-ruby/HEAD/mise.toml --------------------------------------------------------------------------------