method
fetch
v1.0.0 -
Show latest stable
- Class:
RecursiveHTTPFetcher
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