Object
Special Logger, stores everything in its history
Create new history
# File lib/ramaze/spec/helper/pretty_output.rb, line 62 def initialize @history = [] end
Yield the history
# File lib/ramaze/spec/helper/pretty_output.rb, line 67 def each @history.each{|e| yield(e) } end
general log
# File lib/ramaze/spec/helper/pretty_output.rb, line 72 def log(tag, str) @history << [tag, str] end
[Validate]
Generated with the Darkfish Rdoc Generator 2.