Skip to content

Commit

Permalink
update readme for 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micah-droneup committed Jan 10, 2025
1 parent b9add23 commit af08e41
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ It's a TDD/BDD framework for [Clojure](http://clojure.org/) and [Clojurescript](
[Installation](#installation) | [Clojure](#clojure) | [ClojureScript](#clojurescript) | [Clojure CLR](#clojureclr)

# Installation

[![Clojars Project](http://clojars.org/speclj/latest-version.svg)](http://clojars.org/speclj)
[![Clojars Project](https://img.shields.io/clojars/v/speclj.svg)](https://clojars.org/speclj)

NOTE: Speclj 3.3+ requires Clojure 1.7+.

Expand All @@ -32,9 +31,9 @@ Include speclj in your `:dev` profile `:dependencies` and`:plugins`. Then change

```clojure
; - snip
:dependencies [[org.clojure/clojure "1.11.3"]]
:profiles {:dev {:dependencies [[speclj "3.4.9"]]}}
:plugins [[speclj "3.4.9"]]
:dependencies [[org.clojure/clojure "1.12.0"]]
:profiles {:dev {:dependencies [[speclj "3.6.0"]]}}
:plugins [[speclj "3.6.0"]]
:test-paths ["spec"]
```

Expand Down Expand Up @@ -140,7 +139,7 @@ Add a `spec` alias to your `deps.edn`.
```clojure
{
:aliases {:spec {:main-opts ["-m" "speclj.main" "-c"]
:extra-deps {speclj/speclj {:mvn/version "3.4.9"}}
:extra-deps {speclj/speclj {:mvn/version "3.6.0"}}
:extra-paths ["spec"]}}
}
```
Expand All @@ -161,7 +160,7 @@ Add a `spec` alias to your `deps-clr.edn`.
```clojure
{
:aliases {:spec {:main-opts ["-m" "speclj.main" "-c"]
:extra-deps {io.github.slagyr/speclj {:git/tag "3.5.0" :git/sha "5c79fdd"}}
:extra-deps {io.github.slagyr/speclj {:git/tag "3.6.0" :git/sha "b9add23"}}
:extra-paths ["spec"]}}
}
```
Expand Down Expand Up @@ -333,7 +332,7 @@ Here's an example alias for your `deps.edn`.
```clojure
{:aliases {:cov {:main-opts ["-m" "cloverage.coverage" "--runner" ":speclj" "-p" "src" "-s" "spec"]
:extra-deps {cloverage/cloverage {:mvn/version "1.2.4"}
speclj/speclj {:mvn/version "3.4.9"}}}}}
speclj/speclj {:mvn/version "3.6.0"}}}}}
```

Sadly, Cloverage doesn't offer a way to pass arguments to the runner (Speclj in this case). Speclj will use the
Expand Down

0 comments on commit af08e41

Please sign in to comment.