Method: FileSource::Component#source

Defined in:
app/components/lookbook/file_source/component.rb

#sourceObject



29
30
31
32
33
34
35
# File 'app/components/lookbook/file_source/component.rb', line 29

def source
  return @source if @source.present?

  @_source ||= File.read(file_path)
rescue
  nil
end