Skip to content

Commit fcec8c6

Browse files
Remove some mentions of Boot
1 parent ad6cea5 commit fcec8c6

File tree

4 files changed

+12
-19
lines changed

4 files changed

+12
-19
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ commands:
5555
files:
5656
description: Files to consider when creating the cache key
5757
type: string
58-
default: "deps.edn project.clj build.boot"
58+
default: "deps.edn project.clj"
5959
cache_version:
6060
type: string
6161
description: "Change this value to force a cache update"

doc/modules/ROOT/pages/usage.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
== Prerequisites
44

5-
`cider-nrepl` supports only Clojure(Script) 1.9+ and Java 8+.
5+
`cider-nrepl` supports only Clojure(Script) 1.10+ and Java 8+.
66

77
Leiningen users will need to have version 2.8.3 or newer installed.
8-
Boot users will need to have version 2.8.2 or newer installed.
98

109
== Via Leiningen
1110

project.clj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@
105105
:jvm-opts ["-Djava.util.logging.config.file=test/resources/logging.properties"
106106
"-Dcider.internal.testing=true"]
107107
:resource-paths ["test/resources"]
108-
:dependencies [[boot/base "2.8.3"]
109-
[boot/core "2.8.3" :exclusions [org.tcrawley/dynapath]]
110-
;; 1.3.7 and 1.4.7 are working, but we need 1.3.7 for JDK8
108+
:dependencies [;; 1.3.7 and 1.4.7 are working, but we need 1.3.7 for JDK8
111109
[ch.qos.logback/logback-classic "1.3.7"]
112110
[org.clojure/test.check "1.1.1"]
113111
[org.apache.httpcomponents/httpclient "4.5.14" :exclusions [commons-logging]]
@@ -179,7 +177,7 @@
179177
:eastwood [:test
180178
{:plugins [[jonase/eastwood "1.4.0"]]
181179
:eastwood {:config-files ["eastwood.clj"]
182-
:exclude-namespaces [cider.nrepl.middleware.test-filter-tests]
180+
:exclude-namespaces [cider.nrepl.middleware.test-filter-tests cider.tasks]
183181
:ignored-faults {:unused-ret-vals-in-try {cider.nrepl.middleware.profile-test [{:line 25}]}
184182
:suspicious-test {cider.nrepl.middleware.profile-test [{:line 25}]}}}}]
185183

test/clj/cider/nrepl/middleware/info_test.clj

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -329,18 +329,14 @@
329329
(is (= "#{:public}" (:modifiers individual)))))
330330

331331
(testing "Boot support"
332-
(try
333-
(System/setProperty "fake.class.path" (System/getProperty "java.class.path"))
334-
(let [response (session/message {:op "info" :sym "as->" :ns "user"})]
335-
(is (= #{"done"} (:status response))
336-
(pr-str response))
337-
(is (= "clojure.core" (:ns response)))
338-
(is (= "as->" (:name response)))
339-
(is (= "[expr name & forms]" (:arglists-str response)))
340-
(is (= "true" (:macro response)))
341-
(is (-> response ^String (:doc) (.startsWith "Binds name to expr, evaluates"))))
342-
(finally
343-
(System/clearProperty "fake.class.path"))))
332+
(let [response (session/message {:op "info" :sym "as->" :ns "user"})]
333+
(is (= #{"done"} (:status response))
334+
(pr-str response))
335+
(is (= "clojure.core" (:ns response)))
336+
(is (= "as->" (:name response)))
337+
(is (= "[expr name & forms]" (:arglists-str response)))
338+
(is (= "true" (:macro response)))
339+
(is (-> response ^String (:doc) (.startsWith "Binds name to expr, evaluates")))))
344340

345341
(testing "get protocol info"
346342
(let [reply (session/message {:op "info"

0 commit comments

Comments
 (0)