# File lib/innate/adapter.rb, line 36 def self.start(app, given_options = nil) options.merge!(given_options) if given_options handler = options[:handler].to_s.downcase config = { :Host => options[:host], :Port => options[:port] } Log.debug "Using #{handler}" if respond_to?(method = "start_#{handler}") send(method, app, config) else Rack::Handler.get(handler).run(app, config) end end