Class: Apollo::Formatter::PlainFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- Apollo::Formatter::PlainFormatter
- Defined in:
- lib/apollo_crawler/formatter/plain_formatter.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from BaseFormatter
Class Method Details
.format(obj) ⇒ Object
36 37 38 |
# File 'lib/apollo_crawler/formatter/plain_formatter.rb', line 36 def self.format(obj) return obj.inspect end |
Instance Method Details
#format(obj) ⇒ Object
32 33 34 |
# File 'lib/apollo_crawler/formatter/plain_formatter.rb', line 32 def format(obj) return Plain.format(obj) end |
#name ⇒ Object
28 29 30 |
# File 'lib/apollo_crawler/formatter/plain_formatter.rb', line 28 def name() return "Plain" end |