vote up 4 vote down star
1

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
flag

4 Answers

vote up 12 vote down check

The 'abort' function does this. For example:

abort("Message goes here")
link|flag
1  
Wow! Nice find! Too bad they didn't just overload exit with this functionality.... – Mike Stone Sep 18 '08 at 10:59
vote up -1 vote down

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|flag
Ruby's exit does raise an exception: ruby-doc.org/core/classes/… – quackingduck Dec 12 '08 at 5:05
vote up -2 vote down

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|flag
vote up 1 vote down

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|flag
Turns out the 'abort' function does it (see my answer below) – Chris Bunch Sep 17 '08 at 18:51

Your Answer

Get an OpenID
or

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