Liking cljdoc? Tell your friends :D

hara.code.manage.ns-rename


change-listclj

(change-list [old new] {:keys [write print] :as params} lookup project)

create list of changes made to existing files

(project/in-context (change-list '[hara.module.classloader hara.module.classloader] {:print {:function true :progress true}}))

create list of changes made to existing files

(project/in-context
 (change-list '[hara.module.classloader
               hara.module.classloader]
              {:print {:function true
                       :progress true}}))
raw docstring

move-listclj

(move-list [old new]
           {:keys [write print] :as params}
           _
           {:keys [source-paths test-paths root]})

create list of files that need to be moved

(project/in-context (move-list '[hara.module.classloader hara.module.classloader] {:print {:function true}}))

create list of files that need to be moved

(project/in-context
 (move-list '[hara.module.classloader
             hara.module.classloader]
            {:print {:function true}}))
raw docstring

ns-renameclj

(ns-rename [old new] {:keys [write print] :as params} lookup project)

moves both src and test files of the package

(project/in-context (refactor '[hara.lib.aether hara.module.deps] {:print {:function true}}))

moves both src and test files of the package

(project/in-context
 (refactor '[hara.lib.aether hara.module.deps]
          {:print {:function true}}))
raw docstring

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

× close