ruby-sys 0.3.0

Low level bindings to MRI, Matz's Ruby Interpreter.
Documentation
extern crate libc;

pub mod array;
pub mod constant;
pub mod class;
pub mod fixnum;
pub mod gc;
pub mod float;
pub mod hash;
pub mod rproc;
pub mod string;
pub mod symbol;
pub mod thread;
pub mod typed_data;
pub mod types;
pub mod util;
pub mod value;
pub mod vm;

use types::Value;

extern "C" {
    pub static rb_cObject: Value;
}