lib/balboa/cli/command/reset_command.rb in balboa-0.1.6 vs lib/balboa/cli/command/reset_command.rb in balboa-0.1.7

- old
+ new

@@ -5,13 +5,15 @@ module Command class ResetCommand def execute File.delete(Balboa::CONFIG_FILE) - $stdout.puts(message) + command_output end - def message + private + + def command_output "\nBalboa restored to initial settings!" end end end end