artichoke_backend/extn/stdlib/time/
mod.rs

1use crate::extn::prelude::*;
2
3static TIME_RUBY_SOURCE: &[u8] = include_bytes!("vendor/time.rb");
4
5pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
6    // time package does not define any additional types; it provides extension
7    // methods on the `Time` core class.
8    interp.def_rb_source_file("time.rb", TIME_RUBY_SOURCE)?;
9
10    Ok(())
11}