method
fetch_dir
v1.2.6 -
Show latest stable
- Class:
RecursiveHTTPFetcher
fetch_dir(url)public
No documentation available.
# File railties/lib/commands/plugin.rb, line 909
def fetch_dir(url)
push_d(File.basename(url))
open(url) do |stream|
contents = stream.read
fetch(links(url, contents))
end
pop_d
end