# File lib/cucumber/formatter/debug.rb, line 7 def initialize(step_mother, io, options) @io = io @indent = 0 end
# File lib/cucumber/formatter/debug.rb, line 16 def method_missing(name, *args) @indent -= 2 if name.to_s =~ %r^after/ print(name) @indent += 2 if name.to_s =~ %r^before/ end
# File lib/cucumber/formatter/debug.rb, line 12 def respond_to?(*args) true end