Skip to content

Instantly share code, notes, and snippets.

@thehenster
Last active November 16, 2015 16:18
Show Gist options
  • Save thehenster/723576a5db6711d07724 to your computer and use it in GitHub Desktop.
Save thehenster/723576a5db6711d07724 to your computer and use it in GitHub Desktop.
Pattern for Form Objects in Rails
class RecipeForm
attr_reader :recipe
def initialize(recipe)
@recipe = recipe
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment