global

def import(*fns)


import ".depend", "my_rules"
Example:

See also the --rakelibdir command line option.

dependency declarations.
A common use of the import statement is to include files containing

to depend on objects defined in the importing file.
appear anywhere in the importing file, and yet allowing the imported files
current file is completely loaded. This allows the import statement to
Import the partial Rakefiles +fn+. Imported files are loaded _after_ the
def import(*fns)
  fns.each do |fn|
    Rake.application.add_import(fn)
  end
end