Skip to content

Commit

Permalink
adjusted project and README files to support testing vs multiple vers…
Browse files Browse the repository at this point in the history
…ions; changed to be deployed to Clojars
  • Loading branch information
Alex Baranosky committed May 9, 2013
1 parent 220e8d6 commit ca9ef4c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 17 deletions.
31 changes: 26 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# kits
# Runa's Kits

Runa base library. The initial release has been refactored from the
pythia.kits namespace.
Runa's core utilities. Please use and enjoy.

# tests
Run them with ./run-tests.sh. This will run all unit tests in Clojure 1.2 - 1.5, ensuring this library is usable by the widest number of projects.
Usage
-----

```clj
[org.clojars.runa/kits "1.5.1"]
```

```clj
(require '[kits.map :refer [map-keys]])
```

Room For Contribution
---------------------

* Doc strings

Tests
-----

Run tests vs all supported Clojure versions:

```
lein run-tests # using Leningen 2
```
25 changes: 13 additions & 12 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
(defproject com.runa/kits "1.5.1"
:description "Runa base libraries"
(defproject org.clojars.runa/kits "1.5.1"
:description "Runa's core utilities."
:min-lein-version "2.0.0"
:license {:name "MIT License"
:url "http://mit-license.org/"}
:url "https://github.com/runa-dev/kits"
:plugins [[jonase/eastwood "0.0.2"]
[lein-cloverage "1.0.2"]
[lein-kibit "0.0.7"]
[lein-swank "1.4.4"]
[s3-wagon-private "1.1.2"]]
:repositories {"releases" {:url "s3p://runa-maven/releases/"
:creds :gpg}}
[lein-swank "1.4.4"]]
:dependencies [[org.clojure/clojure "1.5.1"]
[cheshire "5.0.1"]
[org.clojars.runa/clj-utils "1.2.8"]
[org.clojure/java.jdbc "0.2.3"]
[org.clojure/tools.logging "0.2.4"]
[clojure-csv/clojure-csv "2.0.0-alpha1"]]
:warn-on-reflection true
:profiles {:dev {:dependencies [[org.clojars.runa/conjure "2.0.0"]
[lein-multi "1.1.0"]
[slamhound "1.3.3"]]}
:1.3.0 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4.0 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5.1 {:dependencies [[org.clojure/clojure "1.5.1"]]}})
:1.4.0 {:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojars.runa/conjure "2.0.0"]]}
:1.5.0 {:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojars.runa/conjure "2.0.0"]]}}
:aliases {"run-tests" ["with-profile" "1.4.0:1.5.0" "test"]
"slamhound" ["run" "-m" "slam.hound"]})

(cemerick.pomegranate.aether/register-wagon-factory!
"s3p" #(eval '(org.springframework.aws.maven.PrivateS3Wagon.)))

0 comments on commit ca9ef4c

Please sign in to comment.