Skip to content

Commit 5932e0c

Browse files
committed
fix(Gemfile): Make sure we install latest patch level of Rails
Without this we are not sure that the latest patch level gets installed by bundler.
1 parent 0801c7d commit 5932e0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ branch = ENV.fetch("SOLIDUS_BRANCH", "main")
77
gem "solidus", github: "solidusio/solidus", branch: branch
88
gem "solidus_backend", github: "solidusio/solidus", branch: branch
99

10-
rails_requirement_string = ENV.fetch("RAILS_VERSION", "~> 7.0")
11-
gem "rails", rails_requirement_string
10+
rails_requirement_string = ENV.fetch("RAILS_VERSION", "7.0")
11+
gem "rails", "~> #{rails_requirement_string}"
1212

1313
# The solidus_frontend gem has been pulled out since v3.2
1414
if branch >= "v3.2"

0 commit comments

Comments
 (0)