-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rails 7.1 support, Ruby 3.1-3.2 support (#196)
* Change GitHub Actions to run on ubuntu-20.04 * Be less specific with Ruby versions, cleanup matrix excludes * Use strings for Ruby versions, fix Struct usage for Ruby 3.2 * Replace unsupported git:// protocol * Update rails_head.gemfile * Use main branch for rack * Add Rails 7.1 support * Gemfile should test against 7.1 * Rails 7.1+ support * Amend CHANGELOG
- Loading branch information
Showing
9 changed files
with
141 additions
and
114 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec :development_group => :test, :path => ".." | ||
|
||
gem "activemodel", "~> 7.0.0" | ||
gem "activesupport", "~> 7.0.0" | ||
gem "actionpack", "~> 7.0.0" | ||
gem "activemodel-serializers-xml", :group => :test | ||
gem "rexml", :group => :test | ||
gem "protected_attributes_continued", :group => :test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module ActiveAttr | ||
# Complete version string | ||
# @since 0.1.0 | ||
VERSION = "0.15.4" | ||
VERSION = "0.16.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