method

fetch_dir

fetch_dir(url)
public

No documentation available.

# File railties/lib/commands/plugin.rb, line 909
  def fetch_dir(url)
    push_d(File.basename(url))
    open(url) do |stream|
      contents =  stream.read
      fetch(links(url, contents))
    end
    pop_d
  end