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
Make ApplicaitonDecorator work as Dekorator::Base do.
ApplicaitonDecorator
Dekorator::Base
Maybe adding something like
See: https://github.com/komposable/dekorator/blob/b037876988dd5416257855719edf6ddd6bb47c10/lib/dekorator.rb#L98C9-L98C9
- return false if object_or_enumerable.is_a?(Dekorator::Base) + return false if object_or_enumerable.abstract_class? || object_or_enumerable == Base
And have abstract_class? method like `ActiveRecord does.
abstract_class?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Make
ApplicaitonDecorator
work asDekorator::Base
do.Maybe adding something like
See:
https://github.com/komposable/dekorator/blob/b037876988dd5416257855719edf6ddd6bb47c10/lib/dekorator.rb#L98C9-L98C9
And have
abstract_class?
method like `ActiveRecord does.The text was updated successfully, but these errors were encountered: