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