Sha256: 1f797aa82cd7136a0e3b4b390422eb2e5104eebdaf07556d33dbcd2470763f00
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
require_relative 'lib/reek/version' Gem::Specification.new do |spec| spec.name = 'reek' spec.version = Reek::Version::STRING spec.authors = ['Kevin Rutherford', 'Timo Roessner', 'Matijs van Zuijlen', 'Piotr Szotkowski'] spec.email = ['timo.roessner@googlemail.com'] spec.summary = 'Code smell detector for Ruby' spec.description = 'Reek is a tool that examines Ruby classes, modules and methods and reports ' \ 'any code smells it finds.' spec.homepage = 'https://github.com/troessner/reek' spec.license = 'MIT' spec.extra_rdoc_files = ['CHANGELOG.md', 'License.txt'] spec.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 spec.files << Dir['docs/yard_plugin.rb'] spec.executables = spec.files.grep(%r{^bin/}).map { |path| File.basename(path) } spec.rdoc_options = %w(--main README.md -x assets/|bin/|config/|features/|spec/|tasks/) spec.required_ruby_version = '>= 3.0.0' spec.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', 'rubygems_mfa_required' => 'true' } spec.add_dependency 'dry-schema', '~> 1.13.0' spec.add_dependency 'logger', '~> 1.6' spec.add_dependency 'parser', '~> 3.3.0' spec.add_dependency 'rainbow', '>= 2.0', '< 4.0' spec.add_dependency 'rexml', '~> 3.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reek-6.4.0 | reek.gemspec |