-
Notifications
You must be signed in to change notification settings - Fork 47
/
report_builder.gemspec
23 lines (20 loc) · 1.02 KB
/
report_builder.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'report_builder'
s.version = '1.9'
s.bindir = 'bin'
s.summary = 'ReportBuilder'
s.description = 'Ruby gem to merge Cucumber JSON reports and build mobile-friendly HTML Test Report, JSON report and retry file.'
s.post_install_message = 'Happy reporting!'
s.authors = ['Rajat Thareja']
s.email = 'rajat.thareja.1990@gmail.com'
s.homepage = 'https://reportbuilder.rajatthareja.com'
s.license = 'MIT'
s.required_ruby_version = '>= 2.0.0'
s.requirements << 'Cucumber >= 2.1.0 test results in JSON format'
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(sample/|css/|js/|pkg/|testing/|coverage/|CNAME|.gitignore|.github|_config.yml|Gemfile|Rakefile|rb.ico)}) }
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(testing)/})
s.add_runtime_dependency 'json', '>= 2.3.0'
s.add_development_dependency 'rake', '< 13.0'
s.add_development_dependency 'rspec', '< 4.0'
end