Skip to content

Instantly share code, notes, and snippets.

@Benjmin
Created May 30, 2013 01:04
Show Gist options
  • Save Benjmin/5675120 to your computer and use it in GitHub Desktop.
Save Benjmin/5675120 to your computer and use it in GitHub Desktop.
class UserController < ApplicationController
def index
end
def show
end
def new
@user = User.new
end
def edit
end
def update
end
def create
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment