class Rake::DefaultLoader

import 使用的默认 Rakefile 加载器。

公共实例方法

load(fn) 点击切换源码

fn 将一个 rakefile 加载到当前应用程序中

# File rake-13.2.1/lib/rake/default_loader.rb, line 10
def load(fn)
  Rake.load_rakefile(File.expand_path(fn))
end