Method: Webby::Resources::MetaFile#read

Defined in:
lib/webby/resources/meta_file.rb

#readObject

Returns the entire contents of the IO stream exluding any meta-data found at the beginning of the stream.



76
77
78
79
# File 'lib/webby/resources/meta_file.rb', line 76

def read
  @io.seek(meta_end || 0)
  @io.read
end