module Rake::DSL

def import(*fns) # :doc:

:doc:

import ".depend", "my_rules"
Example:

See also the --rakelibdir command line option.

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

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