Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 940 by w...@fastmail.fm: In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer http://code.google.com/p/moose-technology/issues/detail?id=940
Describe the problem: what do you get? what do you expect? In Pharo 2.0 the SpyWizard does not take notice of newly added packages.
How to reproduce the problem: step by step if necessary - load Spy into Pharo 2.0 - open for example the HapaoWizard and have a look at the packages available. Close the wizard. - add a new package to your image - open the HapaoWizard again: the new package does not appear in the list of available packages.
Possible solution: Change SpyWizard>>packagesList ^ (PackageOrganizer default packageNames select: #isString) asSortedCollection: [ :a :b | a < b ]
to: SpyWizard>>packagesList ^ (RPackageOrganizer default packageNames select: #isString) asSortedCollection: [ :a :b | a < b ]
or perhaps: SpyWizard>>packagesList ^ (SystemNavigation default packageOrganizerClass default packageNames select: #isString) asSortedCollection: [ :a :b | a < b ]
Updates: Status: WontFix
Comment #1 on issue 940 by tu...@tudorgirba.com: In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer http://code.google.com/p/moose-technology/issues/detail?id=940
I think this won't be fixed.