forked from whitesmith/rubycritic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubycritic.gemspec
54 lines (48 loc) · 2.16 KB
/
rubycritic.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubycritic/version'
Gem::Specification.new do |spec|
spec.name = 'rubycritic'
spec.version = RubyCritic::VERSION
spec.authors = ['Guilherme Simoes']
spec.email = ['[email protected]']
spec.description = 'RubyCritic is a tool that wraps around various static analysis gems '\
'to provide a quality report of your Ruby code.'
spec.summary = 'RubyCritic is a Ruby code quality reporter'
spec.homepage = 'https://github.com/whitesmith/rubycritic'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.3.0'
spec.files = [
'CHANGELOG.md',
'CONTRIBUTING.md',
'Gemfile',
'LICENSE.txt',
'README.md',
'ROADMAP.md',
'Rakefile'
]
spec.files += `git ls-files lib`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_path = 'lib'
spec.add_runtime_dependency 'flay', '~> 2.8'
spec.add_runtime_dependency 'flog', '~> 4.4'
spec.add_runtime_dependency 'launchy', '2.4.3'
spec.add_runtime_dependency 'parser', '~> 2.6.0'
spec.add_runtime_dependency 'rainbow', '~> 3.0'
spec.add_runtime_dependency 'reek', '~> 5.0', '< 6.0'
spec.add_runtime_dependency 'ruby_parser', '~> 3.8'
spec.add_runtime_dependency 'tty-which', '~> 0.4.0'
spec.add_runtime_dependency 'virtus', '~> 1.0'
spec.add_development_dependency 'aruba', '~> 0.12', '>= 0.12.0'
spec.add_development_dependency 'bundler', '~> 2.0', '>= 2.0.0'
spec.add_development_dependency 'byebug', '~> 11.0', '>= 10.0'
spec.add_development_dependency 'cucumber', '~> 3.0', '>= 2.2.0'
spec.add_development_dependency 'diff-lcs', '~> 1.3'
spec.add_development_dependency 'fakefs', '~> 0.10', '>= 0.10.0'
spec.add_development_dependency 'minitest', '~> 5.3', '>= 5.3.0'
spec.add_development_dependency 'minitest-around', '~> 0.5.0', '>= 0.4.0'
spec.add_development_dependency 'mocha', '~> 1.1', '>= 1.1.0'
spec.add_development_dependency 'rake', '~> 12.0', '>= 11.0.0'
spec.add_development_dependency 'rubocop', '~> 0.65.0'
end