mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
Fix rubocop violation, lock rack to avoid dependency madness
Signed-off-by: Steven Danna <steve@chef.io>
This commit is contained in:
parent
cac89dc6dd
commit
90be4acab1
2 changed files with 3 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -34,6 +34,8 @@ group :tools do
|
|||
gem 'rb-readline'
|
||||
gem 'license_finder'
|
||||
gem 'github_changelog_generator', '~> 1'
|
||||
# To avoid ruby version requirements
|
||||
gem "rack", "< 2.0"
|
||||
end
|
||||
|
||||
# gems for Maintainers.md generation
|
||||
|
|
|
@ -157,7 +157,7 @@ module Inspec
|
|||
#
|
||||
# @param [Object] dependency
|
||||
# @return [Boolean] whether this dependency can safely be skipped.
|
||||
def allow_missing?(dependency)
|
||||
def allow_missing?(_dependency)
|
||||
# TODO
|
||||
false
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue