The Inbox: Installer-Core-spd.340.mcz

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

The Inbox: Installer-Core-spd.340.mcz

commits-2
A new version of Installer-Core was added to project The Inbox:
http://source.squeak.org/inbox/Installer-Core-spd.340.mcz

==================== Summary ====================

Name: Installer-Core-spd.340
Author: spd
Time: 6 September 2010, 4:09:53.36 pm
UUID: e672cc7f-1691-4283-8f5c-3921ea9bd214
Ancestors: Installer-Core-nice.339

Added comment to Installer>>install: explaining the parameter

=============== Diff against Installer-Core-nice.339 ===============

Item was changed:
  ----- Method: Installer>>install: (in category 'public interface') -----
  install: packageNameCollectionOrDetectBlock
+ "The parameter specifies the package to be installed in one of the following ways:
+ - By Name e.g. install: 'Kernel'
+ - Acceptable Versions e.g. install: #('Comet-lr' 'Comet-pmm') i.e. either of these
+ - Specific version e.g. install: 'Scriptaculous-lr.148'
+ - By Predicate e.g. install: [ :packageName | packageName beginsWith: 'Dynamic' ]"
 
  self addPackage: packageNameCollectionOrDetectBlock.
  self install!