[Pkg] Sake : Sake-Core-kph.75.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Wed Dec 10 04:17:52 UTC 2008


A new version of Sake-Core was added to project Sake :
http://www.squeaksource.com/Sake/Sake-Core-kph.75.mcz

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

Name: Sake-Core-kph.75
Author: kph
Time: 10 December 2008, 4:17:50 am
UUID: 955b8943-4b5a-4de6-99c6-420b1b480fa8
Ancestors: Sake-Core-kph.74

block: is now action:

=============== Diff against Sake-Core-kph.74 ===============

Item was changed:
  ----- Method: PackageOrganizer class>>taskSaveAllPackagesIn:withComment: (in category '*sake-core') -----
  taskSaveAllPackagesIn: repository withComment: message
  
  	^ SakeTask define: [ :task |
   				
+ 		task dependsOn: (self default packageInfos collect: [ :pkgInfo |  pkgInfo taskSaveIn: repository withComment: message ])
- 		task dependsOn: (self default packageInfos collect: [ :pkgInfo |  pkgInfo taskSaveIn: self repository withComment: message ])
  
  	].
  
   !

Item was added:
+ ----- Method: SakeTask class>>action: (in category 'as yet unclassified') -----
+ action: actionsOrBlock
+ 
+ 	^ SakeTask define: [ :task |		
+ 		task action: actionsOrBlock 
+ 	]!

Item was changed:
  ----- Method: BlockContext>>asTask (in category '*sake-core') -----
  asTask
  
+ 	^ SakeTask action: self!
- 	^ SakeTask block: self!

Item was changed:
  ----- Method: BlockClosure>>asTask (in category '*sake-core') -----
  asTask
  
+ 	^ SakeTask action: self!
- 	^ SakeTask block: self!

Item was removed:
- ----- Method: SakeTask class>>block: (in category 'as yet unclassified') -----
- block: aBlock
- 
- 	^ SakeTask define: [ :task |		
- 		task action: aBlock 
- 	]!



More information about the Packages mailing list