method

fetch

fetch(links = @urls_to_fetch)
public

No documentation available.

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