Skip to content

Instantly share code, notes, and snippets.

@dalehenrich
Created February 23, 2012 10:19
Show Gist options
  • Save dalehenrich/1892114 to your computer and use it in GitHub Desktop.
Save dalehenrich/1892114 to your computer and use it in GitHub Desktop.
Proposed Smalltalk project directory structure

##Monticello Package Structure

The basic idea is to store individual methods in files so that git can manage method-level history. The split between classes and extensions in the snapshot directory is differentiate between classes defined in a package and extension methods defined in the package:

+-Sample-Core.pkg\
  +-snapshot\
  | +-classes\
  | | +-SampleCore.class\
  | |   +-SampleCore.st
  | |   +-instance\
  | |     +-author.st
  | +-extensions\
  |   +-Object.class\
  |     +-instance\
  |       +-isSample.st
  +-.filetree
  +-categories.st
  +-initializers.st
  +-package
  +-version

##Repository Structure

The classic Monticello style is to store all packages in a single directory. The actual name of the directory doesn't matter. The specs in the metacello.st file contains the classic Metacello spec information:

+-sample
  +-core/
  | +-metacello.st
  | +-Sample-Core.pkg\
  | +-Sample-Platform.gemstone.pkg\
  | +-Sample-Platform.pharo.pkg\
  | +-Sample-Platform.squeak.pkg\
  | +-Sample-Tests.pkg\
  +-doc/
  +-license.txt
  +-README.md

##Alternate Project Structure

Packages are distributed across the core, platform, and tests directories. The package structure is the same, but the Metacello spec information is different so that packages can be referenced in the different directories:

+-alternate
  +-core/
  | +-metacello.st
  | +-Sample-Core.pkg\
  +-doc/
  +-platform/
  | +-metacello.st
  | +-Sample-Platform.gemstone.pkg\
  | +-Sample-Platform.pharo.pkg\
  | +-Sample-Platform.squeak.pkg\
  +-license.txt
  +-README.md
  +-tests/
  | +-metacello.st
  | +-Sample-Tests.pkg\
@dalehenrich
Copy link
Author

Bernardo,

Following the line of thought that 'extensions' is a better name than 'methods', perhaps 'snapshot' will be a better than 'definitions'....

@vonbecmann
Copy link

yes, i agree. The snapshot of a mc package with classes and extensions. it sounds good to me

@dalehenrich
Copy link
Author

Then a 'traits' directory probably makes sense for keeping trait definitions as well..

@sebastianconcept
Copy link

Well... the universe of devices is increasing and the market is getting "addicted" to that so it's reasonable to assume that every software product should work on different platforms.

In the other hand... can't you have completely different projects, one per platform, to achieve the same result?

But if this way is easier for smalltalkers then it would make sense.

@dalehenrich
Copy link
Author

With git, I think that using separate branches for the different platforms makes a lot of sense ... but when you do that it makes sharing fixes between the various branches a bit difficult ... with the standard git merge you to resolve conflicts and accept all changes, but having a branch per platform means that you want to preserve the platform specific differences and only accept the "common" changes ... which requires some discipline and knowledge ...

In the end I think that we need to have some experience with different techniques and pick the one that has the fewest flaws

@vonbecmann
Copy link

i forked it (here git://gist.github.com/1997065.git) and changed the name of the directories

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment