Clojure Layer - Updated docs for Cider manual quick start

Updated documentation for Clojure layer to currently recommended versions of
build tools and `cider-nrepl`, ensuring that connecting to a manually run
Clojure REPL works correctly with the current version of CIDER.

Leiningen version 2.9.0
Boot version 2.8.2
`cider-nrepl` 0.21.1
This commit is contained in:
John Stevenson 2019-03-21 15:05:14 +00:00 committed by duianto
parent cd27276b29
commit 074588475b
2 changed files with 7 additions and 4 deletions

View File

@ -1053,6 +1053,9 @@ Other:
(thanks to André Peric Tavares)
- Remove =clojure-cheatsheet= as it is part of cider now
(thanks to Eugene Yaremenko)
- Update doc for Cider manual quick start -`cider-connect`. Leiningen
version 2.9 and Boot versions 2.8.2, ~cider-nrepl~ version 0.21.1
(thanks to John Stevenson)
**** Coffeescript
- Improvements:
- Added basic autocompletion (thanks to Codruț Constantin Gușoi)

View File

@ -120,7 +120,7 @@ sure the necessary dependencies are present, and the necessary nREPL middlewares
are enabled.
*** Quick Start with boot
- Install =boot= (see [[https://github.com/boot-clj/boot#user-content-install]])
- Install =boot= 2.8.2 or newer (see [[https://github.com/boot-clj/boot#user-content-install]])
- Create a file =~/.boot/profile.boot= with the following content:
#+BEGIN_SRC clojure
@ -130,7 +130,7 @@ are enabled.
;; When running an older version of CIDER (pre 0.18), use the
;; version that best matches M-x cider-version. For versions since
;; 0.18.0 use whatever version is the most recent.
'[cider/cider-nrepl "0.19.0-SNAPSHOT"]
'[cider/cider-nrepl "0.21.1"]
;; Only necessary when using clj-refactor
'[refactor-nrepl "2.4.0"]
@ -145,7 +145,7 @@ are enabled.
#+END_SRC
*** Quick Start with lein
- Install =lein= version 2.5.2 or newer (see [[https://leiningen.org/#install]])
- Install =lein= version 2.9.0 or newer (see [[https://leiningen.org/#install]])
- Create a file =~/.lein/profiles.clj= with the following content:
#+BEGIN_SRC clojure
@ -153,7 +153,7 @@ are enabled.
{:plugins [;; When running an older version of CIDER (pre 0.18), use the
;; version that best matches M-x cider-version. For versions since
;; 0.18.0 use whatever version is the most recent.
[cider/cider-nrepl "0.19.0-SNAPSHOT"]
[cider/cider-nrepl "0.21.1"]
;; Only necessary when using clj-refactor
[refactor-nrepl "2.4.0"]