# File lib/fog/local/models/storage/directories.rb, line 10 def all data = if ::File.directory?(service.local_root) Dir.entries(service.local_root).select do |entry| entry[0...1] != '.' && ::File.directory?(service.path_to(entry)) end.map do |entry| {:key => entry} end else [] end load(data) end
Generated with the Darkfish Rdoc Generator 2.