I have a product that I'm working on, Foo. It has currently roughly the following filesystem structure. It's composed of several logically-distinct modules. I want to package each of those modules so that I can make dependencies a bit more explicit.

I'd also like to continue being able to do a single checkout, though, and have my single solution, single build-script, etc available to me.

Something like how rspec does it; the rspec package depends on a set of sub-packages that can be individually maintained.

Edit: How best to:

  • make the modules inter-dependent
  • make the work-on-many-things-at-once-from-source-control-checkout experience work, in the sense of not duplicating things like build-automation, etc. I want to keep having a single solution so that ReSharper can find unused code throughout (this is a big legacy codebase), for example. ** So changes to a set of modules would require that I increment all of their versions at once, to correctly advance the dependencies.

.

/Foo.git
  /module1
    /src
      /module1
      /module1.specs (tests)
    /module1.sln  
    /module1.wrapdesc
    /version
  /module2
    /src
      /module2
      /module2.specs
    /module2.sln
    /module2.wrapdesc
    /version
  /Foo.sln
  /Rakefile.rb (I'm using ruby/rake to build)
  /Gemfile
  /Gemfile.lock
link|improve this question

71% accept rate
I'm not sure I understand what the question is getting at. Are you asking how to make those modules inter-dependent and how to configure this stuff for it to work? – serialseb Nov 23 '11 at 14:22
I guess I could package up the common automation, and deliver that into each module via a wrap...? – Peter Mounce Nov 25 '11 at 16:11
yes you could definitly do that. – serialseb Nov 30 '11 at 15:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.