We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide at least:
When I define an attribute in the model to be encrypted with type definition, then it should be casted to this type
attribute :foo, :encrypted, type: :integer
When I assign to foo a string number, it should be casted to integer.
foo
This is what is described here: http://encryption.rocketjob.io/frameworks.html
o = Object.new o.foo = '124' o.foo => '124'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Provide at least:
Expected Behavior
When I define an attribute in the model to be encrypted with type definition, then it should be casted to this type
attribute :foo, :encrypted, type: :integer
When I assign to
foo
a string number, it should be casted to integer.This is what is described here: http://encryption.rocketjob.io/frameworks.html
Actual Behavior
The text was updated successfully, but these errors were encountered: