Определение классов в модулях с помощью Ruby C API
Я пытаюсь определить класс внутри модуля с помощью Ruby C API. Однако то, как я это видел по всей сети, похоже, не работает для меня. В частности, модуль верхнего уровня создается, но класс не может быть найден внутри модуля. Вот мой файл C:
#include <ruby.h>
static VALUE mTree;
static VALUE cNode;
VALUE hello_world(VALUE klass)
{
return rb_str_new2("hello world");
}
void Init_tree()
{
mTree = rb_define_module("Tree");
cNode = rb_define_class_under(mTree, "Node", rb_cObject);
rb_define_method(cNode, "hello_world", hello_world, 0);
}
Вот мой extconf.rb:
require 'mkmf'
create_makefile('tree')
Вот мой тестовый скрипт:
require 'tree'
puts Tree # => Tree
puts Tree::Node # => uninitialized constant Tree::Node (NameError)
Кто-нибудь может помочь?
2 ответа
Решение
Это странно, ваш пример работает на меня:
→ ruby extconf.rb
creating Makefile
→ make
linking shared-object tree.bundle
→ irb
>> $:<<'.'
=> [...]
>> require 'tree'
=> true
>> Tree
=> Tree
>> Tree.class
=> Module
>> Tree::Node.class
=> Class
>> Tree::Node.new.hello_world
=> "hello world"