-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecifier.gemspec
30 lines (24 loc) · 972 Bytes
/
specifier.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
29
30
$:.push File.join(File.dirname(__FILE__), 'lib')
require 'specifier/version'
Gem::Specification.new do |spec|
spec.name = 'specifier'
spec.version = Specifier::VERSION
spec.authors = ['Kevin Sylvestre']
spec.email = ['[email protected]']
spec.summary = 'A testing framework written for fun.'
spec.description = 'This should probably never be used.'
spec.homepage = 'https://github.com/ksylvest/specifier'
spec.license = 'MIT'
spec.files = Dir.glob('{exe,lib}/**/*') + %w[README.md LICENSE Gemfile]
spec.bindir = 'exe'
spec.executables = ['specifier']
spec.required_ruby_version = '> 2.5.0'
spec.add_dependency 'slop'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'byebug'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov'
end