Skip to content

Instantly share code, notes, and snippets.

@msassak
Created November 30, 2011 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msassak/1409918 to your computer and use it in GitHub Desktop.
Save msassak/1409918 to your computer and use it in GitHub Desktop.
# This:
respond_to do |format|
format.html do
# generate html
end
format.js do
# generate javascript
end
end
# is the hipster version of this:
case format
when :html
# generate html
when :js
# generate javascript
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment