1module Rake
2
3  # Default Rakefile loader used by +import+.
4  class DefaultLoader
5    def load(fn)
6      Rake.load_rakefile(File.expand_path(fn))
7    end
8  end
9
10end
11