zcaudate
zcaudate

Reputation: 14258

Are there any clojure libraries that provide the reloads the entire project

There is a great function in immutant.dev - reload-project! that takes your project.clj, looks at the changes, downloads the dependencies and loads the missing classes in your namespace http://immutant.org/documentation/current/interactive.html

Are there any libs that mimic this?

Upvotes: 4

Views: 125

Answers (2)

Rodrigo Taboada
Rodrigo Taboada

Reputation: 2727

If you're using Emacs the ritz project has a similar command: nrepl-ritz-reload-project. Take a look at this presentation to see it in action (the link goes directly to the nrepl-ritz-reload-project part).

Upvotes: 0

stand
stand

Reputation: 3132

I'm not sure this is what you're looking for but Stuart Sierra's tools.namespace project might be of interest.

Upvotes: 1

Related Questions