Skip to content

Instantly share code, notes, and snippets.

@burtlo
Last active December 24, 2015 20:39
Show Gist options
  • Save burtlo/6859838 to your computer and use it in GitHub Desktop.
Save burtlo/6859838 to your computer and use it in GitHub Desktop.
class MyPresenter < OpenStruct
end
class ProjectsController
def show
end
helper_method :presenter
def presenter(params={})
MyPresenter.new(params)
end
end
<h1>Show Page</h1>
<%= presenter(title: 'something', object: nil) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment