June 20, 2012
10:30 p.m.
In Monitcello days (and browser), there is Delete working package, and Unload package. I suspect deletePackageNamed: is all about removing the idea of the package, but not the code (as you found) - just making the code part of the image and not a package. You want something like unloadPackage: or #unloadPackage to remove the code (and package) from the system. Assuming that is still there, that is (I don't have a version 2.0 yet). Wouldn't your drive to package everything make you want to guard against the deletePackageNamed: behaviour? Only delete it if there is no code associated to the package, otherwise complain somehow. -Chris