Skip to content

Instantly share code, notes, and snippets.

@gvalmon
Created April 18, 2012 21:08
Show Gist options
  • Save gvalmon/2416579 to your computer and use it in GitHub Desktop.
Save gvalmon/2416579 to your computer and use it in GitHub Desktop.
#1 ПЛОХО!
def UsersController
actions :index, :create
def update
end
def destroy
end
end
#2 ХОРОШО!
def UsersController
actions :index, :create, :update
end
#3 ХОРОШО!
def UsersController
action :index
action :create
action :update
end
#4 ХОРОШО!
def UsersController
def index
end
def create
end
def update
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment