Created
February 27, 2012 20:01
-
-
Save steveklabnik/1926655 to your computer and use it in GitHub Desktop.
hypermedia search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head><title>SEARCH</title></head> | |
| <body> | |
| <form method="GET" action="/results"> | |
| <input type="text" name="q" /> | |
| <input type="submit" /> | |
| </form> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get "/results" do | |
| results = Stuff.where(:something => params[:q]) | |
| results = results.collect do |result| | |
| "<li>#{result.title}</li>" | |
| end.join("\n") | |
| OUT <<- | |
| <!DOCTYPE html> | |
| <html> | |
| <head><title>SEARCH</title></head> | |
| <body> | |
| <ul> | |
| #{results} | |
| </ul> | |
| </body> | |
| </html> | |
| OUT | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment