Problem deploying to heroku using the boot buildpack

2015-03-19 Thread Taylor Sando
When I try to deploy an application using boot I get: -> Fetching custom git buildpack... done -> BootClojure app detected -> Installing OpenJDK 1.8... /tmp/buildpack_8dd5d6e1eb90146982470bbee05eb89d/bin/compile: 192: /tmp/buildpack_8dd5d6e1eb90146982470bbee05eb89d/bin/compile: Bad s

Re: Problem deploying to heroku using the boot buildpack

2015-03-19 Thread Taylor Sando
I made a buildpack based on the leiningen one and the other boot buildpack. This one seems to work properly: https://github.com/taylorSando/heroku-buildpack-clojure On Thursday, March 19, 2015 at 9:09:06 AM UTC-5, Taylor Sando wrote: > > When I try to deploy an application using boot

Is there a prettify command in emacs for clojure?

2014-02-07 Thread Taylor Sando
Let us say you had this: (defn create-new-canvas-text [inputs] (let [{text-selected-id :new} (dataflow/old-and-new inputs [:design :params :text :selected-id]) {text-params :new} (dataflow/old-and-new inputs [:design :params :text]) text-value (:value text-params) ]

leiningen checkout dependencies

2013-02-05 Thread Taylor Sando
I have a main project and a subproject and I'm trying to get them to work together. I created the checkouts folder in the main project, and made a symlink to the subproject in it. I use lein repl in the main project, and then I make a (require 'subproject.ns). It works in the sense that it's

Re: leiningen checkout dependencies

2013-02-05 Thread Taylor Sando
That worked, thanks. -- -- 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 moderated - please be patient with your first post. To unsubscribe from this g

Problems trying to run the M003 branch of clojurescript one

2012-09-18 Thread Taylor Sando
I'm having trouble getting the M003 branch to work. I would like to update the project so that it will work with the newest dependencies, and work with leiningen 2. The problem is that when I do: lein repl (go) The chrome browser loads properly, and the page works, but I can't connect with th

Re: ClojureScript One Architecture

2012-11-28 Thread Taylor Sando
Well since Clojurescript, and by extension Clojurescript One was built on top of Google Closure, I guess you could use that. I know the history features from Clojurescript One use are a thin layer over the existing history features in Google Closure. The problem with Google Closure is that it

Reader syntax for uri objects

2013-01-09 Thread Taylor Sando
I am looking for a way to transfer URI objects from a clojure client to a clojurescript client. The printed representation of a java.net.URI object is # The problem is that I can't read in this data when it's structured like that. For example, I'd like to be able to pass this data strucutre

Re: Reader syntax for uri objects

2013-01-09 Thread Taylor Sando
On Thursday, 10 January 2013 12:20:53 UTC+11, Taylor Sando wrote: >> >> I am looking for a way to transfer URI objects from a clojure client to a >> clojurescript client. The printed representation of a java.net.URI object >> is # The problem is that I can't read in

Re: Reader syntax for uri objects

2013-01-09 Thread Taylor Sando
this to make javaURI print as a string or as a tagged literal if > you need it. > > D > > On Thursday, 10 January 2013 12:42:33 UTC+11, Taylor Sando wrote: >> >> The URIs are coming from a datomic database that actually stores the >> values as java.net.URIs. All I