-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcukewrapper.gemspec
More file actions
26 lines (24 loc) · 938 Bytes
/
Copy pathcukewrapper.gemspec
File metadata and controls
26 lines (24 loc) · 938 Bytes
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
# frozen_string_literal: true
require_relative 'lib/cukewrapper/version'
Gem::Specification.new do |spec|
spec.name = 'cukewrapper'
spec.version = Cukewrapper::VERSION
spec.authors = ['Nick Blantz']
spec.email = ['nicholasblantz@gmail.com']
spec.summary = 'Provides a wrapper for online testing tools with Cucumber'
spec.description = File.read('README.md')
spec.homepage = 'https://github.com/nickblantz'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
spec.files = Dir[
'lib/**/*',
'README.md',
'LICENSE'
]
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.0'
spec.add_development_dependency 'rubocop-rake', '~> 0.0'
spec.add_development_dependency 'rubocop-rspec', '~> 2.0'
spec.add_runtime_dependency 'cucumber', '~> 7.0'
end