-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallure-cucumber.gemspec
More file actions
33 lines (26 loc) · 1.21 KB
/
allure-cucumber.gemspec
File metadata and controls
33 lines (26 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
version = File.read(File.expand_path("../ALLURE_VERSION", __dir__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "allure-cucumber"
s.version = version
s.summary = "Allure cucumber ruby adaptor"
s.description = "Cucumber adaptor to generate rich allure test reports"
s.homepage = "https://github.com/allure-framework/allure-ruby"
s.metadata = {
"bug_tracker_uri" => "https://github.com/allure-framework/allure-ruby/issues",
"changelog_uri" => "https://github.com/allure-framework/allure-ruby/releases",
"documentation_uri" => "https://github.com/allure-framework/allure-ruby/blob/master/allure-cucumber/README.md",
"source_code_uri" => "https://github.com/allure-framework/allure-ruby/tree/master/allure-cucumber",
"wiki_uri" => "https://github.com/allure-framework/allure-ruby/wiki",
"rubygems_mfa_required" => "false"
}
s.required_ruby_version = ">= 2.7.0"
s.license = "Apache-2.0"
s.author = "Andrejs Cunskis"
s.email = "andrejs.cunskis@gmail.com"
s.files = Dir["README.md", "lib/**/*"]
s.require_path = "lib"
s.add_dependency "allure-ruby-commons", version
s.add_dependency "cucumber", ">= 4.0.0", "< 12"
end