# File lib/cucumber/formatter/debug.rb, line 7 def initialize(runtime, io, options) @io = io end
# File lib/cucumber/formatter/debug.rb, line 11 def log(message) return unless ENV['DEBUG'] @io.puts "* #{message}" end
# File lib/cucumber/formatter/debug.rb, line 20 def method_missing(name, *args) print(name) end
# File lib/cucumber/formatter/debug.rb, line 24 def puts(*args) print("puts") end
# File lib/cucumber/formatter/debug.rb, line 16 def respond_to?(*args) true end
# File lib/cucumber/formatter/debug.rb, line 30 def print(text) @io.puts text end