-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubocop-ci.gemspec
33 lines (29 loc) · 1.1 KB
/
rubocop-ci.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
Gem::Specification.new do |s|
s.name = 'rubocop-ci'
s.version = '1.0.2'
s.date = '2015-03-17'
s.summary = 'Runs rubocop with our settings'
s.description = ''
s.authors = ['ad2games GmbH']
s.email = '[email protected]'
s.files = Dir['lib/**/*', 'exe/**/*']
s.bindir = 'exe'
s.executables = %w[i18n-lint clockwork-lint]
s.homepage = 'http://www.ad2games.com'
s.license = ''
s.add_dependency 'coffeelint', '~> 1.16.0'
s.add_dependency 'cs-rubocop-git'
s.add_dependency 'rake'
s.add_dependency 'rubocop', '~> 0.83.0'
s.add_dependency 'rubocop-performance'
s.add_dependency 'rubocop-rails', '~> 2.5.2'
s.add_dependency 'rubocop-rspec', '= 1.19.0' # hard lock, they break semver promises
s.add_dependency 'scss_lint', '~> 0.57.0'
s.add_dependency 'slim_lint', '~> 0.16.1'
# Use brakeman with less dependencies, but still have nice output
s.add_dependency 'brakeman-min', '~> 4.3'
s.add_dependency 'highline'
s.add_dependency 'terminal-table'
end