Sha256: 4b12d1ad459aa73f156354bd0216ee521eb1c7f955475e9bedacfd5417c14ebe
Contents?: true
Size: 674 Bytes
Versions: 16
Compression:
Stored size: 674 Bytes
Contents
require 'fog/core/collection' require 'fog/storage/models/local/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
Version data entries
16 entries across 16 versions & 2 rubygems