Fixed the readme example and updated the .gitignore to exclude /target/

This commit is contained in:
Adam Wynne 2013-02-05 16:42:54 +00:00
parent 128bfe8c37
commit 15153bf062
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View file

@ -5,5 +5,6 @@ empty.config
.lein-failures
/lib/
/classes/
/target/
.lein-deps-sum
.lein-plugins

View file

@ -103,7 +103,7 @@ All of the API calls will return the full HTTP response of the request, includin
*user-access-token-secret*))
; retrieves the user stream, waits 1 minute and then cancels the async call
(def ^:dynamic *response* (user :oauth-creds my-creds))
(def ^:dynamic *response* (user-stream :oauth-creds my-creds))
(Thread/sleep 60000)
((:cancel (meta *response*)))

View file

@ -1 +0,0 @@
([:dependencies ([org.clojure/clojure "1.4.0"] [org.clojure/data.json "0.2.1"] [http.async.client/http.async.client "0.5.0"] [org.clojars.adamwynne/clj-oauth "1.2.19"])])