class Rufo::FileList

def include(*filenames)


file_list.include %w( math.c lib.h *.o )
file_list.include("*.java", "*.cfg")
Example:

is given, add each element of the array.
Add file names defined by glob patterns to the file list. If an array
def include(*filenames)
  filenames.each do |fn|
    @pending_add << fn
  end
  @pending = true
  self
end