Bill Ryan
Bill Ryan
I imagine that `POST /job//build` must be part of that list. Is there anything else?
I was able to use [`.scrub`](https://ruby-doc.org/core-2.4.0/String.html#method-i-scrub) to clean my output before calling `failure` or `warn`, e.g. ```ruby # Dangerfile msg = "blah" warn(msg.scrub('_')) ```
I believe so. Just ran a manual test: ``` 2.3.0 :001 > class Foo 2.3.0 :002?> class extend Memoist 2.3.0 :004?> 2.3.0 :005 > def bar 2.3.0 :006?> "hello" 2.3.0...
@peter-murray what do you think?