summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/generate_gem_mrblib_header.rb
blob: 74008a3763f054bc9dac4aaba4a7c3b7f0294dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env ruby

puts <<__EOF__
/*
 * This file is loading the irep
 * Ruby GEM code.
 *
 * IMPORTANT:
 *   This file was generated!
 *   All manual changes will get lost.
 */
#include "mruby.h"
#include "mruby/irep.h"
#include "mruby/dump.h"
#include "mruby/string.h"
#include "mruby/proc.h"

__EOF__