diff --git a/lib/draper/base.rb b/lib/draper/base.rb index 2e7e01bc..d0f4dce2 100644 --- a/lib/draper/base.rb +++ b/lib/draper/base.rb @@ -147,8 +147,7 @@ def ==(other) end def kind_of?(klass) - return true if klass == model.class - super + super || model.kind_of?(klass) end def respond_to?(method, include_private = false)