Flowdock
each(rs = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/shell/builtin-command.rb, line 45
    def each(rs = nil)
      if @cat_files.empty?
        super
      else
        for src in @cat_files
          @shell.foreach(src, rs){|l| yield l}
        end
      end
    end
Register or log in to add new notes.