removing packages

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

removing packages

Yoandy Rodríguez Martínez
Hi everybody:

Is there a way to remove packages other than Monticello repository browser??

_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: removing packages

Marcus Denker-4

On Apr 8, 2010, at 2:35 AM, Yoandy Rodríguez Martínez wrote:

> Hi everybody:
>
> Is there a way to remove packages other than Monticello repository browser??
>

You can do it via code:

remove package + code:

(MCPackage named: 'ObjectMetaTools') unload.


Just remove the MC package, keep the classes:

(MCPackage named: 'System') workingCopy unregister.


--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.


_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: removing packages

Lukas Renggli
> You can do it via code:
>
> remove package + code:
>
> (MCPackage named: 'ObjectMetaTools') unload.

    Gofer new
        package: 'ObjectMetaTools';
        unload

does not leave garbage behind.

Lukas

--
Lukas Renggli
www.lukas-renggli.ch

_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: removing packages

Yoandy Rodríguez Martínez
Yep, works like a charm,
Thanks for your help ( and Marcus's too)
En Thu, 08 Apr 2010 05:48:04 -0300, Lukas Renggli <[hidden email]>  
escribió:

>> You can do it via code:
>>
>> remove package + code:
>>
>> (MCPackage named: 'ObjectMetaTools') unload.
>
>     Gofer new
>         package: 'ObjectMetaTools';
>         unload
>
> does not leave garbage behind.
>
> Lukas

_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users