Struct Rubylib

Source
pub struct Rubylib { /* private fields */ }
Expand description

A Ruby load path builder that reads from the RUBYLIB environment variable.

MRI Ruby allows manipulating the require search path by setting the RUBYLIB environment variable before launching the Ruby CLI. The RUBYLIB variable is read on start-up and is expected to contain a platform-native path separator-delimited list of file system paths.

The RUBYLIB environment variable or other sequence of paths is parsed when this loader is created and is immutable. This builder is intended to be called during interpreter boot.

Paths earlier in the sequence returned from load_path have higher priority.

use std::ffi::OsStr;
use std::path::Path;
use mezzaluna_load_path::Rubylib;

// Grab the load paths from the `RUBYLIB` environment variable. If the
// variable is empty or unset, `None` is returned.
let env_loader = Rubylib::new()?;

// Search `/home/artichoke/src` first, only attempting to search
// `/usr/share/artichoke` if no file is found in `/home/artichoke/src`.
let fixed_loader = Rubylib::with_rubylib(
    OsStr::new("/home/artichoke/src:/usr/share/artichoke:./_lib"),
)?;

Implementations§

Source§

impl Rubylib

Source

pub fn new() -> Option<Self>

Create a new load path builder that reads from the RUBYLIB environment variable.

The RUBYLIB environment variable is read only once at the time this method is called. The resolved load path is immutable.

This method returns None if there are errors resolving the RUBYLIB environment variable, if the RUBYLIB environment variable is not set, or if the given RUBYLIB environment variable only contains empty paths.

§Examples
use mezzaluna_load_path::Rubylib;

let loader = Rubylib::new()?;
Source

pub fn with_rubylib<T: AsRef<OsStr>>(rubylib: T) -> Option<Self>

Create a new load path builder that reads from the given OsStr.

The rubylib platform string given to this method is expected to be a path string of file system paths that are delimited by the platform path separator.

The resolved load path is immutable.

This method returns None if the given rubylib argument only contains empty paths. non-empty paths.

§Examples
use std::ffi::OsStr;
use mezzaluna_load_path::Rubylib;

let loader = Rubylib::with_rubylib(OsStr::new("/home/artichoke/src:/usr/share/artichoke:_lib"))?;

An empty path string returns None.

use mezzaluna_load_path::Rubylib;

let loader = Rubylib::with_rubylib("");
assert!(loader.is_none());

let loader = Rubylib::with_rubylib("::::");
assert!(loader.is_none());
Source

pub fn load_path(&self) -> &[PathBuf]

Return a reference to the paths in $LOAD_PATH parsed by this builder.

Because the paths in RUBYLIB have the highest priority when loading features, the returned paths should appear first in $LOAD_PATH.

§Examples
use std::ffi::OsStr;
use std::path::Path;
use mezzaluna_load_path::Rubylib;

let loader = Rubylib::with_rubylib(
    OsStr::new("/home/artichoke/src:/usr/share/artichoke:_lib"),
)?;
assert_eq!(
    loader.load_path(),
    &[
        Path::new("/home/artichoke/src"),
        Path::new("/usr/share/artichoke"),
        Path::new("_lib"),
    ]
);
Source

pub fn into_load_path(self) -> Vec<PathBuf>

Consume this loader and return its $LOAD_PATH.

Because the paths in RUBYLIB have the highest priority when loading features, the returned paths should appear first in $LOAD_PATH.

§Examples
use std::ffi::OsStr;
use std::path::Path;
use mezzaluna_load_path::Rubylib;

let loader = Rubylib::with_rubylib(
    OsStr::new("/home/artichoke/src:/usr/share/artichoke:_lib"),
)?;

let load_paths = loader.into_load_path();
assert_eq!(
    load_paths,
    [
        Path::new("/home/artichoke/src"),
        Path::new("/usr/share/artichoke"),
        Path::new("_lib"),
    ]
);

Trait Implementations§

Source§

impl Clone for Rubylib

Source§

fn clone(&self) -> Rubylib

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Rubylib

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Rubylib

Source§

fn default() -> Rubylib

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Rubylib

Source§

fn eq(&self, other: &Rubylib) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for Rubylib

Source§

impl StructuralPartialEq for Rubylib

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.