Skip to content

Commit

Permalink
Merge branch 'main' into version-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Oct 26, 2023
2 parents 1a489b9 + c7098d6 commit 97019aa
Show file tree
Hide file tree
Showing 24 changed files with 232 additions and 5 deletions.
38 changes: 36 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,44 @@ jobs:
- redis_5
- redis_4
- connection_pool_dalli
- active_support_redis_cache_store
- active_support_redis_cache_store_pooled
- active_support_7_1_redis_cache_store
- active_support_7_1_redis_cache_store_pooled
- active_support_7_0_redis_cache_store
- active_support_7_0_redis_cache_store_pooled
- active_support_6_redis_cache_store
- active_support_6_redis_cache_store_pooled
- active_support_5_redis_cache_store
- active_support_5_redis_cache_store_pooled
- redis_store
exclude:
- gemfile: rack_1
ruby: 3.2.2
- gemfile: rails_5_2
ruby: 3.2.2
- gemfile: active_support_5_redis_cache_store
ruby: 3.2.2
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.2.2
- gemfile: dalli2
ruby: 3.2.2
- gemfile: rack_1
ruby: 3.1.4
- gemfile: rails_5_2
ruby: 3.1.4
- gemfile: active_support_5_redis_cache_store
ruby: 3.1.4
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.1.4
- gemfile: dalli2
ruby: 3.1.4
- gemfile: rack_1
ruby: 3.0.6
- gemfile: rails_5_2
ruby: 3.0.6
- gemfile: active_support_5_redis_cache_store
ruby: 3.0.6
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.0.6
- gemfile: dalli2
ruby: 3.0.6
- gemfile: rack_1
Expand All @@ -65,10 +83,26 @@ jobs:
ruby: 2.6.10
- gemfile: rails_7_0
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store
ruby: 2.6.10
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: 2.6.10
- gemfile: rails_7_1
ruby: 2.6.10
- gemfile: rails_7_1
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store
ruby: 2.6.10
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: 2.6.10
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
37 changes: 35 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,50 @@ appraise "connection_pool_dalli" do
gem "dalli", "~> 3.0"
end

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

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

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

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

appraise "active_support_6_redis_cache_store" do
gem "activesupport", "~> 6.1.0"
gem "redis", "~> 5.0"
end

appraise "active_support_redis_cache_store_pooled" do
appraise "active_support_6_redis_cache_store_pooled" do
gem "activesupport", "~> 6.1.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"
end

appraise "active_support_5_redis_cache_store" do
gem "activesupport", "~> 5.2.0"
gem "redis", "~> 5.0"
end

appraise "active_support_5_redis_cache_store_pooled" do
gem "activesupport", "~> 5.2.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"
end

appraise "redis_store" do
gem "redis-store", "~> 1.5"
end
13 changes: 13 additions & 0 deletions gemfiles/active_support_5_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activesupport", "~> 5.2.0"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
14 changes: 14 additions & 0 deletions gemfiles/active_support_5_redis_cache_store_pooled.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activesupport", "~> 5.2.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ source "https://rubygems.org"
gem "activesupport", "~> 6.1.0"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ gem "activesupport", "~> 6.1.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
13 changes: 13 additions & 0 deletions gemfiles/active_support_7_0_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

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

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
14 changes: 14 additions & 0 deletions gemfiles/active_support_7_0_redis_cache_store_pooled.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file was generated by Appraisal

source "https://rubygems.org"

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

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
13 changes: 13 additions & 0 deletions gemfiles/active_support_7_1_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

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

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
14 changes: 14 additions & 0 deletions gemfiles/active_support_7_1_redis_cache_store_pooled.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file was generated by Appraisal

source "https://rubygems.org"

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

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/connection_pool_dalli.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ source "https://rubygems.org"
gem "connection_pool", "~> 2.2"
gem "dalli", "~> 3.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/dalli2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "dalli", "~> 2.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/dalli3.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "dalli", "~> 3.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rack_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6"
gem "rack-test", ">= 0.6"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
6 changes: 5 additions & 1 deletion gemfiles/rack_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
source "https://rubygems.org"

gem "rack", "~> 2.0"
gem "railties"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rack_3.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "rack", "~> 3.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_5_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 5.2.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_6_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 6.0.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 6.1.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 7.0.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 7.1.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_4.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "redis", "~> 4.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

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

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"

0 comments on commit 97019aa

Please sign in to comment.