up vote 30 down vote favorite
10
share [g+] share [fb]

Since I got a quick response on the last Ruby question I asked, I have another one that's been bothering me. Is there a one line function call that quits the program and displays a message? I know in Perl its as simple as this:

die("Message goes here")

Essentially I'm just tired of typing this:

puts "Message goes here"
exit
link|improve this question

feedback

4 Answers

up vote 59 down vote accepted

The 'abort' function does this. For example:

abort("Message goes here")
link|improve this answer
2  
Wow! Nice find! Too bad they didn't just overload exit with this functionality.... – Mike Stone Sep 18 '08 at 10:59
1  
Note, abort exits the program with a status of false which represents a failure. exit by default exits with a status of true representing success. Make sure you use the right one for the situation. – Alex Spurling Nov 14 '11 at 18:59
feedback

If you want to denote an actual error in your code, you could raise a RuntimeError exception:

raise RuntimeError, 'Message goes here'

This will print a stacktrace, the type of the exception being raised and the message that you provided. Depending on your users, a stacktrace might be too scary, and the actual message might get lost in the noise. On the other hand, if you die because of an actual error, a stacktrace will give you additional information for debugging.

link|improve this answer
3  
You don't need to mention RuntimeError to raise one (it's the default kind of exception raised) so the following code will suffice: raise 'Message goes here' – sunaku Mar 17 '10 at 1:22
feedback

I've never heard of such a function, but it would be trivial enough to implement...

def die(msg)
  puts msg
  exit
end

Then, if this is defined in some .rb file that you include in all your scripts, you are golden.... just because it's not built in doesn't mean you can't do it yourself ;-)

link|improve this answer
Turns out the 'abort' function does it (see my answer below) – Chris Bunch Sep 17 '08 at 18:51
feedback

Your two examples (Perl and Ruby) arent really the same thing. In Perl, die throws an exception (which can be handled). If the exception isn't handled, then the program exits with that message. The exit function causes the program to terminate, and probably cannot be handled as an exception. The "best" way to do the Perl equivalent in Ruby is probably to throw some kind of exception.

link|improve this answer
1  
Ruby's exit does raise an exception: ruby-doc.org/core/classes/Kernel.html#M005956 – quackingduck Dec 12 '08 at 5:05
1  
Kernel.exit! doesn't raise an exception however. – Max Howell Mar 24 '10 at 12:14
feedback

Your Answer

 
or
required, but never shown

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