# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 25 def diagnostics(user) raise NotImplementedError.new("diagnostics not implemented") end
# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 21 def get_unviewed_ids(user) raise NotImplementedError.new("get_unviewed_ids is not implemented") end
# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 9 def load(id) raise NotImplementedError.new("load is not implemented") end
# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 5 def save(page_struct) raise NotImplementedError.new("save is not implemented") end
# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 13 def set_unviewed(user, id) raise NotImplementedError.new("set_unviewed is not implemented") end
# File Ruby/lib/mini_profiler/storage/abstract_store.rb, line 17 def set_viewed(user, id) raise NotImplementedError.new("set_viewed is not implemented") end