class Apollo::Formatter::PlainFormatter
Public Class Methods
format(obj)
click to toggle source
# File lib/apollo_crawler/formatter/plain_formatter.rb, line 36 def self.format(obj) return obj.inspect end
Public Instance Methods
format(obj)
click to toggle source
# File lib/apollo_crawler/formatter/plain_formatter.rb, line 32 def format(obj) return Plain.format(obj) end
name()
click to toggle source
# File lib/apollo_crawler/formatter/plain_formatter.rb, line 28 def name() return "Plain" end