Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Fix outputter spec for 1.8.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe Berke-Williams committed Oct 15, 2011
1 parent e260283 commit e419061
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/kumade/outputter.rb
@@ -1,21 +1,21 @@
module Kumade
class Outputter
def success(message)
puts "==> #{message}"
STDOUT.puts "==> #{message}"
end

def info(message)
puts "==> #{message}"
STDOUT.puts "==> #{message}"
end

def error(message)
puts "==> ! #{message}"
STDOUT.puts "==> ! #{message}"
raise Kumade::DeploymentError, message
end

def say_command(command)
prefix = " " * 8
puts "#{prefix}#{command}"
STDOUT.puts "#{prefix}#{command}"
end
end
end

0 comments on commit e419061

Please sign in to comment.