d30973737eadc11347608cfb5eeb92ffb6378d88
2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #undef PACKAGE_TARNAME
18 #undef PACKAGE_VERSION
20 #undef PACKAGE_BUGREPORT
24 #ifdef HAVE_RB_ERRINFO
25 #define ruby_errinfo rb_errinfo()
29 * main routine, parses args and reads from console
31 int main(int argc
, char *argv
[])
39 rb_eval_string_protect("require 'dumm' and include Dumm", &state
);
43 printf("Please install the ruby extension first!\n");
45 for (i
= 1; i
< argc
; i
++)
47 snprintf(buf
, sizeof(buf
), "load \"%s\"", argv
[i
]);
49 rb_eval_string_protect(buf
, &state
);
56 rb_require("irb/completion");
57 rb_eval_string_protect("IRB.start", &state
);