Sha256: 5ff24359fcfe97b439b7ccad1104c6a342fbf335f20653e1159238de4afa3e9f

Contents?: true

Size: 1.45 KB

Versions: 1

Compression:

Stored size: 1.45 KB

Contents

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.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 = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|samples|docs|tasks)/}) }
  end

  s.executables = s.files.grep(%r{^bin/}).map { |path| File.basename(path) }
  s.homepage = 'https://github.com/troessner/reek'
  s.rdoc_options = %w(--main README.md -x assets/|bin/|config/|features/|spec/|tasks/)
  s.required_ruby_version = '>= 2.4.0'
  s.summary = 'Code smell detector for Ruby'

  s.metadata = {
    'homepage_uri'      => 'https://github.com/troessner/reek',
    'source_code_uri'   => 'https://github.com/troessner/reek',
    'bug_tracker_uri'   => 'https://github.com/troessner/reek/issues',
    'changelog_uri'     => 'https://github.com/troessner/reek/CHANGELOG.md',
    'documentation_uri' => 'https://www.rubydoc.info/gems/reek'
  }

  s.add_runtime_dependency 'kwalify', '~> 0.7.0'
  s.add_runtime_dependency 'parser',  '~> 3.0.0'
  s.add_runtime_dependency 'rainbow', '>= 2.0', '< 4.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reek-6.0.6 reek.gemspec