From b4aff90cf8f2d8bc9d46926da70a24d111253678 Mon Sep 17 00:00:00 2001 From: Naokazu Terada Date: Tue, 26 May 2020 11:00:36 +0900 Subject: [PATCH] Use puts instead of p --- config.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.rb b/config.rb index 1878d7b..fd9c096 100644 --- a/config.rb +++ b/config.rb @@ -78,7 +78,7 @@ # activate :minify_javascript before_build do - p ':::before_build:::' + puts ':::before_build:::' # avoid losting old deploy history by force push if Dir.exist?('build') Dir.chdir 'build' @@ -86,13 +86,13 @@ system 'git pull origin' Dir.chdir '..' else - p 'There isn\'t build dir yet, so do nothing.' + puts 'There isn\'t build dir yet, so do nothing.' end end after_build do - p ':::after_build:::' - p "delete #{GENERAL_CSS_DIR}" + puts ':::after_build:::' + puts "delete #{GENERAL_CSS_DIR}" system "rm -rf #{GENERAL_CSS_DIR}" end end