Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
53 changes: 37 additions & 16 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,45 @@ appraise "rack_2" do
gem "rack", "~> 2.0"
end

appraise 'rails_8-1' do
gem 'railties', '~> 8.1.0'
appraise "rails_8-1" do
gem "railties", "~> 8.1.0"
end

appraise 'rails_8-0' do
gem 'railties', '~> 8.0.0'
appraise "rails_8-0" do
gem "railties", "~> 8.0.0"
end

appraise 'rails_7-2' do
gem 'railties', '~> 7.2.0'
appraise "rails_7-2" do
gem "railties", "~> 7.2.0"
end

appraise 'rails_7-1' do
gem 'railties', '~> 7.1.0'
appraise "rails_7-1" do
gem "railties", "~> 7.1.0"
end

appraise 'rails_7-0' do
gem 'railties', '~> 7.0.0'
appraise "rails_7-0" do
gem "railties", "~> 7.0.0"
end

appraise 'dalli3' do
gem 'dalli', '~> 3.0'
appraise "dalli3" do
# Direct version requirement on connection_pool
# can be removed once https://github.com/petergoldstein/dalli/pull/1049 is fixed and released
gem "connection_pool", "~> 2.5"
gem "dalli", "~> 3.0"
end

appraise 'redis_5' do
gem 'redis', '~> 5.0'
appraise "redis_5" do
# Direct version requirement on connection_pool
# can be removed once https://github.com/rails/rails#56291 is fixed and released
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

appraise 'redis_4' do
gem 'redis', '~> 4.0'
appraise "redis_4" do
# Direct version requirement on connection_pool
# can be removed once https://github.com/rails/rails#56291 is fixed and released
gem "connection_pool", "~> 2.5"
gem "redis", "~> 4.0"
end

appraise "connection_pool_dalli" do
Expand All @@ -47,6 +56,9 @@ end

appraise "active_support_8-1_redis_cache_store" do
gem "activesupport", "~> 8.1.0"
# Direct version requirement on connection_pool
# can be removed once https://github.com/rails/rails#56291 is fixed and released
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

Expand All @@ -58,6 +70,9 @@ end

appraise "active_support_8-0_redis_cache_store" do
gem "activesupport", "~> 8.0.0"
# Direct version requirement on connection_pool
# can be removed once https://github.com/rails/rails#56291 is fixed and released
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

Expand All @@ -69,6 +84,7 @@ end

appraise "active_support_7-2_redis_cache_store" do
gem "activesupport", "~> 7.2.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

Expand All @@ -80,6 +96,7 @@ end

appraise "active_support_7-1_redis_cache_store" do
gem "activesupport", "~> 7.1.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

Expand All @@ -91,6 +108,7 @@ end

appraise "active_support_7-0_redis_cache_store" do
gem "activesupport", "~> 7.0.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"
end

Expand All @@ -101,5 +119,8 @@ appraise "active_support_7-0_redis_cache_store_pooled" do
end

appraise "redis_store" do
# Direct version requirement on connection_pool
# can be removed once https://github.com/rails/rails#56291 is fixed and released
gem "connection_pool", "~> 2.5"
gem "redis-store", "~> 1.5"
end
1 change: 1 addition & 0 deletions gemfiles/active_support_7_0_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "activesupport", "~> 7.0.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/active_support_7_1_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "activesupport", "~> 7.1.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/active_support_7_2_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "activesupport", "~> 7.2.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/active_support_8_0_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "activesupport", "~> 8.0.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/active_support_8_1_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "activesupport", "~> 8.1.0"
gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/dalli3.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

source "https://rubygems.org"

gem "connection_pool", "~> 2.5"
gem "dalli", "~> 3.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/redis_4.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

source "https://rubygems.org"

gem "connection_pool", "~> 2.5"
gem "redis", "~> 4.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/redis_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

source "https://rubygems.org"

gem "connection_pool", "~> 2.5"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/redis_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

source "https://rubygems.org"

gem "connection_pool", "~> 2.5"
gem "redis-store", "~> 1.5"

group :maintenance, optional: true do
Expand Down