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
Bruce,
I get a deprecation warning for line 39 of bitmask_attribute.rb
current line is model.bitmasks[attribute] = returning HashWithIndifferentAccess.new do |mapping|
for deprecation fix it needs to be: model.bitmasks[attribute] = ( HashWithIndifferentAccess.new ).tap do |mapping|
Thanks for the great plugin! Dave
The text was updated successfully, but these errors were encountered:
Merge pull request joelmoss#5 from pathable/defaults
3a35174
Allow empty arrays and nils.
No branches or pull requests
Bruce,
I get a deprecation warning for line 39 of bitmask_attribute.rb
current line is
model.bitmasks[attribute] = returning HashWithIndifferentAccess.new do |mapping|
for deprecation fix it needs to be:
model.bitmasks[attribute] = ( HashWithIndifferentAccess.new ).tap do |mapping|
Thanks for the great plugin!
Dave
The text was updated successfully, but these errors were encountered: