Type:
Class
class Sort < Cat
1 2 3 4 5 6 7 8 9 10 11 | def initialize(sh, *filenames) super end def each (rs = nil ) ary = [] super {|l| ary.push l} for l in ary.sort! yield l end end |
end