1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use mruby::load::MrbLoadSources;
use mruby::Mrb;
use mruby::MrbError;
use std::borrow::Cow;
use std::convert::AsRef;
use crate::Gem;
pub fn init(interp: &Mrb) -> Result<(), MrbError> {
Tilt::init(interp)
}
#[derive(RustEmbed)]
#[folder = "$CARGO_MANIFEST_DIR/vendor/ruby/2.6.0/gems/tilt-2.0.9/lib"]
struct Tilt;
impl Tilt {
fn contents<T: AsRef<str>>(path: T) -> Result<Vec<u8>, MrbError> {
let path = path.as_ref();
Self::get(path)
.map(Cow::into_owned)
.ok_or_else(|| MrbError::SourceNotFound(path.to_owned()))
}
}
impl Gem for Tilt {
fn init(interp: &Mrb) -> Result<(), MrbError> {
for source in Self::iter() {
let contents = Self::contents(&source)?;
interp.def_rb_source_file(source, contents)?;
}
Ok(())
}
}