-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathducalis.gemspec
35 lines (29 loc) · 1.17 KB
/
ducalis.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ducalis/version'
Gem::Specification.new do |spec|
spec.name = 'ducalis'
spec.version = Ducalis::VERSION
spec.authors = ['Ignat Zakrevsky']
spec.email = ['[email protected]']
spec.summary = 'RuboCop based static code analyzer'
spec.description = <<-DESCRIPTION
Ducalis is RuboCop based static code analyzer for enterprise Rails \
applications.
DESCRIPTION
spec.homepage = 'https://github.com/ignat-z/ducalis'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['source_code_uri'] = 'https://github.com/ignat-z/ducalis'
end
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|client)/})
end
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.add_dependency 'git', '~> 1.3', '>= 1.3.0'
spec.add_dependency 'octokit', '>= 4.7.0'
spec.add_dependency 'regexp-examples', '~> 1.3', '>= 1.3.2'
spec.add_dependency 'regexp_parser', '>= 0.5.0'
spec.add_dependency 'rubocop', '>= 0.45.0'
end