forked from whitesmith/rubycritic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubycritic.gemspec
45 lines (40 loc) · 2.05 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
# 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.1.0'
spec.files = `git ls-files`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.test_files = `git ls-files -- test/*`.split("\n")
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.5.0'
spec.add_runtime_dependency 'rainbow', '~> 3.0'
spec.add_runtime_dependency 'reek', '~> 4.4'
spec.add_runtime_dependency 'ruby_parser', '~> 3.8'
spec.add_runtime_dependency 'tty-which', '~> 0.3.0'
spec.add_runtime_dependency 'virtus', '~> 1.0'
spec.add_development_dependency 'aruba', '~> 0.12', '>= 0.12.0'
spec.add_development_dependency 'bundler', '~> 1.3', '>= 1.3.0'
spec.add_development_dependency 'byebug', '~> 9.0', '>= 8.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.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.53'
end