Skip to content

FiV0/kusonga

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kusonga

Clojars Project cljdoc badge

Renaming and moving namespaces.


The library is mainly an extraction from mranderson's move namespace. It allows you to rename namespaces as well as your whole project across clj, cljc and cljs files. As clojure is a dynamic language this won't work in all cases, but should work for anything reasonable.

(require '[kusonga.move :as move])

(move/move-ns 'old.namespace.name
              'new.namespace.name
              src-dir ; where to find the namespace
              [src-dir another-dir]) ; directories where to rename occurences

;; in case one wants to only move the Clojure namespace
(move/move-ns 'old.namespace.name 'new-namespace-name src-dir ".clj" [src-dir another-dir])

In case you want to rename your project there is a function to replace the prefix of all namespaces that match.

(move/rename-prefix 'io.my-cool-app 'com.my-awesome-app dirs)

Beware that moving and renaming namespaces also affects edn files. Namespaced keys and symbols are affected whenever the corresponding namespace gets moved.

{:foo.bar/toto nil
 foo.bar nil
 :foo.toto/bar nil}

becomes

{:foo.fizz/toto nil
 foo.fizz nil
 :foo.toto/bar nil}

when renaming the namespace 'foo.bar to 'foo.fizz.

Test

Tests can be run via

clojure -X:test

Contributing

If you find a case where the library does do what it is expected to do, please file an issue. PR's are welcome.

Previous work

License

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Renaming and moving namespaces in Clojure(script)

Resources

License

Stars

Watchers

Forks

Packages

No packages published