Skip to content

Instantly share code, notes, and snippets.

@dsignr
Created April 11, 2016 13:51
Show Gist options
  • Save dsignr/ef7373193014f356592ac866697f991b to your computer and use it in GitHub Desktop.
Save dsignr/ef7373193014f356592ac866697f991b to your computer and use it in GitHub Desktop.
def before_render(&block)
(@_before_render ||= []) << block
end
def render()
@_before_render.each(&:call)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment