StéphaneDucasse
StéphaneDucasse
the following does not work either. ``` Metacello new baseline: 'TheNoteTaker'; repository: 'github://hernanmd/the-note-taker/src'; onConflict: [ :ex | ex useIncoming ]; onUpgrade: [ :ex | ex useIncoming ]; onDowngrade: [ :ex...
Normally basic* should never be overridden so this is normal that they are not. So that the subclass can always access the default basic behavior. Now so I see why...
Choise -> Choice
I did a review please take into account my comments.
I did a little pass and you can fix my points.
@jecisc could you have a look and see if we can package this in newTools? Tx
I closed this issue because there is another PR in the newTools repo.
When I load the PR https://github.com/pharo-project/pharo/pull/14878 I get a different error (this is normal) ``` ^ self class classInstaller make: [ :aBuilder | | superclass | superclass := self class...
How to recreate - put a self halt. as follows: ``` MetacelloProjectRegistry >> registrationFor: aMetacelloProjectRegistration ifPresent: presentBlock ifAbsent: absentBlock | baseName | self halt. .... ``` - Load a baseline...
I tried all kinds of combinations as bewlo ``` Metacello new baseline: 'TheNoteTaker'; repository: 'github://hernanmd/the-note-taker/src'; onUpgrade: [:ex :loaded :incoming | incoming baseName = 'Microdown' ifTrue: [ ex useIncoming ] ];...