Created
August 15, 2018 13:54
-
-
Save marshall-lee/cb15fd57584f8babcfe3416571e400aa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
module ToBoolean | |
def self.cast(value) | |
@type ||= ActiveRecord::Type::Boolean.new | |
!! @type.type_cast_from_user(value) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment