Skip to content

Commit

Permalink
Merge pull request #19 from tmarble/issue-13
Browse files Browse the repository at this point in the history
Commented out CIDER dependency in build.boot
  • Loading branch information
tmarble authored Jul 30, 2017
2 parents 4433b0a + 34cf002 commit acb9b0b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. This change
### [Unreleased]

Changed
- *TBD*
- Commented out CIDER dependency in build.boot (Closes #13)

### [3.0.0-beta2-clj0] - 2016-08-10

Expand Down
37 changes: 24 additions & 13 deletions build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,6 @@
:scm {:url project-url}
:license {"Apache-2.0" "http://opensource.org/licenses/Apache-2.0"}})

(deftask clj-dev
"Clojure REPL for CIDER"
[]
(comp
(cider)
(repl :server true)
(wait)))

(deftask cider-boot
"Cider boot params task"
[]
(clj-dev))

(deftask build-target
"Build the project locally as a JAR."
[d dir PATH #{str} "the set of directories to write to (target)."]
Expand All @@ -72,3 +59,27 @@
s selenium VERSION str "selenium version [latest]"]
(set-env! :source-paths #{"generate"})
(update-code :dry-run dry-run :selenium selenium))

;; For Emacs if you Customize your Cider Boot Parameters to 'cider-boot'
;; then this task will be invoked upon M-x cider-jack-in
;; which is on C-c M-j
;; https://cider.readthedocs.io/en/latest/up_and_running/

;; These tasks is conditional on having cider defined which typically
;; is done in ~/.boot/profile.boot
;;
;; FFI see also: https://github.com/tmarble/tenzing3
;; Uncomment below if you use CIDER

;; (deftask clj-dev
;; "Clojure REPL for CIDER"
;; []
;; (comp
;; (cider)
;; (repl :server true)
;; (wait)))

;; (deftask cider-boot
;; "Cider boot params task"
;; []
;; (clj-dev))

0 comments on commit acb9b0b

Please sign in to comment.