Hi in the deep into pharo book it is written Gofer new smalltalkhubUser: 'Moose' project: 'PetitParser'; package: 'ConfigurationOfPetitParser'; load. (Smalltalk at: #ConfigurationOfPetitParser) perform: #loadDefault But this is not correct. There is no loadDefault. Should I change it? Stef
yes because the current way to load projects is: Metacello new configuration: 'PetitParser'; smalltalkhubUser: 'Moose' project: 'PetitParser'; load. if you want to load a specific group, you should use the #load: message (current groups are Core, Tests, Parser and ParserIDE). Default will load all.
Le 28 mars 2017 à 10:02, Stephane Ducasse <stepharo.self@gmail.com> a écrit :
Hi
in the deep into pharo book it is written
Gofer new
smalltalkhubUser: 'Moose' project: 'PetitParser'; package: 'ConfigurationOfPetitParser';
load.
(Smalltalk at: #ConfigurationOfPetitParser) perform: #loadDefault
But this is not correct. There is no loadDefault.
Should I change it?
Stef
I will update the book because this pointer does not work either http://www.themoosebook.org/book/internals/petit-parser On Tue, Mar 28, 2017 at 11:48 AM, Christophe Demarey < christophe.demarey@inria.fr> wrote:
yes because the current way to load projects is:
Metacello new configuration: 'PetitParser'; smalltalkhubUser: 'Moose' project: 'PetitParser'; load.
if you want to load a specific group, you should use the #load: message (current groups are Core, Tests, Parser and ParserIDE). Default will load all.
Le 28 mars 2017 à 10:02, Stephane Ducasse <stepharo.self@gmail.com> a écrit :
Hi
in the deep into pharo book it is written
Gofer new
smalltalkhubUser: 'Moose' project: 'PetitParser'; package: 'ConfigurationOfPetitParser';
load.
(Smalltalk at: #ConfigurationOfPetitParser) perform: #loadDefault
But this is not correct. There is no loadDefault.
Should I change it?
Stef
participants (2)
-
Christophe Demarey -
Stephane Ducasse