File tree Expand file tree Collapse file tree 2 files changed +10
-12
lines changed Expand file tree Collapse file tree 2 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
- (defproject clojure-twitter " 1.2.5 "
1
+ (defproject clojure-twitter " 1.2.6-SNAPSHOT "
2
2
:description " Twitter Client API for Clojure"
3
- :dependencies [[org.clojure/clojure " 1.2.0" ]
4
- [org.clojure/clojure-contrib " 1.2.0" ]
5
- [clj-oauth " 1.2.10" ]
6
- [com.twinql.clojure/clj-apache-http " 2.3.1" ]]
7
- :dev-dependencies [[swank-clojure " 1.2.1" ]])
3
+ :dependencies [[org.clojure/clojure " 1.3.0" ]
4
+ [org.clojure/data.json " 0.1.2" ]
5
+ [clj-oauth " 1.3.1-SNAPSHOT" ]
6
+ [com.twinql.clojure/clj-apache-http " 2.3.2-SNAPSHOT" ]])
Original file line number Diff line number Diff line change 1
1
(ns twitter
2
- (:use [clojure.contrib.json :only [read-json]]
3
- [clojure.contrib.java-utils :only [as-str]])
2
+ (:use [clojure.data.json :only [read-json]])
4
3
(:require [clojure.set :as set]
5
4
[clojure.string :as string]
6
5
[com.twinql.clojure.http :as http]
13
12
14
13
(declare status-handler )
15
14
16
- (def *oauth-consumer* nil )
17
- (def *oauth-access-token* nil )
18
- (def *oauth-access-token-secret* nil )
19
- (def *protocol* " http" )
15
+ (def ^:dynamic *oauth-consumer* nil )
16
+ (def ^:dynamic *oauth-access-token* nil )
17
+ (def ^:dynamic *oauth-access-token-secret* nil )
18
+ (def ^:dynamic *protocol* " http" )
20
19
21
20
; ; Get JSON from clj-apache-http
22
21
(defmethod http /entity-as :json [entity as state]
You can’t perform that action at this time.
0 commit comments