-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from kickstarter/activerecord-7.2
Support `ActiveRecord` 7.2
- Loading branch information
Showing
7 changed files
with
33 additions
and
7 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 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,2 +1,16 @@ | ||
source "https://rubygems.org" | ||
gemspec | ||
|
||
group :development do | ||
# This allows us to easily switch between different versions of ActiveRecord. | ||
# To use this in local dev, you can do: | ||
# ``` | ||
# rm Gemfile.lock | ||
# ACTIVE_RECORD_VERSION="7.1" bundle install | ||
# ``` | ||
active_record_version = ENV.fetch("ACTIVE_RECORD_VERSION", nil) | ||
gem "activerecord", "~> #{active_record_version}.0" if active_record_version&.length&.positive? | ||
|
||
# Just helping out the bundler resolver: | ||
gem "rails", "> 6.0" | ||
end |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ dotenv: | |
- .env | ||
|
||
vars: | ||
RUBY_VERSION: 3.2.2 | ||
RUBY_VERSION: 3.3.5 | ||
|
||
tasks: | ||
init: | ||
|
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 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 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 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