Created
September 19, 2011 04:13
-
-
Save bcjordan/1225947 to your computer and use it in GitHub Desktop.
Heroku working with Facebook's iframe canvas (Sinatra)
This file contains 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
# Replace this line: | |
get "/" do | |
# With these lines: | |
def get_or_post(path, opts={}, &block) | |
get(path, opts, &block) | |
post(path, opts, &block) | |
end | |
get_or_post "/" do |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment