Much better indeed!

Now, it would be useful to have the same in HTML format on the web as this is really not super easy to find. (I am often looking that what is on pages like�https://code.google.com/p/metacello/wiki/CreateMetacelloConfiguration)

Thanks!
Phil

---
Philippe Back
Dramatic Performance Improvements
Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027
Mail:phil@highoctane.be | Web: http://philippeback.eu
Blog: http://philippeback.be | Twitter: @philippeback
Youtube: http://www.youtube.com/user/philippeback/videos

High Octane SPRL
rue cour Boisacq 101 | 1301 Bierges | Belgium

Featured on the Software Process and Measurement Cast
http://spamcast.libsyn.com
Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller



On Fri, Jun 28, 2013 at 3:55 PM, Dale K. Henrichs <dale.henrichs@gemtalksystems.com> wrote:
Ah, at one point in time the tutorial was loaded by default ... sorry about that. to get the Metacello tutorial execute:

� ConfigurationOfMetacello project currentVersion load: 'Tutorial'

Then you can find the Metacello documentation under the Help menu in the Help Browser ...

Dale

From: phil@highoctane.be
To: "Pharo Development List" <pharo-dev@lists.pharo.org>
Sent: Friday, June 28, 2013 6:48:59 AM
Subject: Re: [Pharo-dev] Metacello doubt

I loaded ConfigurationOfProfStef but there is no MetacelloToolbox documentation in there.

What do I miss?

Phil

---
Philippe Back
Dramatic Performance Improvements
Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027
Blog: http://philippeback.be | Twitter: @philippeback

High Octane SPRL
rue cour Boisacq 101 | 1301 Bierges | Belgium

Featured on the Software Process and Measurement Cast
Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller



On Wed, Jun 26, 2013 at 11:56 PM, Dale K. Henrichs <dale.henrichs@gemtalksystems.com> wrote:
Phil,

Check out the System Help ... the API is documented under Metacello>>MetacelloToolBox ... under PrfStef>>Browse tutorials>>Inside Metacello Toolbox there are 5-6 lessons there are other Metacello tutorials there as well ...

Dale


From: phil@highoctane.be
To: "Pharo Development List" <pharo-dev@lists.pharo.org>
Sent: Wednesday, June 26, 2013 1:45:36 PM
Subject: Re: [Pharo-dev] Metacello doubt

While we are at it, is there any documentation for the MetacelloToolbox?

Couldn't find... Saw Sean's thing but nothing else.

Would be great!

TIA
Phil

---
Philippe Back
Dramatic Performance Improvements
Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027
Blog: http://philippeback.be | Twitter: @philippeback

High Octane SPRL
rue cour Boisacq 101 | 1301 Bierges | Belgium

Featured on the Software Process and Measurement Cast
Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller



On Wed, Jun 26, 2013 at 9:21 PM, Dale K. Henrichs <dale.henrichs@gemtalksystems.com> wrote:
Guido,

If the maintainer of a configuration would like to support bleeding edge loads that propagate through the dependent projects then they should specify which baseline version to use for each dependent project. For Native Boost the entry for AsmJit in the #baseline13: method could be changed to:

������� project: 'AsmJit'
��������� with: [
������������� spec
��������������� className: 'ConfigurationOfAsmJit';
"==>"������� versionString: #bleedingEdge;
��������������� repository: 'http://www.smalltalkhub.com/mc/Pharo/AsmJit/main' ];

Then the bleedingEdge load would be propagated through to the dependents ... but then you'd want the AsmJit configuration modified as well:)

Dale


From: "Guido Chari" <charig@gmail.com>
To: pharo-dev@lists.pharo.org
Sent: Wednesday, June 26, 2013 7:27:19 AM
Subject: [Pharo-dev] Metacello doubt

I have a question since i'm trying to create some jenkins job for the first time. Sorry if this was already discussed...

I have a dependency with for example NativeBoost. And i want NativeBoost in its bleedingEdge version. If I "loadBleedingEdge" NativeBoost is on its last version on every package but not its own dependencies as for example AsmJit. Is this the right behavior? How can i express to have not only my dependency but also the dependencies of my dependencies in its bleedingEdge version?