Skip to content

Instantly share code, notes, and snippets.

@wycats
Created November 25, 2008 00:02
Show Gist options
  • Save wycats/28703 to your computer and use it in GitHub Desktop.
Save wycats/28703 to your computer and use it in GitHub Desktop.
class Articles < Application
def index
display resources
end
def show
display resource
end
def update(article)
resource.update(article)
display article
end
def create(article)
resource.create(article)
... some code here ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment