4 releases (2 breaking)

0.3.0 Jul 12, 2021
0.2.0 Jan 20, 2021
0.1.1 Jan 4, 2019
0.1.0 Jan 3, 2019

#412 in Encoding

Download history 1183/week @ 2024-01-02 1254/week @ 2024-01-09 418/week @ 2024-01-16 395/week @ 2024-01-23 384/week @ 2024-01-30 501/week @ 2024-02-06 322/week @ 2024-02-13 319/week @ 2024-02-20 415/week @ 2024-02-27 598/week @ 2024-03-05 444/week @ 2024-03-12 833/week @ 2024-03-19 860/week @ 2024-03-26 996/week @ 2024-04-02 530/week @ 2024-04-09 745/week @ 2024-04-16

3,237 downloads per month

MIT license

53KB
1K SLoC

Usage example:

Create a new rust crate and make sure to specify crate-type to be "dylib". Also add rutie, rutie-serde, serde and possibly serde_derive as a dependency.

[package]
edition = "2018"

[lib]
crate-type = ["dylib"]
name = "ruby_rust_demo"

[dependencies]
rutie = "0.8"
rutie-serde = "0.2"
serde = "1.0"
serde_derive = "1.0"

The usage is very similar to how you would use rutie on it's own, but instead of calling rutie_methods! macro, you call rutie_serde_methods!. This macro takes care of deserializing arguments and serializing return values. It also captures all panics inside those methods and raises them as an exception in ruby.

use rutie::{class, Class, Object};
use rutie_serde::{ruby_class, rutie_serde_methods};
use serde_derive::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
pub struct User {
    pub name: String,
    pub id: u64,
}

class!(HelloWorld);
rutie_serde_methods!(
    HelloWorld,
    _itself,
    ruby_class!(Exception),
    fn hello(name: String) -> String {
        format!("Hello {}", name)
    }
    fn hello_user(user: User) -> String {
        format!("Hello {:?}", user)
    }
);

#[allow(non_snake_case)]
#[no_mangle]
pub extern "C" fn Init_ruby_rust_demo() {
    let mut class = Class::new("RubyRustDemo", None);
    class.define(|itself| itself.def_self("hello", hello));
    class.define(|itself| itself.def_self("hello_user", hello_user));
}

Dependencies

~0.5–0.8MB
~15K SLoC