Installing GToolkit

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

Installing GToolkit

Evan Donahue
Hello,

I am trying to check out GTPlaygroundl, but I can't seem to get it working and was wondering if anyone had any idea what I might be overlooking.

I download a new image with curl get.pharo.org | bash
I run, from http://www.humane-assessment.com/blog/installing-gtoolkit

Gofer new
     smalltalkhubUser: 'Moose' project: 'GToolkit';
     configuration;
     loadDevelopment.
#GTImageSetupCommandLineHandler asClass new activate

It loads for a while and then the image closes. When I open it again the background is white and my settings have been wiped. The playground does appear, but it doesn't seem to work properly (there seems to be no way to advance the miller columns). Am I looking at the wrong installation information?

Thanks,
Evan



Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

stepharo
Evan if you take the latest version of Pharo 4.0 you will get GT installed :)

On 4/10/14 20:07, Evan Donahue wrote:
Hello,

I am trying to check out GTPlaygroundl, but I can't seem to get it working and was wondering if anyone had any idea what I might be overlooking.

I download a new image with curl get.pharo.org | bash
I run, from http://www.humane-assessment.com/blog/installing-gtoolkit

Gofer new
     smalltalkhubUser: 'Moose' project: 'GToolkit';
     configuration;
     loadDevelopment.
#GTImageSetupCommandLineHandler asClass new activate

The last expression looks strange to me but I do not know the internal of GTToolkit

It loads for a while and then the image closes. When I open it again the background is white and my settings have been wiped. The playground does appear, but it doesn't seem to work properly (there seems to be no way to advance the miller columns). Am I looking at the wrong installation information?

Thanks,
Evan




Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

philippeback
In reply to this post by Evan Donahue
The following works for me on Pharo 3.0:

Gofer new
     configuration;
     load.
#ConfigurationOfGToolkit asClass loadDevelopment.

"Use the inspector"
#GTInspector asClass registerToolsOn: Smalltalk tools. 
"Use the debugger"
#GTGenericStackDebugger asClass registerToolsOn: Smalltalk tools.
"Use the playground"
#GTPlayground asClass registerToolsOn: Smalltalk tools.
 
"For back to normal workspace"
#Workspace asClass registerToolsOn: Smalltalk tools.

HTH

Phil
 


On Sat, Oct 4, 2014 at 8:07 PM, Evan Donahue <[hidden email]> wrote:
Hello,

I am trying to check out GTPlaygroundl, but I can't seem to get it working and was wondering if anyone had any idea what I might be overlooking.

I download a new image with curl get.pharo.org | bash
I run, from http://www.humane-assessment.com/blog/installing-gtoolkit

Gofer new
     smalltalkhubUser: 'Moose' project: 'GToolkit';
     configuration;
     loadDevelopment.
#GTImageSetupCommandLineHandler asClass new activate

It loads for a while and then the image closes. When I open it again the background is white and my settings have been wiped. The playground does appear, but it doesn't seem to work properly (there seems to be no way to advance the miller columns). Am I looking at the wrong installation information?

Thanks,
Evan




Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

Tudor Girba-2
In reply to this post by Evan Donahue
Hi Evan,

The instructions are a bit wrong. It should be "activateWithoutSaving" instead of "activate".

The GTImageSetupCommandLineHandler does more default settings. Just take a look at the activateWithoutSaving method and pick what you want, or use the script that Phil suggested only to install the tools.

But, what do you mean when you say that the Playground is not working?

Cheers,
Doru


On Sat, Oct 4, 2014 at 8:07 PM, Evan Donahue <[hidden email]> wrote:
Hello,

I am trying to check out GTPlaygroundl, but I can't seem to get it working and was wondering if anyone had any idea what I might be overlooking.

I download a new image with curl get.pharo.org | bash
I run, from http://www.humane-assessment.com/blog/installing-gtoolkit

Gofer new
     smalltalkhubUser: 'Moose' project: 'GToolkit';
     configuration;
     loadDevelopment.
#GTImageSetupCommandLineHandler asClass new activate

It loads for a while and then the image closes. When I open it again the background is white and my settings have been wiped. The playground does appear, but it doesn't seem to work properly (there seems to be no way to advance the miller columns). Am I looking at the wrong installation information?

Thanks,
Evan






--

"Every thing has its own flow"
Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

Adventurer

Anybody got any ideas if and when GToolkit will be available on Pharo 4?

 

Just Asking

 

Craig

 

 

From: Pharo-users [mailto:[hidden email]] On Behalf Of Tudor Girba
Sent: 05 October 2014 08:19 AM
To: Any question about pharo is welcome
Subject: Re: [Pharo-users] Installing GToolkit

 

Hi Evan,

 

The instructions are a bit wrong. It should be "activateWithoutSaving" instead of "activate".

 

The GTImageSetupCommandLineHandler does more default settings. Just take a look at the activateWithoutSaving method and pick what you want, or use the script that Phil suggested only to install the tools.

 

But, what do you mean when you say that the Playground is not working?

 

Cheers,

Doru

On Sat, Oct 4, 2014 at 8:07 PM, Evan Donahue <[hidden email]> wrote:

Hello,

Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

Marcus Denker-4

On 03 Feb 2015, at 20:50, Craig <[hidden email]> wrote:

Anybody got any ideas if and when GToolkit will be available on Pharo 4?
 

We are shipping with it since some time before christmas.

-> Workspace defaults to the “Playground” 
-> inspector/explorer are using GTInspector (but one can use the old ones instead if needed)
-> GT Spotter is there, too (shift-Enter to get to it)

GT Debugger is not yet in Pharo4. Partly because is used to be for Pharo3, without the Context Cleanup,
partly because the UI needs some iteration (it is hard to understand the icons right now).

Just Asking
 
Craig
 
 
From: Pharo-users [[hidden email]] On Behalf Of Tudor Girba
Sent: 05 October 2014 08:19 AM
To: Any question about pharo is welcome
Subject: Re: [Pharo-users] Installing GToolkit
 
Hi Evan,
 
The instructions are a bit wrong. It should be "activateWithoutSaving" instead of "activate".
 
The GTImageSetupCommandLineHandler does more default settings. Just take a look at the activateWithoutSaving method and pick what you want, or use the script that Phil suggested only to install the tools.
 
But, what do you mean when you say that the Playground is not working?
 
Cheers,
Doru
On Sat, Oct 4, 2014 at 8:07 PM, Evan Donahue <[hidden email]> wrote:
Hello,

Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

Adventurer

Ahh Ok – I looked for the debugger and when I didn’t find it, I assumed that none of the toolkit was there.

 

Sorry to bother.

 

Craig

 

From: Pharo-users [mailto:[hidden email]] On Behalf Of Marcus Denker
Sent: 03 February 2015 09:56 PM
To: Any question about pharo is welcome
Subject: Re: [Pharo-users] Installing GToolkit

 

 

On 03 Feb 2015, at 20:50, Craig <[hidden email]> wrote:

 

Anybody got any ideas if and when GToolkit will be available on Pharo 4?

 

 

We are shipping with it since some time before christmas.

Reply | Threaded
Open this post in threaded view
|

Re: Installing GToolkit

Andrei Chis
GTDebugger can be loaded and works in Pharo 4.
As Marcus said the UI still needs a few more iterations.

Cheers,
Andrei

On Tue, Feb 3, 2015 at 9:02 PM, Craig <[hidden email]> wrote:

Ahh Ok – I looked for the debugger and when I didn’t find it, I assumed that none of the toolkit was there.

 

Sorry to bother.

 

Craig

 

From: Pharo-users [mailto:[hidden email]] On Behalf Of Marcus Denker
Sent: 03 February 2015 09:56 PM
To: Any question about pharo is welcome
Subject: Re: [Pharo-users] Installing GToolkit

 

 

On 03 Feb 2015, at 20:50, Craig <[hidden email]> wrote:

 

Anybody got any ideas if and when GToolkit will be available on Pharo 4?

 

 

We are shipping with it since some time before christmas.