"Official" documentation
- Ruby C Extension API documentation
- Official Ruby Documentation - "show source" is full of great examples of how to use the C API.
Books/book excerpts
- The Ruby Hacking Guide
- Extending Ruby 1.9 - chapter from the Pickaxe, slightly outdated
Articles
- Building a gem out of a C extension at RubyGems
- Extending Ruby with C at O'Reilly OnLamp
- Extending Ruby with C at Code Safari
- How to create a Ruby extension in 5 minutes at RubyInside
- Ruby C Language API at Linuxtopia
Blog posts
- Writing Ruby Extension in C by Chris Lalancette
- Writing Ruby Extensions by TenderLove
- Ruby C Extension Cheat Sheet by Jacius
- Metaprogramming in the Ruby C API by Banister Friend
- Ruby to C, a couple snippets by Marc-André Cournoyer
- Writing C Extensions with Rubygems by Dr. Nic
- Building a Ruby-C Extension by Chris Lee
- Getting a Ruby C Extension to compile on Windows by Al Hoang
- Writing Ruby Extensions by Giancarlo Bellido
- Asynchronous Callbacks in Ruby C by Kim Burgestrand
- Writing Ruby C Extensions by Ben Nicholas
- A Primer on Ruby C Extensions by fugufish
- Generating language bindings for C/C++ libraries by Klaus Kämpf
- Using SWIG/C++ with Ruby by Takeshi Horinouchi (Japanese)
Slideshows
- Slideshow on Ruby C Extensions by Mark Volman
- Extending Ruby with C by Garrett Rooney
Useful gems/applications
- Inline is a gem that allows you to use C within Ruby code.
- SWIG can automatically generate Ruby wrappers for C++ code.
- Rice is a C++ interface to Ruby's C API.
- Ruby2C is a gem that converts Ruby code to C code.
Other
- This blog post has a list of some features that have changed in the C API between 1.8 and 1.9.