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
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 <http://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
The following works for me on Pharo 3.0: Gofer new url: 'http://www.smalltalkhub.com/mc/Moose/GToolkit/main'; 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 <emdonahu@gmail.com> 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
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 <emdonahu@gmail.com> 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
-- www.tudorgirba.com "Every thing has its own flow"
Anybody got any ideas if and when GToolkit will be available on Pharo 4? Just Asking Craig From: Pharo-users [mailto:pharo-users-bounces@lists.pharo.org] 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 <emdonahu@gmail.com> wrote: Hello,
On 03 Feb 2015, at 20:50, Craig <craig@hivemind.net> 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 [mailto:pharo-users-bounces@lists.pharo.org <mailto:pharo-users-bounces@lists.pharo.org>] 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 <emdonahu@gmail.com <mailto:emdonahu@gmail.com>> wrote: Hello,
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:pharo-users-bounces@lists.pharo.org] 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 <craig@hivemind.net> 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.
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 <craig@hivemind.net> 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:pharo-users-bounces@lists.pharo.org] *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 <craig@hivemind.net> 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.
participants (7)
-
Andrei Chis -
Craig -
Evan Donahue -
Marcus Denker -
phil@highoctane.be -
stepharo -
Tudor Girba