summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/-test-/path_to_class/path_to_class.c
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/ext/-test-/path_to_class/path_to_class.c')
-rw-r--r--jni/ruby/ext/-test-/path_to_class/path_to_class.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/jni/ruby/ext/-test-/path_to_class/path_to_class.c b/jni/ruby/ext/-test-/path_to_class/path_to_class.c
new file mode 100644
index 0000000..c8c2831
--- /dev/null
+++ b/jni/ruby/ext/-test-/path_to_class/path_to_class.c
@@ -0,0 +1,15 @@
+#include "ruby.h"
+
+static VALUE
+path_to_class(VALUE klass, VALUE path)
+{
+ return rb_path_to_class(path);
+}
+
+void
+Init_path_to_class(void)
+{
+ VALUE klass = rb_path2class("Test_PathToClass");
+
+ rb_define_singleton_method(klass, "path_to_class", path_to_class, 1);
+}