From b15638f13cad93cc9679ff5a9965e8920774daf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20=C5=A0im=C3=A1nek?= Date: Sun, 2 Oct 2011 16:15:48 +0300 Subject: [PATCH] Correct string interpolation at guard init --- lib/guard/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/guard/cli.rb b/lib/guard/cli.rb index d8349ec..91e3e80 100644 --- a/lib/guard/cli.rb +++ b/lib/guard/cli.rb @@ -119,7 +119,7 @@ module Guard # def init(guard_name = nil) if !File.exist?('Guardfile') - puts 'Writing new Guardfile to #{Dir.pwd}/Guardfile' + puts "Writing new Guardfile to #{Dir.pwd}/Guardfile" FileUtils.cp(File.expand_path('../templates/Guardfile', __FILE__), 'Guardfile') elsif guard_name.nil? Guard::UI.error "Guardfile already exists at #{ Dir.pwd }/Guardfile"