Skip to content

Instantly share code, notes, and snippets.

@jimneath
Created April 11, 2011 09:24
Show Gist options
  • Save jimneath/913281 to your computer and use it in GitHub Desktop.
Save jimneath/913281 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
json = ActiveSupport::JSON.encode(LiveSearch.query(q))
[200, {}, [json]]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment