Hi Roberto, in the first case you have to add the methods in a category named: '*MyPackage', then Monticello versions it as an method "extension", a method of you package which is in a class that doesn't belong to your package. OrderedCollection>>myMethodExtension " I'm in a method category starting with an asterisk *" self doSomething. In the second case, you should put the class in your package, so it would be versioned (and be part of), your package, but still accessible throughout the image. But, if you think your new Roassal Layout is cool enough, then you should tell the package maintainers to add it to Roassal. Saludos, Fernando On Tue, Nov 27, 2012 at 12:12 PM, roberto.minelli@usi.ch < roberto.minelli@usi.ch> wrote:
Hi all,
I'm using Monticello to version my source code.
Suppose this use case: I need to add a message to the OrderedCollection class and I want my message to be versioned within my repository (i.e., when an user downloads my package she also get the new message in the OrderedCollection class.
And another one, suppose I create a new Layout for Roassal that suits my needs. I will create a class in the category 'Roassal-Layout' which is not versioned in my repository. Is there a way to version it?
Cheers, Roberto