Ruby - Exit Message - Stack Overflow most recent 30 from stackoverflow.com2010-03-16T19:16:40Zhttp://stackoverflow.com/feeds/question/29539http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/29539/ruby-exit-message4Ruby - Exit MessageChris Bunchhttp://stackoverflow.com/users/4222008-08-27T04:48:50Z2008-09-17T18:50:05Z
<p>Since I got a quick response on the last Ruby <a href="http://beta.stackoverflow.com/questions/29511/ruby-convert-integer-to-string" rel="nofollow">question</a> 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:</p>
<pre><code>die("Message goes here")
</code></pre>
<p>Essentially I'm just tired of typing this:</p>
<pre><code>puts "Message goes here"
exit
</code></pre>
http://stackoverflow.com/questions/29539/ruby-exit-message/29547#295471Answer by Mike Stone for Ruby - Exit MessageMike Stonehttp://stackoverflow.com/users/1222008-08-27T04:54:19Z2008-08-27T04:54:19Z<p>I've never heard of such a function, but it would be trivial enough to implement...</p>
<pre><code>def die(msg)
puts msg
exit
end
</code></pre>
<p>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 ;-)</p>
http://stackoverflow.com/questions/29539/ruby-exit-message/29587#29587-2Answer by Jörg W Mittag for Ruby - Exit MessageJörg W Mittaghttp://stackoverflow.com/users/29882008-08-27T05:25:26Z2008-08-29T01:50:47Z<p>If you want to denote an actual error in your code, you could raise a <code>RuntimeError</code> exception:</p>
<pre><code>raise RuntimeError, 'Message goes here'
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/29539/ruby-exit-message/29594#29594-1Answer by 1800 INFORMATION for Ruby - Exit Message1800 INFORMATIONhttp://stackoverflow.com/users/31462008-08-27T05:36:15Z2008-08-27T05:36:15Z<p>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.</p>
http://stackoverflow.com/questions/29539/ruby-exit-message/86325#8632513Answer by Chris Bunch for Ruby - Exit MessageChris Bunchhttp://stackoverflow.com/users/4222008-09-17T18:50:05Z2008-09-17T18:50:05Z<p>The 'abort' function does this. For example:</p>
<pre><code>abort("Message goes here")
</code></pre>