From 6b7ea2798483910bd4ac6653ffdfde9159067b51 Mon Sep 17 00:00:00 2001 From: Nanda Lopes Date: Sun, 13 Dec 2020 17:42:11 -0300 Subject: [PATCH] Use single quote strings --- Rakefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Rakefile b/Rakefile index 137e1eb0..b0f8d5e5 100644 --- a/Rakefile +++ b/Rakefile @@ -358,13 +358,13 @@ def apply_theme_to_iterm_profile_idx(index, color_scheme_path) end def success_msg(action) - puts "" - puts " _ _ _ " - puts " | | | | | | " - puts " | |___| |_____ __| | ____ " - puts " |_____ (____ |/ _ |/ ___) " - puts " _____| / ___ ( (_| | | " - puts " (_______\_____|\____|_| " - puts "" + puts '' + puts ' _ _ _ ' + puts ' | | | | | | ' + puts ' | |___| |_____ __| | ____ ' + puts ' |_____ (____ |/ _ |/ ___) ' + puts ' _____| / ___ ( (_| | | ' + puts ' (_______\_____|\____|_| ' + puts '' puts "YADR has been #{action}. Please restart your terminal and vim." end