Skip to content

Instantly share code, notes, and snippets.

@dylanz
Created August 20, 2008 08:47
Show Gist options
  • Save dylanz/6343 to your computer and use it in GitHub Desktop.
Save dylanz/6343 to your computer and use it in GitHub Desktop.
## awesomeness
[:get, :post, :put, :delete, :render, :request].each do |action|
eval %Q{
def before_#{action}
yield
do_#{action}
end
alias during_#{action} before_#{action}
def after_#{action}
do_#{action}
yield
end
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment