rdmc 0.1.2

Run commands from you readme as if its a Makefile
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug)]
pub struct Command {
    pub name: String,
    pub command: String,
}

impl Command {
    pub fn new(name: &str, command: &str) -> Self {
        let name = name.trim().replace(" ", "-").to_string();
        let command = command.trim().to_string();
        Self { name, command }
    }
}