Skip to content

Commit

Permalink
[correct] gemspec dependencies ordering offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
julienemo committed Apr 5, 2020
1 parent 2d86004 commit 63fc0a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 0 additions & 8 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: TreatCommentsAsGroupSeparators, Include.
# Include: **/*.gemspec
Gemspec/OrderedDependencies:
Exclude:
- 'puma_worker_killer.gemspec'

# Offense count: 1
# Cop supports --auto-correct.
Layout/EmptyLineAfterGuardClause:
Expand Down
4 changes: 2 additions & 2 deletions puma_worker_killer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Gem::Specification.new do |gem|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]

gem.add_dependency "puma", ">= 2.7", "< 5"
gem.add_dependency "get_process_mem", "~> 0.2"
gem.add_dependency "puma", ">= 2.7", "< 5"
gem.add_development_dependency "rack", "~> 1.6"
gem.add_development_dependency "wait_for_it", "~> 0.1"
gem.add_development_dependency "rake", "~> 10.1"
gem.add_development_dependency "test-unit", ">= 0"
gem.add_development_dependency "wait_for_it", "~> 0.1"

end

0 comments on commit 63fc0a6

Please sign in to comment.