Re: functions left over in the vm

2010-09-28 Thread Phil Hagelberg
On Tue, Sep 28, 2010 at 3:15 PM, Michael Ossareh ossa...@gmail.com wrote:    http://github.com/Seajure/radagast Funny you should mention that, I actually have a script which uses radagast and greps out the missed functions which begin with my namespace. There's some customization built-in to

functions left over in the vm

2010-09-26 Thread Michael Ossareh
How are other people handling the process of reducing code in their projects? Situation: We've built a product, very rapidly thanks to being able to produce stuff very quickly in clojure. However now that it is somewhat settled I'm in the process of paring down the code, removing defunct fn's,

Re: functions left over in the vm

2010-09-26 Thread Phil Hagelberg
On Sun, Sep 26, 2010 at 2:56 PM, Michael Ossareh ossa...@gmail.com wrote: Situation: We've built a product, very rapidly thanks to being able to produce stuff very quickly in clojure. However now that it is somewhat settled I'm in the process of paring down the code, removing defunct fn's,

Re: functions left over in the vm

2010-09-26 Thread Robert McIntyre
I generally use the ns macro to jump around my namespaces (like I use ls to change directories in the shell) , and use a convenience function I wrote called ns-nuke, which gets rid of all functions defined in that ns. Then I use reload, another convenience function, which just uses that namespace