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

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

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