Fix rubocop violation, lock rack to avoid dependency madness

Signed-off-by: Steven Danna <steve@chef.io>
This commit is contained in:
Steven Danna 2016-08-11 16:13:45 +01:00
parent cac89dc6dd
commit 90be4acab1
No known key found for this signature in database
GPG key ID: 94DFB46E861A7DAE
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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