Re: Optimizing lein profile for Heroku deployment

2014-08-26 Thread Lucas Bradstreet
A quick fix would be to increase the repl timeout time: :repl-options {:timeout 12} I believe you can also run the repl with a different profile: e.g. lein with-profile production repl Lucas On 26 August 2014 19:28, Jonathon McKitrick wrote: > I'm able to deploy my project, but 'lein rep

Re: Howto Use Automat ?

2014-08-26 Thread Zach Tellman
Hi Tim, Glad to see you're trying Automat out. I'm not sure what you mean by "forks in the road". If your FSM is defined as (a/or [1 3] [1 2 3]), then you can do any of the following: (reduce #(a/advance fsm %1 %2) nil [1 2 3]) (a/advance-stream fsm nil [1 2 3] ::rejected)

Howto Use Automat ?

2014-08-26 Thread Timothy Washington
I'm trying to use Automat to map out transitions that are either of the paths below. - There can be many claims sent to an external service. Each claim, after being sent, can be :acknowledged or :rejected. - If a claim is :acknowledged, it can then either be :accepted or :rejected.

Clojurians in Prague

2014-08-26 Thread Dom Kiva-Meyer
I'm in Prague for a couple weeks. Any locals want to grab a beer and chat about Clojure[Script]? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderat

Optimizing lein profile for Heroku deployment

2014-08-26 Thread Jonathon McKitrick
I'm able to deploy my project, but 'lein repl' constantly times out. Yet this profile still loads all dependencies for 'lein repl'. Is there a way to prevent this? {:user {:dependencies [[pjstadig/humane-test-output "0.6.0"] [ring-mock "0.1.5"] [or