"directory" repository?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

"directory" repository?

EstebanLM
Hi,
I wonder if a file repository is implemented?

I'm thinking on something like:

spec repository: 'directory://./repository'.

Does that exists?

Cheers,
Esteban

Reply | Threaded
Open this post in threaded view
|

Re: "directory" repository?

Miguel Cobá
El mié, 17-02-2010 a las 12:32 -0300, Esteban Lorenzano escribió:
> Hi,
> I wonder if a file repository is implemented?
>
> I'm thinking on something like:
>
> spec repository: 'directory://./repository'.
>
> Does that exists?

Just use the full path name:

baseline01:
        spec for: #pharo do: [
                spec blessing: #baseline.
                spec description: 'Initial baseline for Azteca'.
                spec repository: '/home/miguel/proyectos/azteca/mc'.

....

                        package: 'Azteca' with: [
                                spec requires: #('JSON' 'SeasideHelper')

version01:

...
        package: 'Azteca' with: 'Azteca-MiguelCoba.173'


That is it.

>
> Cheers,
> Esteban
>

--
Miguel Cobá
http://miguel.leugim.com.mx


Reply | Threaded
Open this post in threaded view
|

Re: "directory" repository?

EstebanLM
cool, thaks!

El 17/02/2010, a las 12:37p.m., Miguel Enrique Cobá Martinez escribió:

> El mié, 17-02-2010 a las 12:32 -0300, Esteban Lorenzano escribió:
>> Hi,
>> I wonder if a file repository is implemented?
>>
>> I'm thinking on something like:
>>
>> spec repository: 'directory://./repository'.
>>
>> Does that exists?
>
> Just use the full path name:
>
> baseline01:
> spec for: #pharo do: [
> spec blessing: #baseline.
> spec description: 'Initial baseline for Azteca'.
> spec repository: '/home/miguel/proyectos/azteca/mc'.
>
> ....
>
> package: 'Azteca' with: [
> spec requires: #('JSON' 'SeasideHelper')
>
> version01:
>
> ...
> package: 'Azteca' with: 'Azteca-MiguelCoba.173'
>
>
> That is it.
>
>>
>> Cheers,
>> Esteban
>>
>
> --
> Miguel Cobá
> http://miguel.leugim.com.mx
>
>