Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessewaites/fa56eb3fd9d576f0f1211b2098952b99 to your computer and use it in GitHub Desktop.
Save jessewaites/fa56eb3fd9d576f0f1211b2098952b99 to your computer and use it in GitHub Desktop.
rails debugging for dummies
def create
if @thing.save
redirect_to thing_form_path(@thing), notice: "You saved the thing!"
else
flash[:error] = @thing.errors.full_messages.to_sentence
render :new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment