Skip to content

Commit

Permalink
New version for Cuke4duke 0.4.3-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
mjul committed Oct 28, 2010
1 parent a42d115 commit 6880b40
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 9 deletions.
12 changes: 12 additions & 0 deletions NEWS
@@ -1 +1,13 @@
Version 0.4.3-SNAPSHOT (Started October 27, 2010)
-------------------------------------------------
Upgraded to Cucumber cuke4duke 0.4.3-SNAPSHOT (this solves a lot of dependency issues).


Version 0.3.2 (September 27, 2010)
----------------------------------
Upgraded to Cucumber cuke4duke 0.3.2 and Clojure 1.2.0.


Version 0.0.1 (April 1, 2010)
-----------------------------
External facing changes for lein-cuke
14 changes: 9 additions & 5 deletions README.md
Expand Up @@ -3,17 +3,20 @@
lein-cuke is a [Leiningen](http://github.com/technomancy/leiningen) plugin that provides
[Cucumber](http://cukes.info) support via [cuke4duke](http://github.com/aslakhellesoy/cuke4duke)

For a tutorial on how to use lein-cuke and Cucumber in your Clojure
projects refer to my
[Cucumber Tutorial](http://github.com/mjul/cucumber-tutorial).

## Installation

Add something like `[lein-cuke "0.0.1-SNAPSHOT"]` to the `:dev-dependencies` block in your project.clj, like:
Add something like `[org.clojars.mjul/lein-cuke "0.4.3-SNAPSHOT"]` to the `:dev-dependencies` block in your project.clj, like:

(defproject pickles "0.0.1"
:description "Vinegar + cucumber + time"
:repositories [["clojars" "http://clojars.org/repo"]]
:dev-dependencies [[lein-cuke "0.0.1-SNAPSHOT"]])

:dev-dependencies [[org.clojars.mjul/lein-cuke "0.4.3-SNAPSHOT"]])

Look [here](http://clojars.org/lein-cuke) for the latest.
Look [here](http://clojars.org/org.clojars.mjul/lein-cuke) for the latest.

## Usage

Expand All @@ -22,4 +25,5 @@ Do this:
$ lein deps # install dependencies in lib/
$ lein cuke-gems # install needed gems
$ # create cucumber hierarchy - todo: add a target for this
$ lein cuke # start red-green-refactoring!
$ lein cuke # start red-green-refactoring!
$ lein cuke --verbose # to get verbose information from Cucumber
11 changes: 7 additions & 4 deletions project.clj
@@ -1,7 +1,10 @@
(defproject org.clojars.mjul/lein-cuke "0.3.2"
(defproject org.clojars.mjul/lein-cuke "0.4.3-SNAPSHOT"
:description "Cucumber runner for Leiningen (lein)"
:repositories {"cukes", "http://cukes.info/maven"}
:dependencies [[leiningen "1.3.1"]
[cuke4duke "0.3.2"]]
:repositories {;"codehaus" "http://repository.codehaus.org",
"cukes" "http://cukes.info/maven"}
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[leiningen "1.3.1"]
[cuke4duke "0.4.3-SNAPSHOT"]]
:dev-dependencies [[lein-clojars "0.6.0"]])

0 comments on commit 6880b40

Please sign in to comment.