Exit rake silently

This haas been asked before... I know b/c I did a search for it. But
it was never answered.

How does one gracefully exit rake? If I use #abort or #exit I get much
extraneus output. I ther no way just to silently end the program?

Thanks,
T.

Should have known.... as soon as I post this it hits me. Well, FYI to
anyone who may have ever wondered:

  Kernel#exit!

T.

···

On Feb 4, 5:38 pm, "Trans" <transf...@gmail.com> wrote:

This haas been asked before... I know b/c I did a search for it. But
it was never answered.

How does one gracefully exit rake? If I use #abort or #exit I get much
extraneus output. I ther no way just to silently end the program?

Trans wrote:

This haas been asked before... I know b/c I did a search for it. But
it was never answered.

How does one gracefully exit rake? If I use #abort or #exit I get much
extraneus output. I ther no way just to silently end the program?

Really? For

  task :default do
    exit 0
  end

I get:

  $ rake -s
  $

-- Jim Weirich

···

--
Posted via http://www.ruby-forum.com/\.

I get:

  $ rake -s
  rake aborted!
  exit
  /file/trans/my/code/ruby/foo/Rakefile:4:in `exit'
  (See full trace by running task with --trace)

this if for:

  $ rake --version
  rake, version 0.7.1

T.

···

On Feb 4, 9:24 pm, Jim Weirich <j...@weirichhouse.org> wrote:

Trans wrote:
> This haas been asked before... I know b/c I did a search for it. But
> it was never answered.

> How does one gracefully exit rake? If I use #abort or #exit I get much
> extraneus output. I ther no way just to silently end the program?

Really? For

  task :default do
    exit 0
  end

I get:

  $ rake -s
  $