Skip to content

Instantly share code, notes, and snippets.

@briancicutti
Created July 3, 2012 15:34
Show Gist options
  • Save briancicutti/3040507 to your computer and use it in GitHub Desktop.
Save briancicutti/3040507 to your computer and use it in GitHub Desktop.
Decent Exposure
BEFORE DECENT EXPOSURE
def create
@person = Person.new(params[:person])
if @person.save
...
AFTER DECENT EXPOSURE
def create
if person.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment