Flowdock
method

fetch_dir

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: RecursiveHTTPFetcher
fetch_dir(url) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/plugin.rb, line 530
  def fetch_dir(url)
    @level += 1
    push_d(File.basename(url)) if @level > 0
    open(url) do |stream|
      contents =  stream.read
      fetch(links(url, contents))
    end
    pop_d if @level > 0
    @level -= 1
  end
Register or log in to add new notes.