summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/-test-/path_to_class/path_to_class.c
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/-test-/path_to_class/path_to_class.c
Fresh start
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);
+}