Skip to content

Instantly share code, notes, and snippets.

@jimneath
Created April 11, 2011 07:29
Show Gist options
  • Save jimneath/913189 to your computer and use it in GitHub Desktop.
Save jimneath/913189 to your computer and use it in GitHub Desktop.
# live search
match 'live', :to => proc {|env|
q = CGI.parse(env['QUERY_STRING'])['q'].to_s
results =
[200, {}, [LiveSearch.query(q)]]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment