rbfmt 0.0.2

Ruby code formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::process::ExitCode;

fn main() -> ExitCode {
    let result = rbfmt::run();
    match result {
        Ok(_) => ExitCode::SUCCESS,
        Err(err) => {
            eprintln!("Error: {}", err);
            ExitCode::FAILURE
        }
    }
}