-
Notifications
You must be signed in to change notification settings - Fork 1
/
niftany.gemspec
29 lines (25 loc) · 1.24 KB
/
niftany.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'niftany'
spec.version = '0.10.1'
spec.metadata = { 'rubygems_mfa_required' => 'true' }
spec.authors = ['Adam Wead']
spec.email = ['[email protected]']
spec.summary = 'Manages configurations and versions of linters used in projects at ' \
'Penn State University Libraries.'
spec.description = 'Combining "nittany" and "nifty" into one, super-nice gem that lints all our code at once.'
spec.homepage = 'https://github.com/psu-libraries/niftany'
spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.required_ruby_version = '>= 2.6.0'
spec.add_dependency 'colorize', '~> 0.8.1'
spec.add_dependency 'erb_lint', '~> 0.0.22'
spec.add_dependency 'rubocop', '~> 1.3'
spec.add_dependency 'rubocop-performance', '~> 1.1'
spec.add_dependency 'rubocop-rails', '~> 2.3'
spec.add_dependency 'rubocop-rspec', '~> 2'
spec.add_dependency 'scss_lint', '~> 0.55'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 12.0'
end