artichoke_backend/extn/core/method/
mod.rs
1use std::ffi::CStr;
2
3use crate::extn::prelude::*;
4
5const METHOD_CSTR: &CStr = c"Method";
6static METHOD_RUBY_SOURCE: &[u8] = include_bytes!("method.rb");
7
8pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
9 if interp.is_class_defined::<Method>() {
10 return Ok(());
11 }
12
13 let spec = class::Spec::new("Method", METHOD_CSTR, None, None)?;
14 interp.def_class::<Method>(spec)?;
15 interp.eval(METHOD_RUBY_SOURCE)?;
16
17 Ok(())
18}
19
20#[derive(Debug, Clone, Copy)]
21pub struct Method;