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

#directoriesObject

Raises:

  • (NotImplementedError)


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

def directories
  raise NotImplementedError
end

#filesObject

Raises:

  • (NotImplementedError)


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

def files
  raise NotImplementedError
end

#path(relative_path) ⇒ Object

Raises:

  • (NotImplementedError)


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

def path(relative_path)
  raise NotImplementedError
end

#read(relative_path) ⇒ Object

Raises:

  • (NotImplementedError)


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

def read(relative_path)
  raise NotImplementedError
end

#write(relative_path, content) ⇒ Object

Raises:

  • (NotImplementedError)


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

def write(relative_path, content)
  raise NotImplementedError
end