in reply to Subversion layout for perl
The directory layout for SVN usually looks like this:
Inside the /trunk/ directory you usually put the layout for a module. There's a standard layout that most CPAN modules use. It looks along these lines (where most are optional):/trunk/ # <- development usually happens here /branches/ # <- for storing branches /tags/ # <- for storing tags
lib/ # .pm files t/ # unit tests bin/ # scripts extras/ # whatever.. examples/ doc/
Take a look at Module::Starter which might be helpful for you.
|
|---|