From b06249d61c98813bf56c5c9fdc7d974a35b61dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Zanellato?= <30451287+AZanellato@users.noreply.github.com> Date: Tue, 13 Aug 2019 19:43:29 -0300 Subject: feat: implement the ruby module (#131) --- src/modules/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/modules/mod.rs') diff --git a/src/modules/mod.rs b/src/modules/mod.rs index 35bbe2d31..3ab7d8b3f 100644 --- a/src/modules/mod.rs +++ b/src/modules/mod.rs @@ -10,6 +10,7 @@ mod line_break; mod nodejs; mod package; mod python; +mod ruby; mod rust; mod username; @@ -23,6 +24,7 @@ pub fn handle<'a>(module: &str, context: &'a Context) -> Option> { "nodejs" => nodejs::module(context), "rust" => rust::module(context), "python" => python::module(context), + "ruby" => ruby::module(context), "golang" => golang::module(context), "line_break" => line_break::module(context), "package" => package::module(context), -- cgit v1.2.3