require 'lucid/formatter/progress' require 'lucid/step_definition_usage' module Lucid module Formatter class Debug def initialize(runtime, io, options) @io = io @indent = 0 end def respond_to?(*args) true end def method_missing(name, *args) @indent -= 2 if name.to_s =~ /^after/ print(name) @indent += 2 if name.to_s =~ /^before/ end private def print(text) @io.puts "#{indent}#{text}" end def indent (' ' * @indent) end end end end