class TodoApp attr_accessor :base_dir def initialize(options) @base_dir = options[:base_dir] super() end def call env html = File.open("#{@base_dir}/home.html", "rb") [200, {"Content-Type" => "text/html"}, [html.read]] end end