Method: FileStore.get_blob

Defined in:
lib/wiki/stores/file.rb

.get_blob(path) ⇒ Object



10
11
12
# File 'lib/wiki/stores/file.rb', line 10

def get_blob(path)
  File.binread path if File.exist? path
end