Added documentation TODOs.

This commit is contained in:
Phil Hagelberg 2010-08-16 22:05:24 -07:00
parent 7e4a5c09c2
commit a920ab98e5
5 changed files with 11 additions and 0 deletions

View file

@ -78,6 +78,8 @@ another hook. Hooks are loaded by looking for all namespaces under
leiningen.hooks.* on the classpath and loading them in alphabetical
order.
TODO: document hook loading
See [the documentation for
Hooke](http://github.com/technomancy/robert-hooke/blob/master/README.md)
for more details.

View file

@ -57,6 +57,10 @@ project, but here are the commonly-used tasks:
Use <tt>lein help</tt> to see a complete list. <tt>lein help
$TASK</tt> shows the usage for a specific one.
TODO: document chaining tasks
TODO: document user-level init script and plugins
## Configuration
Place a project.clj file in the project root like this:

View file

@ -293,6 +293,8 @@ You can run a regular (non-uber) jar with the <tt>java</tt>
command-line tool, but that requires constructing the classpath
yourself, so it's not a good solution for end-users.
TODO: document shell wrappers
### Publishing
If your project is a library and you would like others to be able to

View file

@ -70,6 +70,7 @@
(recur port)))
(defn repl
;; TODO: document socket repl
"Start a repl session for the current project."
[project]
(let [host (or (System/getenv "LEIN_REPL_HOST") "localhost")

View file

@ -6,6 +6,7 @@
Leiningen TODOs
* For 1.4.0 or later
** TODO add option to use ~/.m2-based classpath instead of copying to lib/?
** TODO lein add $DEPENDENCY (inserts it into :dependencies in project.clj)
** TODO classifiers for specifying what clojure version to use?
** TODO test classification using metadata; run a subset of tests
@ -13,6 +14,7 @@ Leiningen TODOs
** TODO re-compile all deps with current clojure version
** TODO specify min. lein version in project.clj
* For 1.3.0
** DONE :omit-source
** DONE lein install $PROJECT (works outside project root)
Possibly take some of this from cljr?
** DONE write shell wrappers on install