Returns a new instance of MyStatic.
19 20 21 22 23 24
# File 'lib/dircat/server/my_static.rb', line 19 def initialize(app, options={}) @app = app @urls = options[:urls] || ["/favicon.ico"] root = options[:root] || Dir.pwd @file_server = Rack::File.new(root) end