Unverified Commit eaacc0b1 by David Padilla Committed by GitHub

Loosen activerecord restriction to work with rails 7 (#912)

parent ecf70d8f
...@@ -23,7 +23,7 @@ Gem::Specification.new do |s| ...@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.specification_version = 4 if s.respond_to? :specification_version s.specification_version = 4 if s.respond_to? :specification_version
s.add_runtime_dependency(%q<rake>, '>= 10.4', '< 14.0') s.add_runtime_dependency(%q<rake>, '>= 10.4', '< 14.0')
s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '< 7.0']) s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '< 8.0'])
s.metadata = { s.metadata = {
"bug_tracker_uri" => "https://github.com/ctran/annotate_models/issues/", "bug_tracker_uri" => "https://github.com/ctran/annotate_models/issues/",
......
...@@ -2,7 +2,7 @@ PATH ...@@ -2,7 +2,7 @@ PATH
remote: ../../.. remote: ../../..
specs: specs:
annotate (3.1.1) annotate (3.1.1)
activerecord (>= 3.2, < 7.0) activerecord (>= 3.2, < 8.0)
rake (>= 10.4, < 14.0) rake (>= 10.4, < 14.0)
GEM GEM
......
...@@ -6,7 +6,7 @@ gem 'rails', '~> 6.0.2', '>= 6.0.2.1' ...@@ -6,7 +6,7 @@ gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
# Use sqlite3 as the database for Active Record # Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4' gem 'sqlite3', '~> 1.4'
# Use Puma as the app server # Use Puma as the app server
gem 'puma', '~> 4.3' gem 'puma', '~> 5.6.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7' gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production # Use Redis adapter to run Action Cable in production
......
...@@ -2,7 +2,7 @@ PATH ...@@ -2,7 +2,7 @@ PATH
remote: ../../.. remote: ../../..
specs: specs:
annotate (3.1.1) annotate (3.1.1)
activerecord (>= 3.2, < 7.0) activerecord (>= 3.2, < 8.0)
rake (>= 10.4, < 14.0) rake (>= 10.4, < 14.0)
GEM GEM
...@@ -82,7 +82,7 @@ GEM ...@@ -82,7 +82,7 @@ GEM
concurrent-ruby (1.1.8) concurrent-ruby (1.1.8)
crass (1.0.6) crass (1.0.6)
erubi (1.10.0) erubi (1.10.0)
ffi (1.12.2) ffi (1.15.5)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (1.8.10) i18n (1.8.10)
...@@ -113,7 +113,7 @@ GEM ...@@ -113,7 +113,7 @@ GEM
mini_portile2 (~> 2.5.0) mini_portile2 (~> 2.5.0)
racc (~> 1.4) racc (~> 1.4)
public_suffix (4.0.3) public_suffix (4.0.3)
puma (4.3.5) puma (5.6.1)
nio4r (~> 2.0) nio4r (~> 2.0)
racc (1.5.2) racc (1.5.2)
rack (2.2.3) rack (2.2.3)
...@@ -146,7 +146,7 @@ GEM ...@@ -146,7 +146,7 @@ GEM
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.20.3, < 2.0) thor (>= 0.20.3, < 2.0)
rake (13.0.3) rake (13.0.3)
rb-fsevent (0.10.3) rb-fsevent (0.11.0)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
regexp_parser (1.6.0) regexp_parser (1.6.0)
...@@ -193,7 +193,7 @@ DEPENDENCIES ...@@ -193,7 +193,7 @@ DEPENDENCIES
capybara (>= 2.15) capybara (>= 2.15)
jbuilder (~> 2.7) jbuilder (~> 2.7)
listen (>= 3.0.5, < 3.2) listen (>= 3.0.5, < 3.2)
puma (~> 4.3) puma (~> 5.6.1)
rails (~> 6.0.2, >= 6.0.2.1) rails (~> 6.0.2, >= 6.0.2.1)
selenium-webdriver selenium-webdriver
sqlite3 (~> 1.4) sqlite3 (~> 1.4)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment