Skip to content

Commit 75fb41b

Browse files
committed
✨ Appraisals
1 parent 97e0030 commit 75fb41b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+100
-864
lines changed

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ gemfiles/*.gemfile.lock
1818
Appraisal.*.gemfile.lock
1919

2020
# Engine stuff
21+
/db/*.sqlite
2122
/db/*.sqlite3
2223
/log/*.log
2324
/public/cache/**/*
2425
/vendor/
2526

2627
# Dummy Rails App
27-
/test/dummy/db/*.sqlite3
28-
/test/dummy/log/*.log
29-
/test/dummy/tmp
30-
/test/dummy/.sass-cache
28+
/test/internal/db/*.sqlite3
29+
/test/internal/db/*.sqlite
30+
/test/internal/log/*.log
31+
/test/internal/tmp
32+
/test/internal/.sass-cache

Appraisals

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ appraise "rails-6-1" do
3737
# Load order is very important with combustion!
3838
gem "combustion", "~> 1.5"
3939

40-
gem "rails", "~> 6.1.7.7"
40+
gem "rails", "~> 6.1.7.10"
4141
end
4242

4343
# Compat: Ruby >= 2.7
@@ -49,7 +49,7 @@ appraise "rails-7-0" do
4949
# Load order is very important with combustion!
5050
gem "combustion", "~> 1.5"
5151

52-
gem "rails", "~> 7.0.8.1"
52+
gem "rails", "~> 7.0.8.7"
5353
end
5454

5555
# Compat: Ruby >= 2.7
@@ -62,5 +62,30 @@ appraise "rails-7-1" do
6262
# Load order is very important with combustion!
6363
gem "combustion", "~> 1.5"
6464

65-
gem "rails", "~> 7.1.3.2"
65+
gem "rails", "~> 7.1.5.1"
66+
end
67+
68+
# Compat: Ruby >= 3.1
69+
# Test Matrix:
70+
# - Ruby 3.1
71+
# - Ruby 3.2
72+
# - Ruby 3.3
73+
# - Ruby 3.4
74+
appraise "rails-7-2" do
75+
# Load order is very important with combustion!
76+
gem "combustion", "~> 1.5"
77+
78+
gem "rails", "~> 7.2.2.1"
79+
end
80+
81+
# Compat: Ruby >= 3.2
82+
# Test Matrix:
83+
# - Ruby 3.2
84+
# - Ruby 3.3
85+
# - Ruby 3.4
86+
appraise "rails-8-0" do
87+
# Load order is very important with combustion!
88+
gem "combustion", "~> 1.5"
89+
90+
gem "rails", "~> 8.0.2"
6691
end

gemfiles/rails_5_2.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 5.2.8.1"
8+
gem "nokogiri"
9+
10+
gemspec path: "../"

gemfiles/rails_6_0.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 6.0.6.1"
8+
9+
gemspec path: "../"

gemfiles/rails_6_1.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 6.1.7.10"
8+
9+
gemspec path: "../"

gemfiles/rails_7_0.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 7.0.8.7"
8+
9+
gemspec path: "../"

gemfiles/rails_7_1.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 7.1.5.1"
8+
9+
gemspec path: "../"

gemfiles/rails_7_2.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 7.2.2.1"
8+
9+
gemspec path: "../"

gemfiles/rails_8_0.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", branch: "galtzo", git: "https://github.com/pboling/appraisal"
6+
gem "combustion", "~> 1.5"
7+
gem "rails", "~> 8.0.2"
8+
9+
gemspec path: "../"

spec/internal/app/assets/config/manifest.js

Whitespace-only changes.

0 commit comments

Comments
 (0)