Re: [Pharo-dev] [Metacello] Getting all working copies from a configuration

2015-02-27 Thread Dale Henrichs
Guillermo, I think that Sean is right, the MetacelloPackageLoadDirective will have a GoferResolvedReference in the externalReference slot for the packages to be loaded and you can send version to that ... I suggest you use the scriptting api and use `fetch` to get what I think you want:

Re: [Pharo-dev] [Metacello] Getting all working copies from a configuration

2015-02-27 Thread Sean P. DeNigris
Guillermo Polito wrote > I know that I can do a #record to get the list of specs of a particular > version. I'm not sure I understand... How does your use case differ from what #record provides? What has always worked for me is "(ConfigurationOfXXX project version: #'1.0') record loadDirective"

[Pharo-dev] [Metacello] Getting all working copies from a configuration

2015-02-27 Thread Guillermo Polito
Hi all, (and particularly Dale :) I want to get the code (classes, methods...) that will be loaded by a metacello configuration *without* installing it inside the image. (ConfigurationOfXXX project version: #'1.0') fetchCode "or something like that" I saw that there is a #fetch method in the Met