Good morning! Okey, so, i must create an object from Ghost? I am sendig all of you the data from cvs file. What I need is generate a code in Pharo for Read this information, (because i need work with the pays, or the credits notes), so I need, in a variable for example, put the value of the cell X, which contains the $Total. The information from csv file is like the next. I tried to use NeoCsv but i don´t understood. Is good NeoCsv or is better the way using Ghost how you say? DÃa Evento Registrado Número Originante Moneda (*) Monto (*) Fecha de Ejecución (pago, cobro o congelamiento) Frecuencia de Pago Comprobante Asociado (**) 1 Factura F1 Propia Pesos 1000 DÃa 10 - - 1 Factura F2 Propia Pesos 500 DÃa 11 - - 2 Factura F3 Terceros Pesos 250 DÃa 11 - - 3 Factura F4 Propia Dólares 5000 DÃa 10 - - 4 Factura F5 Propia Dólares 5000 DÃa 22 - - 5 Factura F6 Terceros Dólares 5000 DÃa 23 - - 6 Factura F7 Propia Dólares 5000 DÃa 35 - - 7 Factura Recurrente FR8 Propia Pesos 100 DÃa 11 3 veces, cada 10 dÃas. - 8 Factura Recurrente FR9 Propia Pesos 150 DÃa 15 3 veces, cada 5 dÃas. - 10 Congelamiento FR FR9 - - - DÃa 22 - - 10 Factura (Real) F81 Propia Pesos 100 DÃa 11 - FR8 14 Factura (Real) F91 Propia Pesos 150 DÃa 15 - FR9 19 Factura (Real) F92 Propia Pesos 150 DÃa 20 - FR9 20 Factura (Real) F82 Propia Pesos 100 DÃa 21 - FR8 30 Factura (Real) F83 Propia Pesos 100 DÃa 31 - FR8 2016-07-28 9:06 GMT-03:00 <pharo-users-request@lists.pharo.org>:
Send Pharo-users mailing list submissions to pharo-users@lists.pharo.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.pharo.org/mailman/listinfo/pharo-users_lists.pharo.org or, via email, send a message with subject or body 'help' to pharo-users-request@lists.pharo.org
You can reach the person managing the list at pharo-users-owner@lists.pharo.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of Pharo-users digest..."
Today's Topics:
1. Update CI books written in Pillar (Yann Dubois) 2. Re: "self problem" with Ghost (virus) (Steven Costiou) 3. Re: "self problem" with Ghost (virus) (Denis Kudriashov)
----------------------------------------------------------------------
Message: 1 Date: Thu, 28 Jul 2016 13:43:52 +0200 From: Yann Dubois <yann59.dubois@gmail.com> To: Any question about pharo is welcome <pharo-users@lists.pharo.org> Subject: [Pharo-users] Update CI books written in Pillar Message-ID: < CALbP1jtHe9GefP7s9KwAnD6QaB_qzyBuUqzE1sZH0oNuSWESAA@mail.gmail.com> Content-Type: text/plain; charset="utf-8"
Hi !
In the last version of Pillar (4.0.x), Pillar don't manage the compilation cycle. So the ./compile.sh does not work anymore.
To update our CI, we use a Makefile (I advise you to use this too). You have an example on :
https://github.com/pillar-markup/Pillar-Archetype/blob/master/welcome/Makefi... .
In this Makefile, we create symbolic links pointing on the output directory. It causes "out of memory" on Jenkins. To solve this problem, you need to remove the symbolic links after the compilation. Personnaly, I had
*find book-result -type l -exec unlink {} \;*
at the end of the EnterprisePharo's Jenkins script.
Cheers, Yann