Sha256: 026065688692e27d141ed4c719c751fc2a7d7c4e46b7dd98eebf18fc71dd30fd
Contents?: true
Size: 665 Bytes
Versions: 31
Compression:
Stored size: 665 Bytes
Contents
require 'fog/core/collection' require 'fog/local/models/storage/directory' module Fog module Storage class Local class Directories < Fog::Collection model Fog::Storage::Local::Directory def all data = Dir.entries(service.local_root).select do |entry| entry[0...1] != '.' && ::File.directory?(service.path_to(entry)) end.map do |entry| {:key => entry} end load(data) end def get(key) if ::File.directory?(service.path_to(key)) new(:key => key) else nil end end end end end end
Version data entries
31 entries across 31 versions & 7 rubygems