hello_world_bundler 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,10 +13,10 @@ static VALUE t_say_hello(VALUE self)
|
|
13
13
|
return Qnil;
|
14
14
|
}
|
15
15
|
|
16
|
-
VALUE
|
16
|
+
VALUE cIntrovertHelloWorld;
|
17
17
|
|
18
|
-
void
|
19
|
-
|
20
|
-
rb_define_method(
|
21
|
-
rb_define_method(
|
18
|
+
void Init_introvert_hello_world() {
|
19
|
+
cIntrovertHelloWorld = rb_define_class("IntrovertHelloWorld", rb_cObject);
|
20
|
+
rb_define_method(cIntrovertHelloWorld, "initialize", t_init, 0);
|
21
|
+
rb_define_method(cIntrovertHelloWorld, "say_hello", t_say_hello, 0);
|
22
22
|
}
|