forked from troessner/reek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreek.gemspec
26 lines (22 loc) · 1.05 KB
/
reek.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
require File.join(File.dirname(__FILE__), 'lib/reek/version')
Gem::Specification.new do |s|
s.name = 'reek'
s.version = Reek::Version::STRING
s.authors = ['Kevin Rutherford', 'Timo Roessner', 'Matijs van Zuijlen', 'Piotr Szotkowski']
s.default_executable = 'reek'
s.description =
'Reek is a tool that examines Ruby classes, modules and methods and reports ' \
'any code smells it finds.'
s.license = 'MIT'
s.email = ['timo.roessner@googlemail.com']
s.extra_rdoc_files = ['CHANGELOG.md', 'License.txt']
s.files = `git ls-files -z`.split("\0")
s.executables = s.files.grep(%r{^bin/}).map { |path| File.basename(path) }
s.homepage = 'https://github.com/troessner/reek/wiki'
s.rdoc_options = %w(--main README.md -x assets/|bin/|config/|features/|spec/|tasks/)
s.required_ruby_version = '>= 2.1.0'
s.summary = 'Code smell detector for Ruby'
s.add_runtime_dependency 'codeclimate-engine-rb', '~> 0.4.0'
s.add_runtime_dependency 'parser', '< 2.6', '>= 2.5.0.0'
s.add_runtime_dependency 'rainbow', '~> 3.0'
end