-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updates rubocop * fix Struct * Use --autocorrect instead of --auto-correct * Adds the false setting back in to options Struct Co-authored-by: Alex Kiessling <[email protected]>
- Loading branch information
1 parent
fd76a8f
commit 382fd44
Showing
3 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,11 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'niftany' | ||
spec.version = '0.9.0' | ||
spec.version = '0.10.0' | ||
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 '\ | ||
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' | ||
|
@@ -17,10 +18,10 @@ Gem::Specification.new do |spec| | |
|
||
spec.add_dependency 'colorize', '~> 0.8.1' | ||
spec.add_dependency 'erb_lint', '~> 0.0.22' | ||
spec.add_dependency 'rubocop', '~> 0.79' | ||
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', '~> 1.3' | ||
spec.add_dependency 'rubocop-rspec', '~> 2' | ||
spec.add_dependency 'scss_lint', '~> 0.55' | ||
|
||
spec.add_development_dependency 'bundler', '~> 2.0' | ||
|