# File lib/adsf/rack/index_file_finder.rb, line 5 def initialize(app, options) @app = app @root = options[:root] or raise ArgumentError, ':root option is required but was not given' @index_filenames = options[:index_filenames] || [ 'index.html' ] end