Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update activesupport requirement from >= 5.1, <= 6.1 to >= 5.1, <= 7.1 #29

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,25 @@ PATH
remote: .
specs:
nextcloud (1.3.2)
activesupport (>= 5.1, <= 6.1)
activesupport (>= 5.1, <= 7.1)
json (~> 2.1)
net-http-report (~> 0.1)
nokogiri (~> 1.8)

GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.0)
activesupport (7.0.4.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
ast (2.3.0)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.1.8)
concurrent-ruby (1.2.0)
coveralls (0.8.21)
json (>= 1.8, < 3)
simplecov (~> 0.14.1)
Expand All @@ -33,14 +32,14 @@ GEM
diff-lcs (1.3)
docile (1.1.5)
hashdiff (0.3.7)
i18n (1.8.10)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.5.1)
method_source (1.0.0)
mini_portile2 (2.8.0)
minitest (5.14.4)
net-http-report (0.2.0)
nokogiri (1.13.4)
mini_portile2 (2.8.1)
minitest (5.17.0)
net-http-report (0.3.0)
nokogiri (1.14.1)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
parallel (1.12.0)
Expand All @@ -54,7 +53,7 @@ GEM
byebug (~> 11.0)
pry (~> 0.13.0)
public_suffix (4.0.6)
racc (1.6.0)
racc (1.6.2)
rainbow (2.2.2)
rake
rake (13.0.1)
Expand Down Expand Up @@ -89,15 +88,14 @@ GEM
tins (~> 1.0)
thor (0.19.4)
tins (1.15.1)
tzinfo (2.0.4)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (1.3.0)
vcr (3.0.3)
webmock (3.1.1)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff
zeitwerk (2.4.2)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion nextcloud.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "activesupport", ">= 5.1", "<= 6.1"
spec.add_runtime_dependency "activesupport", ">= 5.1", "<= 7.1"
spec.add_runtime_dependency "json", "~> 2.1"
spec.add_runtime_dependency "nokogiri", "~> 1.8"
spec.add_runtime_dependency "net-http-report", "~> 0.1"
Expand Down