distrib-ruby 0.0.1

Distrib helps you distribute your software.
Documentation
1
2
3
4
5
6
7
8
9
10
// This is free and unencumbered software released into the public domain.

use super::{Gemspec, LoadGemspecError};
use std::path::Path;

pub fn load_gemspec(path: impl AsRef<Path>) -> Result<Gemspec, LoadGemspecError> {
    let input = std::fs::read_to_string(path.as_ref())?;
    let output = serde_norway::from_str(&input).unwrap(); // FIXME
    Ok(output)
}