Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
vagrant / opt / vagrant / embedded / lib / ruby / 2.0.0 / rake / default_loader.rb
Size: Mime:
module Rake

  # Default Rakefile loader used by +import+.
  class DefaultLoader
    def load(fn)
      Rake.load_rakefile(File.expand_path(fn))
    end
  end

end