method

fetch

rails latest stable - Class: RecursiveHTTPFetcher

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

fetch(links = @urls_to_fetch)
public

No documentation available.

# File railties/lib/rails/commands/plugin.rb, line 526
  def fetch(links = @urls_to_fetch)
    links.each do |l|
      (l =~ /\/$/ || links == @urls_to_fetch) ? fetch_dir(l) : download(l)
    end
  end