class Object

Support for displaying data formatted neatly.

Public Instance Methods

format_output_bullet_detail(options = {}) click to toggle source

Create a bullet point description from this object. Returns: An array of strings.

# File lib/format_output/bullets.rb, line 51
def format_output_bullet_detail(options = {})
  self.to_s.format_output_bullet_detail(options)
end
format_output_prepare_bullet_detail() click to toggle source

Get data ready for being in a bullet point.

# File lib/format_output/bullets.rb, line 56
def format_output_prepare_bullet_detail
  ["*", self]
end