installing webrick for ruby 3 (not default anymore); updating rubocop

This commit is contained in:
HoneyryderChuck 2020-12-24 12:31:27 +00:00
parent 1313478f6c
commit ce0c7c02cc
2 changed files with 11 additions and 2 deletions

View File

@ -13,3 +13,9 @@ Lint/MissingSuper:
Style/HashTransformValues:
Exclude:
- 'lib/httpx/plugins/digest_authentication.rb'
Bundler/DuplicatedGem:
Enabled: false
Naming/VariableNumber:
Enabled: false

View File

@ -20,7 +20,7 @@ group :test do
gem "rubocop", "~> 0.81.0"
gem "rubocop-performance", "~> 1.5.2"
else
gem "rubocop", "~> 1.0.0"
gem "rubocop", "~> 1.0"
gem "rubocop-performance", "~> 1.5.2"
end
@ -39,7 +39,10 @@ group :test do
gem "faraday"
gem "oga"
gem "rbs", git: "https://github.com/ruby/rbs.git", branch: "master" if RUBY_VERSION >= "3.0"
if RUBY_VERSION >= "3.0"
gem "rbs", git: "https://github.com/ruby/rbs.git", branch: "master"
gem "webrick"
end
end
group :coverage do