Re: Suggestion needed for namespace management in modular clojure app

2011-10-11 Thread Stuart Sierra
> Not just clojure. Solution for clojure only code is > simple. The application is a framework, which will expose > some API and modules consuming the API, can be written in > any JVM language. It is known that all modules will run > from same instance of JVM. Sounds like you may need something mo

Re: Suggestion needed for namespace management in modular clojure app

2011-10-10 Thread Vivek Khurana
On Sun, Oct 9, 2011 at 8:48 AM, Stephen Compall wrote: > On Fri, 2011-10-07 at 19:07 +0530, Vivek Khurana wrote: >> I would prefer to have a >> modules directory where each module will create a sub directory and >> all files in the module sub directory expose a single namespace. > > So it sounds l

Re: Suggestion needed for namespace management in modular clojure app

2011-10-08 Thread Stephen Compall
On Fri, 2011-10-07 at 19:07 +0530, Vivek Khurana wrote: > I would prefer to have a > modules directory where each module will create a sub directory and > all files in the module sub directory expose a single namespace. So it sounds like you intend for module writers to be writing Clojure, but wan

Suggestion needed for namespace management in modular clojure app

2011-10-07 Thread Vivek Khurana
Hi! I am working on a clojure app which needs to be modular. The module need to be pluggable. While I have figure out the pluggable part, I am facing issues with managing namespaces. I would prefer to have a modules directory where each module will create a sub directory and all files in the modu