blob: 02024d5a27335039afd1df50709bca2b4b959470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* This file will contain a list of all
* initializing methods necessary to
* bootstrap every gem.
*
* @TODO:
* this file has to be generated based on the active gems
*/
#include "mruby.h"
void mrb_md5_gem_init(mrb_state*);
void
mrb_init_mrbgems(mrb_state *mrb)
{
mrb_md5_gem_init(mrb);
}
|