Flowdock
method

fetch

Importance_0
v1.1.6 - Show latest stable - 0 notes - Class: RecursiveHTTPFetcher
fetch(links = @urls_to_fetch) 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/commands/plugin.rb, line 856
  def fetch(links = @urls_to_fetch)
    links.each do |l|
      (l =~ /\/$/ || links == @urls_to_fetch) ? fetch_dir(l) : download(l)
    end
  end
Register or log in to add new notes.