An open API service indexing awesome lists of open source software.

https://github.com/ksss/mruby-at_exit

Kernel.at_exit method on mruby
https://github.com/ksss/mruby-at_exit

mruby

Last synced: 3 months ago
JSON representation

Kernel.at_exit method on mruby

Awesome Lists containing this project

README

          

mruby-at_exit
===

Add `Kernel#at_exit` method in mruby.

```rb
def do_at_exit(str1)
at_exit { print str1 }
end
at_exit { puts "cruel world" }
do_at_exit("goodbye ")
exit
#=> goodbye cruel world
```

# Installation

On your build_config.rb

```
MRuby::Build.new do |conf|
# by mgem
conf.gem :mgem => 'mruby-at_exit'
# by github
conf.gem :github => 'ksss/mruby-at_exit'
end
```

# Doc

http://docs.ruby-lang.org/en/2.3.0/Kernel.html#method-i-at_exit

# Why doesn't implement to mruby-core?

https://github.com/mruby/mruby/pull/2363