This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Requires at least the Spec version from Pharo 2.0" | |
| layout widget | | |
model := DynamicComposableModel new. | |
layout := SpecLayout composed. | |
layout newColumn: [ :col | | |
{1. 2. 3} do: [:e | | selector | | |
selector := ('accessorTo', e asString) asSymbol. | |
model instantiateModels: {selector. #TextInputFieldModel}. | |
widget := model perform: selector. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"script by Damien Cassou originaly from: https://code.google.com/p/smalltalk-hub/issues/detail?id=12" | |
| source goSource destination goDestination files destinationFiles | | |
source := MCHttpRepository location: '<url-to-source-sepository>'. | |
destination := MCHttpRepository | |
location: '<url-to-destination-sepository>' | |
user: '<login>' | |
password: '<pass>'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Metacello new | |
baseline: #Project; | |
repository: 'github://Uko/Project:branch'; | |
load |