gitbox 2.1.3

Git toolbox to simplify adoption of conventional commits and semantic version, among other things.
Documentation
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LicenseMetadata {
    name: String,
    reference: String,
}

impl LicenseMetadata {
    pub fn new(name: &str, reference: &str) -> Self {
        LicenseMetadata {
            name: name.to_owned(),
            reference: reference.to_owned(),
        }
    }

    pub fn name(&self) -> &str {
        &self.name
    }

    pub fn reference(&self) -> &str {
        &self.reference
    }
}