mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
installing webrick for ruby 3 (not default anymore); updating rubocop
This commit is contained in:
parent
1313478f6c
commit
ce0c7c02cc
@ -13,3 +13,9 @@ Lint/MissingSuper:
|
||||
Style/HashTransformValues:
|
||||
Exclude:
|
||||
- 'lib/httpx/plugins/digest_authentication.rb'
|
||||
|
||||
Bundler/DuplicatedGem:
|
||||
Enabled: false
|
||||
|
||||
Naming/VariableNumber:
|
||||
Enabled: false
|
7
Gemfile
7
Gemfile
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user