Hi All, Am trying to use metacello to install some pakages onmy pharo from github and smaltalkhub but am having some issue. here is the code am executing on the playground Metacello new configuration: 'OfNeoCSV'; repository:'https://github.com/svenvc/NeoCVS/tree/master/repository'; version: #stable; load. here is the error i obtain. Could not resolve: ConfigurationOfNeoCSV. Best Regards. A Tsombeng
Arnaud, you can install NeoCSV from the Catalog. On Sun, May 22, 2016 at 9:32 PM, mathias arnaud nkeumo tsombeng <arnaud.tsombeng@gmail.com> wrote:
Hi All,
Am trying to use metacello to install some pakages onmy pharo from github and smaltalkhub but am having some issue. here is the code am executing on the playground
Metacello new configuration: 'OfNeoCSV'; repository:'https://github.com/svenvc/NeoCVS/tree/master/repository'; version: #stable; load.
here is the error i obtain.
Could not resolve: ConfigurationOfNeoCSV.
Best Regards.
A Tsombeng
-- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Every DSL ends up being Smalltalk http://www.doesnotunderstand.org/
Le 22/05/2016 22:32, mathias arnaud nkeumo tsombeng a écrit :
Hi All,
Am trying to use metacello to install some pakages onmy pharo from github and smaltalkhub but am having some issue. here is the code am executing on the playground
Metacello new configuration: 'OfNeoCSV'; repository:'https://github.com/svenvc/NeoCVS/tree/master/repository'; version: #stable; load.
here is the error i obtain.
Hi, The configuration should be NeoCVS and not OfNeoCVS. Metacello new githubUser: 'svenvc' project: 'NeoCVS' commitish: 'master' path: 'repository'; configuration: 'NeoCSV'; version: #stable; load.
Could not resolve: ConfigurationOfNeoCSV.
Best Regards.
A Tsombeng
-- Cyril Ferlicot http://www.synectique.eu 165 Avenue Bretagne Lille 59000 France
The following is the cross-platform (Squeak, GemStone and Pharo) way to specify a github repository: Metacello new configuration: 'OfNeoCSV'; repository:'github://svenvc/NeoCVS:master/repository'; version: #stable; load. Here's a reference for the various cross-platfrom urls that can be used with Metacello[1] Dale [1] https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloScri... On 5/22/16 1:32 PM, mathias arnaud nkeumo tsombeng wrote:
Hi All,
Am trying to use metacello to install some pakages onmy pharo from github and smaltalkhub but am having some issue. here is the code am executing on the playground
Metacello new configuration: 'OfNeoCSV'; repository:'https://github.com/svenvc/NeoCVS/tree/master/repository'; version: #stable; load.
here is the error i obtain.
Could not resolve: ConfigurationOfNeoCSV.
Best Regards.
A Tsombeng
participants (4)
-
Cyril Ferlicot D. -
Dale Henrichs -
mathias arnaud nkeumo tsombeng -
Serge Stinckwich