Installing STON from a playground/workspace

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

Installing STON from a playground/workspace

Offray
Hi,

Last night I was playing with STON for a while. There is still things to
learn (and I have already made my questions in the proper thread) but so
far I have really like it.

I installed it from Configuration Browser, but I would like to install
it from a playground/workspace. I know where is located at SmalltalkHub
and I can see there the Monticello registration, but in the chapter
about Monticello this seems to be used for source control with graphical
tools. How can I install STON from a playground/workspace instead of
using graphical tools like Monticello or Configuration Browser? How can
I know this from the SmalltalkHub page?

Thanks

Offray

Reply | Threaded
Open this post in threaded view
|

Re: Installing STON from a playground/workspace

philippeback


On Thu, Aug 28, 2014 at 7:25 PM, Offray Vladimir Luna Cárdenas <[hidden email]> wrote:
Hi,

Last night I was playing with STON for a while. There is still things to learn (and I have already made my questions in the proper thread) but so far I have really like it.

I installed it from Configuration Browser, but I would like to install it from a playground/workspace. I know where is located at SmalltalkHub and I can see there the Monticello registration, but in the chapter about Monticello this seems to be used for source control with graphical tools. How can I install STON from a playground/workspace instead of using graphical tools like Monticello or Configuration Browser? How can I know this from the SmalltalkHub page?

Thanks

Offray



Reply | Threaded
Open this post in threaded view
|

Re: Installing STON from a playground/workspace

Offray
Hi Phil and thanks,

I've tried this two:

[1]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Gofer new
     url: 'http://www.smalltalkhub.com/mc/SvenVanCaekenberghe/STON/main';
     package: 'STON';
     load.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-

and:

[2]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Gofer new
     smalltalkhubUser: 'SvenVanCaekenberghe' project: 'STON';
     package: 'STON';
     load.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Both of them gave me "Error: Unable to resolve STON.

I have already seen the Gofer chapter you point me (sorry to forgot to
mention that), but it doesn't seem pretty clear, because it says:

[3]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Here is a typical Gofer script: it says that we want to load the package
PBE2GoferExample from the repository PBE2GoferExample
that is available on http://www.smalltalkhub.com
in the account of JannikLaval.


Gofer new
    url: 'http://smalltalkhub.com/mc/PharoBooks/GoferExample/main';
    package: 'PBE2GoferExample';
    load
=-=-=-=-=-=-=-=-=-=-=-=-=-=-


But if I try something similar without any mention to the user (as in
[1]) or if I try loading it like with my own repo (as in [2]) I get the
same errror. There is something I'm missing about how to get the proper
Gofer command from a url in SmalltalkHub and I would like to have it
clear, because guessing is not working.

Cheers,

Offray


On 08/28/2014 01:12 PM, [hidden email] wrote:

> http://pharobooks.gforge.inria.fr/PharoByExampleTwo-Eng/latest/Gofer.pdf
>
> may help.
>
> Phil
>
>
>
> On Thu, Aug 28, 2014 at 7:25 PM, Offray Vladimir Luna Cárdenas
> <[hidden email] <mailto:[hidden email]>> wrote:
>
>      Hi,
>
>      Last night I was playing with STON for a while. There is still things to
>      learn (and I have already made my questions in the proper thread) but so far
>      I have really like it.
>
>      I installed it from Configuration Browser, but I would like to install it
>      from a playground/workspace. I know where is located at SmalltalkHub and I
>      can see there the Monticello registration, but in the chapter about
>      Monticello this seems to be used for source control with graphical tools.
>      How can I install STON from a playground/workspace instead of using
>      graphical tools like Monticello or Configuration Browser? How can I know
>      this from the SmalltalkHub page?
>
>      Thanks
>
>      Offray
>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: Installing STON from a playground/workspace

Sven Van Caekenberghe-2
Offray,

I am glad you like STON.

It is best to use a Metacello configuration, if there is one.

Then, the load script would be:

Gofer it
 smalltalkhubUser: 'SvenVanCaekenberghe' project: 'STON';
 configuration;
 loadStable.

STON lives both in StHub and on SS3, so alternatively you can do:

Gofer it
 url: 'http://ss3.gemstone.com/ss/STON';
 configuration;
 loadStable.

HTH,

Sven

PS: the error you made is that the package is called STON-Core ;-)

On 28 Aug 2014, at 22:52, Offray Vladimir Luna Cárdenas <[hidden email]> wrote:

> Hi Phil and thanks,
>
> I've tried this two:
>
> [1]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
> Gofer new
>    url: 'http://www.smalltalkhub.com/mc/SvenVanCaekenberghe/STON/main';
>    package: 'STON';
>    load.
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-
>
> and:
>
> [2]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
> Gofer new
>    smalltalkhubUser: 'SvenVanCaekenberghe' project: 'STON';
>    package: 'STON';
>    load.
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-
>
> Both of them gave me "Error: Unable to resolve STON.
>
> I have already seen the Gofer chapter you point me (sorry to forgot to mention that), but it doesn't seem pretty clear, because it says:
>
> [3]=-=-=-=-=-=-=-=-=-=-=-=-=-=-
> Here is a typical Gofer script: it says that we want to load the package
> PBE2GoferExample from the repository PBE2GoferExample
> that is available on http://www.smalltalkhub.com
> in the account of JannikLaval.
>
>
> Gofer new
>   url: 'http://smalltalkhub.com/mc/PharoBooks/GoferExample/main';
>   package: 'PBE2GoferExample';
>   load
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-
>
>
> But if I try something similar without any mention to the user (as in [1]) or if I try loading it like with my own repo (as in [2]) I get the same errror. There is something I'm missing about how to get the proper Gofer command from a url in SmalltalkHub and I would like to have it clear, because guessing is not working.
>
> Cheers,
>
> Offray
>
>
> On 08/28/2014 01:12 PM, [hidden email] wrote:
>> http://pharobooks.gforge.inria.fr/PharoByExampleTwo-Eng/latest/Gofer.pdf
>>
>> may help.
>>
>> Phil
>>
>>
>>
>> On Thu, Aug 28, 2014 at 7:25 PM, Offray Vladimir Luna Cárdenas
>> <[hidden email] <mailto:[hidden email]>> wrote:
>>
>>     Hi,
>>
>>     Last night I was playing with STON for a while. There is still things to
>>     learn (and I have already made my questions in the proper thread) but so far
>>     I have really like it.
>>
>>     I installed it from Configuration Browser, but I would like to install it
>>     from a playground/workspace. I know where is located at SmalltalkHub and I
>>     can see there the Monticello registration, but in the chapter about
>>     Monticello this seems to be used for source control with graphical tools.
>>     How can I install STON from a playground/workspace instead of using
>>     graphical tools like Monticello or Configuration Browser? How can I know
>>     this from the SmalltalkHub page?
>>
>>     Thanks
>>
>>     Offray
>>
>>
>>
>
>