The ruby-c-api tag has no wiki summary.
4
votes
1answer
54 views
Defining classes in modules with the Ruby C API
I am trying to define a class inside a module with the Ruby C API. However, the way I have seen this done all over the net doesn't seem to work for me. Specifically, the top-level module gets created ...
3
votes
0answers
64 views
List of resources for the Ruby C API
I have found that documentation for the Ruby C API is rather sparse. Can you help build a list of resources (books, e-books, blog posts, cheat sheets) that you find useful for people looking to ...
3
votes
2answers
78 views
Accepting an undefined number of arguments in Ruby/Inline C
I am trying to rewrite a highly recursive function using inline C with Ruby. The function accepts an undefined number of arguments, i.e. it would look like this in Ruby:
def each_entity(*types)
...
2
votes
1answer
55 views
Strange behaviour with costructors in Ruby C extension
I have see strange behaviour with class costructors in Ruby C extension.
See an example: we have a class Foo that is a C extension and a class Bar that inherits from Foo:
extconf.rb
# extconf.rb
...
0
votes
1answer
36 views
Python module semantics vs. Ruby module semantics in their C-APIs
I've been using Python for a long time and I've just started to toy around with Ruby, but I'm finding the differences between modules in the two languages really confusing, especially when viewed ...
0
votes
0answers
49 views
How do I simulate internal iterators with the Ruby C API?
If I have the following recursive function in Ruby:
...
def recurse(*args)
yield self if condition_based_on_args
if has_children?
@children.each do |child|
child.recurse(*args) { |y| ...
0
votes
0answers
69 views
Ruby C Extension: run an event loop concurrently
I'm implementing a simple windowing library as a Ruby C extension. Windows have a handle_events! method that enters their native event loop.
The problem is that I want one event loop per window and ...
0
votes
1answer
48 views
mkmf ignores files in sub-folders when it compiles the C extension
I'd like to organize the C source code like this:
+ /
|
|___ + ext
| |
| |___ + native_extension
| |
| |___ + lib
| | |
| | |___ (Source files are kept in ...