Skip to content

Commit d5fe5c5

Browse files
committed
💚 More complete dependencies
1 parent 786dafb commit d5fe5c5

File tree

11 files changed

+28
-10
lines changed

11 files changed

+28
-10
lines changed

Appraisals

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ end
114114

115115
# Only run security audit on latest Ruby version
116116
appraise "audit" do
117+
# Load order is very important with combustion!
118+
gem "combustion", "~> 1.5"
119+
120+
gem "rails", "~> 8.0.2"
117121
gem "mutex_m", "~> 0.2"
118122
gem "stringio", "~> 3.0"
119123
eval_gemfile "modular/audit.gemfile"
@@ -123,6 +127,10 @@ end
123127

124128
# Only run coverage on latest Ruby version
125129
appraise "coverage" do
130+
# Load order is very important with combustion!
131+
gem "combustion", "~> 1.5"
132+
133+
gem "rails", "~> 8.0.2"
126134
gem "mutex_m", "~> 0.2"
127135
gem "stringio", "~> 3.0"
128136
eval_gemfile "modular/coverage.gemfile"
@@ -134,6 +142,10 @@ end
134142

135143
# Only run linter on latest Ruby version (but, in support of oldest supported Ruby version)
136144
appraise "style" do
145+
# Load order is very important with combustion!
146+
gem "combustion", "~> 1.5"
147+
148+
gem "rails", "~> 8.0.2"
137149
gem "mutex_m", "~> 0.2"
138150
gem "stringio", "~> 3.0"
139151
eval_gemfile "modular/style.gemfile"

gemfiles/audit.gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
source "https://rubygems.org"
44

5+
gem "combustion", "~> 1.5"
6+
gem "rails", "~> 8.0.2"
57
gem "mutex_m", "~> 0.2"
68
gem "stringio", "~> 3.0"
79

8-
gemspec :path => "../"
10+
gemspec path: "../"
911

1012
eval_gemfile("modular/audit.gemfile")
1113

gemfiles/coverage.gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
source "https://rubygems.org"
44

5+
gem "combustion", "~> 1.5"
6+
gem "rails", "~> 8.0.2"
57
gem "mutex_m", "~> 0.2"
68
gem "stringio", "~> 3.0"
79

8-
gemspec :path => "../"
10+
gemspec path: "../"
911

1012
eval_gemfile("modular/coverage.gemfile")
1113

gemfiles/rails_5_2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gem "combustion", "~> 1.5"
66
gem "rails", "~> 5.2.8.1"
77
gem "nokogiri"
88

9-
gemspec :path => "../"
9+
gemspec path: "../"
1010

1111
eval_gemfile("modular/mini_testing.gemfile")
1212

gemfiles/rails_6_0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 6.0.6.1"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

gemfiles/rails_6_1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 6.1.7.10"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

gemfiles/rails_7_0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 7.0.8.7"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

gemfiles/rails_7_1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 7.1.5.1"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

gemfiles/rails_7_2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 7.2.2.1"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

gemfiles/rails_8_0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "combustion", "~> 1.5"
66
gem "rails", "~> 8.0.2"
77

8-
gemspec :path => "../"
8+
gemspec path: "../"
99

1010
eval_gemfile("modular/mini_testing.gemfile")
1111

0 commit comments

Comments
 (0)