[Pkg] Rio: Rio-Kernel-kph.85.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Nov 7 04:03:17 UTC 2008


A new version of Rio-Kernel was added to project Rio:
http://www.squeaksource.com/Rio/Rio-Kernel-kph.85.mcz

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

Name: Rio-Kernel-kph.85
Author: kph
Time: 7 November 2008, 4:02:50 am
UUID: 0e9a9177-a920-4e48-9623-f9cf3678aa02
Ancestors: Rio-Kernel-kph.84

some fixes

=============== Diff against Rio-Kernel-kph.84 ===============

Item was changed:
  ----- Method: RioKernel>>select: (in category 'enumeration') -----
  select: selectBlock
  
  	"select: returns an empty result if the rio is not a valid directory."
  
+ 	^ executive in: self select: selectBlock!
- 	^ executive 
- 		startAt: self
- 		recursively: self isRecursive 
- 		select: selectBlock 
- 		into: (OrderedCollection new: 50)
- !

Item was added:
+ ----- Method: RioExecutive>>in:select: (in category 'as yet unclassified') -----
+ in: aRio select: selectBlock
+ 
+ 	^ self 
+ 		startAt: aRio
+ 		recursively: aRio isRecursive 
+ 		select: selectBlock 
+ 		into: (OrderedCollection new: 50)
+ !

Item was added:
+ ----- Method: RioExecutive>>fileSize: (in category 'testing') -----
+ fileSize: aRio
+ 
+ 	^ aRio stat fileSize!



More information about the Packages mailing list