aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt
blob: 8177c4d202147d9478e2372f6a0865393b441be4 (plain)
1
2
3
4
5
6
7
8
9
#include "<%= config[:underscored_name] %>.h"

VALUE rb_m<%= config[:constant_array].join %>;

void
Init_<%= config[:underscored_name] %>(void)
{
  rb_m<%= config[:constant_array].join %> = rb_define_module(<%= config[:constant_name].inspect %>);
}