/mruby-first_gem

Primary LanguageRubyOtherNOASSERTION

mruby-first_gem Build Status

FirstGem class

install by mrbgems

  • add conf.gem line to build_config.rb
MRuby::Build.new do |conf|

    # ... (snip) ...

    conf.gem :github => 'zero/mruby-first_gem'
end

example

p FirstGem.hi
#=> "hi!!"
t = FirstGem.new "hello"
p t.hello
#=> "hello"
p t.bye
#=> "hello bye"

License

under the MIT License:

  • see LICENSE file