> I tried to download SPY in a Pharo1.0 image using its Metacello conf, but it 
> told me that I needed MMProbe and ActivityMonitor first.
> 
> Is SPY working in Pharo 1.0 ? Or not?


I was caught by the linear loading of Metacello.

Spy now load properly in Pharo 1.0 and 1.1 (I haven't tried using Cog however, 
it may not work since I wrap compiled method and I've heard it may be 
problematic).
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gofer new
        squeaksource: 'Spy'; 
        package: 'ConfigurationOfSpy';
        load.
((Smalltalk at: #ConfigurationOfSpy) project perform: #lastVersion) load.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

A simple code profiling example:
KaiProfiler  
        viewProfiling: [
                        | view |
                        view := MOViewRenderer new.
                        view nodes: (1 to: 100) forEach: [:each | view nodes: 
(1 to: 100)].
                        view root applyLayout 
                ] 


Test coverage:
        HapaoTestCoverage viewCoverageOfPackage: 'Mondrian'

screenshot and short description:
        http://www.moosetechnology.org/tools/Spy/Hapao
        http://www.moosetechnology.org/tools/Spy/Kai

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






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

Reply via email to