forked from makandra/spreewald
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spreewald.gemspec
23 lines (20 loc) · 953 Bytes
/
spreewald.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$: << File.expand_path('../lib', __FILE__)
require 'spreewald_support/version'
Gem::Specification.new do |gem|
gem.authors = ["Tobias Kraze"]
gem.email = ["[email protected]"]
gem.description = %q{A collection of cucumber steps we use in our projects, including steps to check HTML, tables, emails and some utility methods.}
gem.summary = %q{Collection of useful cucumber steps.}
gem.homepage = "https://github.com/makandra/spreewald"
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "spreewald"
gem.require_paths = ["lib"]
gem.version = Spreewald::VERSION
gem.add_runtime_dependency('cucumber-rails')
gem.add_runtime_dependency('cucumber')
gem.add_runtime_dependency('capybara')
end