class SocialSnippet::StorageBackend::StorageBase

Public Instance Methods

directory?(path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 25
def directory?(path)
  raise "not implemented"
end
exists?(path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 17
def exists?(path)
  raise "not implemented"
end
file?(path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 21
def file?(path)
  raise "not implemented"
end
glob(glob_path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 13
def glob(glob_path)
  raise "not implemented"
end
mkdir_p(path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 29
def mkdir_p(path)
  raise "not implemented"
end
read(path) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 5
def read(path)
  raise "not implemented"
end
write(path, data) click to toggle source
# File lib/social_snippet/storage_backend/storage_base.rb, line 9
def write(path, data)
  raise "not implemented"
end