Re: [Pharo-users] Installing GToolkit

2014-10-04 Thread Tudor Girba
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

Re: [Pharo-users] NeoCSVReader skipEmptyLines?

2014-10-04 Thread Esteban A. Maringolo
2014-10-04 10:47 GMT-03:00 Sven Van Caekenberghe : > Esteban, > > On 04 Oct 2014, at 02:42, Esteban A. Maringolo wrote: > >> Sven, >> >> Is it possible to skip blank/empty lines in NeoCSVReader? >> >> So if a line is empty or contains "" it would be skipped from >> the iteration. >> >> Doe

Re: [Pharo-users] How to create a package via code correctly ?

2014-10-04 Thread Nicolai Hess
2014-10-04 8:45 GMT+02:00 Esteban Lorenzano : > (RPackage named: 'ABC') register. > > or > > RPackageOrganizer default registerPackage: (RPackage named: 'ABC’). > > or > > RPackageOrganizer default registerPackageNamed: ‘ABC’. > > the 3 ways work (just tested). > If you are not succeeding probably

Re: [Pharo-users] Installing GToolkit

2014-10-04 Thread p...@highoctane.be
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" #GTGene

Re: [Pharo-users] Installing GToolkit

2014-10-04 Thread 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

[Pharo-users] Installing GToolkit

2014-10-04 Thread 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 small

Re: [Pharo-users] NeoCSVReader skipEmptyLines?

2014-10-04 Thread Sven Van Caekenberghe
Esteban, On 04 Oct 2014, at 02:42, Esteban A. Maringolo wrote: > Sven, > > Is it possible to skip blank/empty lines in NeoCSVReader? > > So if a line is empty or contains "" it would be skipped from > the iteration. > > Does it already provider such feature? (I couldn't find any setti