-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathniftany.gemspec
More file actions
29 lines (26 loc) · 1.29 KB
/
niftany.gemspec
File metadata and controls
29 lines (26 loc) · 1.29 KB
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.12.1'
spec.metadata = { 'rubygems_mfa_required' => 'true' }
spec.authors = ['Adam Wead']
spec.email = ['amsterdamos@gmail.com']
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 = '>= 3.4'
spec.add_dependency 'colorize', '~> 1.1.0'
spec.add_dependency 'erb_lint', '~> 0.9.0'
spec.add_dependency 'rubocop', '~> 1.72'
spec.add_dependency 'rubocop-capybara', '~> 2.21'
spec.add_dependency 'rubocop-factory_bot', '~> 2.26'
spec.add_dependency 'rubocop-performance', '~> 1.24'
spec.add_dependency 'rubocop-rails', '~> 2.30'
spec.add_dependency 'rubocop-rspec', '~> 3.5'
spec.add_dependency 'rubocop-rspec_rails', '~> 2.30'
spec.add_dependency 'scss_lint', '~> 0.60'
end