-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nulldb is only loaded in the tests, so using its names in library code raised an exception: ``` NameError: uninitialized constant ActiveRecord::ConnectionAdapters::NullDBAdapter ``` We can instead key off the method that nulldb doesn't implement to fix the same issue as #32.
- Loading branch information
1 parent
465f700
commit abd18d0
Showing
3 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module ActsAsScrubbable | ||
VERSION = '2.1.2' | ||
VERSION = '2.1.3' | ||
end |