Class: ThemeCheck::Storage

Inherits:
Object
  • Object
show all
Defined in:
lib/theme_check/storage.rb

Direct Known Subclasses

FileSystemStorage, InMemoryStorage

Instance Method Summary collapse

Instance Method Details

#directories ⇒ Object

Raises:



21
22
23
# File 'lib/theme_check/storage.rb', line 21

def directories
  raise NotImplementedError
end

#files ⇒ Object

Raises:



17
18
19
# File 'lib/theme_check/storage.rb', line 17

def files
  raise NotImplementedError
end

#path(relative_path) ⇒ Object

Raises:



13
14
15
# File 'lib/theme_check/storage.rb', line 13

def path(relative_path)
  raise NotImplementedError
end

#read(relative_path) ⇒ Object

Raises:



5
6
7
# File 'lib/theme_check/storage.rb', line 5

def read(relative_path)
  raise NotImplementedError
end

#write(relative_path, content) ⇒ Object

Raises:



9
10
11
# File 'lib/theme_check/storage.rb', line 9

def write(relative_path, content)
  raise NotImplementedError
end