#![doc = include_str!("readme.md")]
pub struct RubyFormatter {}
impl RubyFormatter {
pub fn new() -> Self {
Self {}
}
pub fn format(&self, source: &str) -> String {
source.to_string()
}
}
impl Default for RubyFormatter {
fn default() -> Self {
Self::new()
}
}