Rob Stevenson

Results 4 issues of Rob Stevenson

I am writing a controller as a pipe per the release notes for v0.7.1. The comments there say we should: > leave your response body on the ctx.output, the status...

I've added the `RepeatHandler` as documented [here](https://github.com/jusleg/slackify#handling-plain-messages) but (on Rails 7 at least) this gives an exception: `repeat_handler is not defined (Slackify::Exceptions::InvalidHandler)` ... `in 'constantize': uninitialized constant RepeatHandler (NameError)`. This...

In the following code `try-parse-num` is flagged as unused: ```clojure (defn- try-parse-num "Attempt to parse a num-string. Returns nil if fails, or num otherwise. Takes parse-fn and num-str" [parse-fn num-str]...

For the following code, both `ISO-date-format` and `java->joda-local-date` are flagged as being unused. ```clojure (def ISO-date-format (tf/formatter "yyyy-MM-dd")) (defn java->joda-local-date [java-local-date] (tf/parse-local-date ISO-date-format (.toString java-local-date))) ;; Prevent default behaviour of...