1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/local/models/storage/directories.rb
2010-10-04 14:02:08 -07:00

33 lines
674 B
Ruby

require 'fog/core/collection'
require 'fog/local/models/storage/directory'
module Fog
module Local
class Storage
class Directories < Fog::Collection
model Fog::Local::Storage::Directory
def all
data = Dir.entries(connection.local_root).select do |entry|
entry[0...1] != '.' && ::File.directory?(connection.path_to(entry))
end.map do |entry|
{:key => entry}
end
load(data)
end
def get(key)
if ::File.directory?(connection.path_to(key))
new(:key => key)
else
nil
end
end
end
end
end
end