Re: [Pharo-project] ConfigurationOf

2013-04-06 Thread roberto.mine...@usi.ch
On Apr 6, 2013, at 10:26 AM, stephane ducasse wrote: > > On Apr 5, 2013, at 11:58 AM, roberto.mine...@usi.ch wrote: > >> Hi, >> >> I build the ConfigurationOf for my current project and it works fine, but I >> have some doubts. >> My project has dependencies on two other projects, namely Spy

Re: [Pharo-project] ConfigurationOf

2013-04-06 Thread stephane ducasse
On Apr 5, 2013, at 11:58 AM, roberto.mine...@usi.ch wrote: > Hi, > > I build the ConfigurationOf for my current project and it works fine, but I > have some doubts. > My project has dependencies on two other projects, namely Spy and Fuel. > In my ConfigurationOf I'm loading these two projects b

Re: [Pharo-project] ConfigurationOf

2013-04-05 Thread roberto.mine...@usi.ch
Thanks Martin and Diego for your answers! On Apr 5, 2013, at 1:30 PM, Diego Lont wrote: > Depends a bit on which platforms you want it to run, and like Martin says, > you should be ok. For removing it you have two options > > 1) remove the projects for pharo2.0 like this: > > spec for:

Re: [Pharo-project] ConfigurationOf

2013-04-05 Thread Diego Lont
Depends a bit on which platforms you want it to run, and like Martin says, you should be ok. For removing it you have two options 1) remove the projects for pharo2.0 like this: spec for: #'pharo2.x' do:[ spec removeProject: 'Spy';

Re: [Pharo-project] ConfigurationOf

2013-04-05 Thread Martin Dias
Hey Roberto, AFAIK, it should not load a new version of Fuel. Is it? Your spec should be equivalent to evaluating the following: Gofer it squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfFuel'; load. (ConfigurationOfFuel project version: #stable) load. which in my 2.0 im

[Pharo-project] ConfigurationOf

2013-04-05 Thread roberto.mine...@usi.ch
Hi, I build the ConfigurationOf for my current project and it works fine, but I have some doubts. My project has dependencies on two other projects, namely Spy and Fuel. In my ConfigurationOf I'm loading these two projects before fetching my code. The point is that, for example, I'm loading Fuel

[Pharo-project] ConfigurationOf### in PharoKernel 1.4

2011-07-29 Thread Adrien BARREAU
Hi all, I'm triying to load some code (Coral) in the Pharo Kernel 1.4 image. Marcus told me to use the image with Gofer and Network. I suceeded to load the ConfigurationOfCoral package, but I can not load it. I tried to load another ConfigurationOf### and the result is the same, it raises an e

Re: [Pharo-project] ConfigurationOf Question

2011-01-20 Thread Mariano Martinez Peck
> > Yes that is correct. > > #latestVersion filters out versions with #baseline, #broken, or > #development blessings... > > If you want the really LAST version (regardless its blessing), you can use #lastVersion instead of #latestVersion Mariano > >

Re: [Pharo-project] ConfigurationOf Question

2011-01-19 Thread Dale Henrichs
On 01/19/2011 01:24 PM, Stéphane Ducasse wrote: hi guys what should be the load or loadDefault definition if I want to load the latest version as defined by a method of this style? version02: spec spec for: #common do: [ spec repository: 'http://www.squeaksource.com/Soup'.

[Pharo-project] ConfigurationOf Question

2011-01-19 Thread Stéphane Ducasse
hi guys what should be the load or loadDefault definition if I want to load the latest version as defined by a method of this style? version02: spec spec for: #common do: [ spec repository: 'http://www.squeaksource.com/Soup'. spec package: 'Soup-Cor