diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-02-10 16:58:59 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-02-10 16:58:59 +0900 |
| commit | 4f31bcbc845a813411c948a01c19bc63a1716ec6 (patch) | |
| tree | b643c7898a2f0e2de530eb27390cfab71f4de51f /mrbgems/default.gembox | |
| parent | 4c1494d58fbccbd6363060cadfc8420480bf87e8 (diff) | |
| download | mruby-4f31bcbc845a813411c948a01c19bc63a1716ec6.tar.gz mruby-4f31bcbc845a813411c948a01c19bc63a1716ec6.zip | |
Add `mruby-io` and `mruby-pack` to `default.gembox`
Diffstat (limited to 'mrbgems/default.gembox')
| -rw-r--r-- | mrbgems/default.gembox | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mrbgems/default.gembox b/mrbgems/default.gembox index 65584681d..7ddbb16d1 100644 --- a/mrbgems/default.gembox +++ b/mrbgems/default.gembox @@ -1,4 +1,10 @@ MRuby::GemBox.new do |conf| + # Use standard IO/File class + conf.gem :core => "mruby-io" + + # Use standard Array#pack, String#unpack methods + conf.gem :core => "mruby-pack" + # Use standard Kernel#sprintf method conf.gem :core => "mruby-sprintf" |
