pub fn eval(
    ruby_code: &str,
    binding: Binding,
    filename_for_debugging: Option<&str>
) -> Result<Value, CaughtException>
Expand description

Evaluate Ruby code in a specific binding.

Rescues all Ruby exceptions.