-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compatibility for attr_encrypted 4+ (#262)
This method assumes that the class is using attr_encrypted for its encryption. That gem introduced a breaking change in its most recent major version upgrade to help with Rails 7.0 compatibility. This ensures both versions of attr_encrypted will be compatible with data_taster and clarifies the intention for consumers that want to use this method. This may be compatible with ActiveRecord encryption but is untested.
- Loading branch information
Showing
7 changed files
with
24 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ PATH | |
PATH | ||
remote: . | ||
specs: | ||
data_taster (0.2.2) | ||
data_taster (0.3.0) | ||
rails (>= 6.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ PATH | |
PATH | ||
remote: .. | ||
specs: | ||
data_taster (0.2.2) | ||
data_taster (0.3.0) | ||
rails (>= 6.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ PATH | |
PATH | ||
remote: .. | ||
specs: | ||
data_taster (0.2.2) | ||
data_taster (0.3.0) | ||
rails (>= 6.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ PATH | |
PATH | ||
remote: .. | ||
specs: | ||
data_taster (0.2.2) | ||
data_taster (0.3.0) | ||
rails (>= 6.0) | ||
|
||
GEM | ||
|
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 @@ | ||
# frozen_string_literal: true | ||
|
||
module DataTaster | ||
VERSION = "0.2.2" | ||
VERSION = "0.3.0" | ||
end |