Sandy Vanderbleek

Results 1 issues of Sandy Vanderbleek

`valid_exposure?` uses `respond_to?`, and does not work with `method_missing`. Something like this would make it work ``` ruby def respond_to_attribute?(object, attribute) object.send(attribute) true rescue false end ``` but it does...

question
bug?