Class: Dropdown::Readers::FileReader

Inherits:
Object
  • Object
show all
Defined in:
lib/dropdown/readers/file_reader.rb

Instance Method Summary collapse

Instance Method Details

#find_html_files(path) ⇒ Object



8
9
10
# File 'lib/dropdown/readers/file_reader.rb', line 8

def find_html_files(path)
  Dir.glob("#{path}/**/*.html")
end

#read(path) ⇒ Object



4
5
6
# File 'lib/dropdown/readers/file_reader.rb', line 4

def read(path)
  File.read path
end