Ruby - Exit Message - Stack Overflow most recent 30 from stackoverflow.com 2010-03-16T19:16:40Z http://stackoverflow.com/feeds/question/29539 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/29539/ruby-exit-message 4 Ruby - Exit Message Chris Bunch http://stackoverflow.com/users/422 2008-08-27T04:48:50Z 2008-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#29547 1 Answer by Mike Stone for Ruby - Exit Message Mike Stone http://stackoverflow.com/users/122 2008-08-27T04:54:19Z 2008-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 -2 Answer by Jörg W Mittag for Ruby - Exit Message Jörg W Mittag http://stackoverflow.com/users/2988 2008-08-27T05:25:26Z 2008-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 -1 Answer by 1800 INFORMATION for Ruby - Exit Message 1800 INFORMATION http://stackoverflow.com/users/3146 2008-08-27T05:36:15Z 2008-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#86325 13 Answer by Chris Bunch for Ruby - Exit Message Chris Bunch http://stackoverflow.com/users/422 2008-09-17T18:50:05Z 2008-09-17T18:50:05Z <p>The 'abort' function does this. For example:</p> <pre><code>abort("Message goes here") </code></pre>