Liking cljdoc? Tell your friends :D

leiningen.try


->dep-pairsclj

From a sequence of command-line args describing dependency-version pairs, return a list of vector pairs. If no version is given, 'RELEASE' will be used.

Example: (->dep-pairs ["clj-time" ""0.5.1"]"]) ; -> ([clj-time "0.5.1"])

(->dep-pairs ["clj-time" ""0.5.1""]) ; -> ([clj-time "0.5.1"])

(->dep-pairs ["clj-time" "conformity"]) ; -> ([clj-time "RELEASE"] [conformity "RELEASE"])

From a sequence of command-line args describing dependency-version pairs,
return a list of vector pairs. If no version is given, 'RELEASE' will be
used.

Example:
(->dep-pairs ["clj-time" "\"0.5.1\"]"])
; -> ([clj-time "0.5.1"])

(->dep-pairs ["clj-time" "\"0.5.1\""])
; -> ([clj-time "0.5.1"])

(->dep-pairs ["clj-time" "conformity"])
; -> ([clj-time "RELEASE"] [conformity "RELEASE"])
sourceraw docstring

add-reload-data-readers-injectionclj

(add-reload-data-readers-injection project)

Add injection to project map that lets the REPL reload data readers. This is necessary in cases where no new JVM is spun up, thus clojure.core and the available data readers are not reloaded.

Add injection to project map that lets the REPL reload data readers. This is necessary
in cases where no new JVM is spun up, thus `clojure.core` and the available data readers
are not reloaded.
sourceraw docstring

tryclj

(try project & args)

Launch REPL with specified dependencies available.

Usage:

lein try io.rkn/conformity "0.2.1" com.datomic/datomic-free "0.8.4020.26" lein try io.rkn/conformity 0.2.1 lein try io.rkn/conformity # This uses the most recent version

Launch REPL with specified dependencies available.

Usage:

  lein try io.rkn/conformity "0.2.1" com.datomic/datomic-free "0.8.4020.26"
  lein try io.rkn/conformity 0.2.1
  lein try io.rkn/conformity # This uses the most recent version
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close