loading GTToolkit

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

loading GTToolkit

demarey
Hi,

I'm trying to load the GT Inspector and debugger from following instructions found at http://www.humane-assessment.com/blog/the-moldable-gtinspector-deconstructed/ :
        Gofer new
                url: 'http://www.smalltalkhub.com/mc/Moose/GToolkit/main';
                configuration;
                load.
        (Smalltalk globals at: #ConfigurationOfGToolkit) loadDevelopment.
        (Smalltalk globals at: #GTInspector) registerToolsOn: Smalltalk tools.
        (Smalltalk globals at: #GTDebugger) registerToolsOn: Smalltalk tools.

I then got this error. Is there something missing in the configuration?
This package depends on the following classes:
  GLMBrowserTemplate
You must resolve these dependencies before you will be able to load these definitions: 
  GLMParameterizableExamplesBrowser
  buildBrowser
  compose
  exampleIn:
  exampleListIn:
  exampleSelectorsFromClass:
  installTitle
  renderedExampleIn:

Regards,
Christophe.

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

smime.p7s (5K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: loading GTToolkit

demarey
I forgot to mention that it occurs on a fresh pharo 4 image

Le 29 août 2014 à 15:29, Christophe Demarey a écrit :

Hi,

I'm trying to load the GT Inspector and debugger from following instructions found at http://www.humane-assessment.com/blog/the-moldable-gtinspector-deconstructed/ :
        Gofer new
                url: 'http://www.smalltalkhub.com/mc/Moose/GToolkit/main';
                configuration;
                load.
        (Smalltalk globals at: #ConfigurationOfGToolkit) loadDevelopment.
        (Smalltalk globals at: #GTInspector) registerToolsOn: Smalltalk tools.
        (Smalltalk globals at: #GTDebugger) registerToolsOn: Smalltalk tools.

I then got this error. Is there something missing in the configuration?
This package depends on the following classes:
  GLMBrowserTemplate
You must resolve these dependencies before you will be able to load these definitions: 
  GLMParameterizableExamplesBrowser
  buildBrowser
  compose
  exampleIn:
  exampleListIn:
  exampleSelectorsFromClass:
  installTitle
  renderedExampleIn:

Regards,
Christophe.
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

smime.p7s (5K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: loading GTToolkit

Andrei Chis
Hi Christophe,

The GTTools only work properly in Pharo 3. 
The inspector and the playground will soon be integrated into Pharo 4.
Right now you can load them using the following script (but that will change very soon).
The GTDebugger does not work for the moment in Pharo 4.

Gofer new smalltalkhubUser: 'Moose'
        project: 'GToolkit';
        package: 'ConfigurationOfGTInspector';
        load.
Gofer new smalltalkhubUser: 'Moose'
        project: 'GToolkit';
        package: 'ConfigurationOfGTPlayground';
        load.
(((Smalltalk at: #ConfigurationOfGTInspector) project version: '0.1-baseline')) load: #('Core' 'Tests').
(((Smalltalk at: #ConfigurationOfGTPlayground) project version: '0.1-baseline') load) .

(Smalltalk globals at: #GTInspector) registerToolsOn: Smalltalk tools.
(Smalltalk globals at: #GTPlayground) registerToolsOn: Smalltalk tools.


Cheers,
Andrei


On Fri, Aug 29, 2014 at 3:34 PM, Christophe Demarey <[hidden email]> wrote:
I forgot to mention that it occurs on a fresh pharo 4 image

Le 29 août 2014 à 15:29, Christophe Demarey a écrit :

Hi,

I'm trying to load the GT Inspector and debugger from following instructions found at http://www.humane-assessment.com/blog/the-moldable-gtinspector-deconstructed/ :
        Gofer new
                configuration;
                load.
        (Smalltalk globals at: #ConfigurationOfGToolkit) loadDevelopment.
        (Smalltalk globals at: #GTInspector) registerToolsOn: Smalltalk tools.
        (Smalltalk globals at: #GTDebugger) registerToolsOn: Smalltalk tools.

I then got this error. Is there something missing in the configuration?
This package depends on the following classes:
  GLMBrowserTemplate
You must resolve these dependencies before you will be able to load these definitions: 
  GLMParameterizableExamplesBrowser
  buildBrowser
  compose
  exampleIn:
  exampleListIn:
  exampleSelectorsFromClass:
  installTitle
  renderedExampleIn:

Regards,
Christophe.
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: loading GTToolkit

demarey
Thanks a lot. It works!

Le 29 août 2014 à 15:43, Andrei Chis a écrit :

> Hi Christophe,
>
> The GTTools only work properly in Pharo 3.
> The inspector and the playground will soon be integrated into Pharo 4.

I was just impatient to use it because I really hate to have so many windows opened while debugging. ;)
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

smime.p7s (5K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: loading GTToolkit

Andrei Chis
There are still some issues that need to be fixed with the inspector/playground in pharo 4 (for example some shortcuts do not work cmd+o, cmd+b). 
If you are using them let us know if you encounter any other issues.




On Fri, Aug 29, 2014 at 3:51 PM, Christophe Demarey <[hidden email]> wrote:
Thanks a lot. It works!

Le 29 août 2014 à 15:43, Andrei Chis a écrit :

> Hi Christophe,
>
> The GTTools only work properly in Pharo 3.
> The inspector and the playground will soon be integrated into Pharo 4.

I was just impatient to use it because I really hate to have so many windows opened while debugging. ;)
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev