forked from allure-framework/allure-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallure_turnip.gemspec
28 lines (24 loc) · 1.05 KB
/
allure_turnip.gemspec
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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'allure_turnip/version'
Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.4'
s.name = 'allure_turnip'
s.version = AllureTurnip::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ['aha-oretama']
s.email = ['[email protected]']
s.description = 'Adaptor to use Allure framework along with the Turnip'
s.summary = "allure_turnip-#{AllureTurnip::Version::STRING}"
s.homepage = 'https://github.com/aha-oretama/allure_turnip'
s.license = 'Apache-2.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'allure-ruby-adaptor-api', '0.7.0'
s.add_dependency 'rspec', '~> 3.7'
s.add_dependency 'turnip', '~> 4.0'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
end