forked from allure-framework/allure-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallure-rspec.gemspec
26 lines (22 loc) · 985 Bytes
/
allure-rspec.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "allure-rspec/version"
Gem::Specification.new do |s|
s.name = 'allure-rspec'
s.version = AllureRSpec::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ['Ilya Sadykov']
s.email = ['[email protected]']
s.description = %q{Adaptor to use Allure framework along with the RSpec 2}
s.summary = "allure-rspec-#{AllureRSpec::Version::STRING}"
s.homepage = 'http://allure.qatools.ru'
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 'rspec', '~> 3.5'
s.add_dependency 'allure-ruby-adaptor-api', '0.7.0'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
end