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/directories.rb
2010-06-12 15:31:17 -07:00

37 lines
712 B
Ruby

require 'fog/collection'
require 'fog/local/models/directory'
module Fog
module Local
module Collections
def directories
Fog::Local::Directories.new(:connection => self)
end
end
class Directories < Fog::Collection
model Fog::Local::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