# File lib/rack/static.rb, line 19 19: def initialize(app, options={}) 20: @app = app 21: @urls = options[:urls] || ["/favicon.ico"] 22: root = options[:root] || Dir.pwd 23: @file_server = Rack::File.new(root) 24: end