-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rather than have a gemfile per Ruby version, we can read it in from an environment variable, since it's the only thing that's changing.
- Loading branch information
1 parent
4b310bd
commit cc23bd8
Showing
7 changed files
with
26 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
@rails_gems_requirements = { github: "rails/rails", branch: "main" } | ||
@rails_gems_requirements = ENV.fetch("RAILS_GEMS_REQUIREMENTS") | ||
@rails_gems_requirements = { github: "rails/rails", branch: "main" } if @rails_gems_requirements == "edge" | ||
|
||
eval_gemfile "../Gemfile" |