clear()
click to toggle source
def clear
real_store.clear
real_store.create_dir([ 'organizations' ], single_org)
end
create(path, name, data, *options)
click to toggle source
def create(path, name, data, *options)
fix_exceptions do
real_store.create(fix_path(path), name, data, *options)
end
end
create_dir(path, name, *options)
click to toggle source
def create_dir(path, name, *options)
fix_exceptions do
real_store.create_dir(fix_path(path), name, *options)
end
end
delete(path)
click to toggle source
def delete(path)
fix_exceptions do
real_store.delete(fix_path(path))
end
end
delete_dir(path, *options)
click to toggle source
def delete_dir(path, *options)
fix_exceptions do
real_store.delete_dir(fix_path(path), *options)
end
end
exists?(path)
click to toggle source
def exists?(path)
fix_exceptions do
real_store.exists?(fix_path(path))
end
end
exists_dir?(path)
click to toggle source
def exists_dir?(path)
fix_exceptions do
real_store.exists_dir?(fix_path(path))
end
end
get(path, request=nil)
click to toggle source
def get(path, request=nil)
fix_exceptions do
real_store.get(fix_path(path), request)
end
end
list(path)
click to toggle source
def list(path)
fix_exceptions do
real_store.list(fix_path(path))
end
end
set(path, data, *options)
click to toggle source
def set(path, data, *options)
fix_exceptions do
real_store.set(fix_path(path), data, *options)
end
end