Update dependencies, require Ruby 3.x
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Râu Cao 2024-02-02 13:07:02 +02:00
parent f88892a326
commit 07e3b6ed54
Signed by: raucao
GPG Key ID: 37036C356E56CC51
2 changed files with 43 additions and 32 deletions

View File

@ -1,40 +1,47 @@
PATH PATH
remote: . remote: .
specs: specs:
manifique (0.1.0) manifique (1.0.0)
faraday (~> 2.7.11) faraday (~> 2.9.0)
faraday-follow_redirects (= 0.3.0) faraday-follow_redirects (= 0.3.0)
nokogiri (~> 1.15.4) nokogiri (~> 1.16.0)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
addressable (2.8.5) addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0) public_suffix (>= 2.0.2, < 6.0)
base64 (0.1.1) bigdecimal (3.1.6)
coderay (1.1.3) coderay (1.1.3)
crack (0.4.5) crack (0.4.6)
bigdecimal
rexml rexml
diff-lcs (1.5.0) diff-lcs (1.5.1)
faraday (2.7.11) faraday (2.9.0)
base64 faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-follow_redirects (0.3.0) faraday-follow_redirects (0.3.0)
faraday (>= 1, < 3) faraday (>= 1, < 3)
faraday-net_http (3.0.2) faraday-net_http (3.0.2)
hashdiff (1.0.1) hashdiff (1.1.0)
method_source (1.0.0) method_source (1.0.0)
mini_portile2 (2.8.4) nokogiri (1.16.0-aarch64-linux)
nokogiri (1.15.4) racc (~> 1.4)
mini_portile2 (~> 2.8.2) nokogiri (1.16.0-arm-linux)
racc (~> 1.4)
nokogiri (1.16.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.0-x86-linux)
racc (~> 1.4)
nokogiri (1.16.0-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4) racc (~> 1.4)
pry (0.14.2) pry (0.14.2)
coderay (~> 1.1) coderay (~> 1.1)
method_source (~> 1.0) method_source (~> 1.0)
public_suffix (5.0.3) public_suffix (5.0.4)
racc (1.7.1) racc (1.7.3)
rake (13.0.6) rake (13.1.0)
rexml (3.2.6) rexml (3.2.6)
rspec (3.12.0) rspec (3.12.0)
rspec-core (~> 3.12.0) rspec-core (~> 3.12.0)
@ -49,22 +56,26 @@ GEM
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0) rspec-support (~> 3.12.0)
rspec-support (3.12.1) rspec-support (3.12.1)
ruby2_keywords (0.0.5) webmock (3.19.1)
webmock (3.4.2) addressable (>= 2.8.0)
addressable (>= 2.3.6)
crack (>= 0.3.2) crack (>= 0.3.2)
hashdiff hashdiff (>= 0.4.0, < 2.0.0)
PLATFORMS PLATFORMS
ruby aarch64-linux
arm-linux
arm64-darwin
x86-linux
x86_64-darwin
x86_64-linux
DEPENDENCIES DEPENDENCIES
bundler (~> 2.3.7) bundler (~> 2.5.5)
manifique! manifique!
pry (~> 0.14.2) pry (~> 0.14.2)
rake (~> 13.0) rake (~> 13.1.0)
rspec (~> 3.12) rspec (~> 3.12)
webmock (~> 3.4.2) webmock (~> 3.19.1)
BUNDLED WITH BUNDLED WITH
2.3.7 2.5.5

View File

@ -25,13 +25,13 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"] spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.3.7" spec.add_development_dependency "bundler", "~> 2.5.5"
spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rake", "~> 13.1.0"
spec.add_development_dependency "rspec", "~> 3.12" spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "webmock", "~> 3.4.2" spec.add_development_dependency "webmock", "~> 3.19.1"
spec.add_development_dependency "pry", "~> 0.14.2" spec.add_development_dependency "pry", "~> 0.14.2"
spec.add_runtime_dependency "faraday", "~> 2.7.11" spec.add_runtime_dependency "faraday", "~> 2.9.0"
spec.add_runtime_dependency "faraday-follow_redirects", "0.3.0" spec.add_runtime_dependency "faraday-follow_redirects", "0.3.0"
spec.add_runtime_dependency "nokogiri", "~> 1.15.4" spec.add_runtime_dependency "nokogiri", "~> 1.16.0"
end end