I am using Ruby on Rails 3 and I would like to know what type of return will have the following code:

@user.destroy

I need that to handle cases on success and fault in someway like this:

if @user.destroy
  puts "True"
else
  puts "false"
end

Is it possible? If so, how?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You should try what you're asking before asking. What you've got there will work just fine.

If the destroy works, it will return the object (which will pass as true in an if statement) and if not, it will return false or raise an exception, depending on why it failed.

link|improve this answer
feedback

It's' possible ... the destroy method return the object destroyed , you could use .destroyed? on this activerecord to check if the ob is effectivaly destroyed.

if @user.destroyed?
  puts "True"
else
  puts "false"
end

have a nice day

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.