class HammerCLI::Output::Formatters::FieldFormatter

abstract formatter

Public Instance Methods

format(data, field_params={}) click to toggle source
# File lib/hammer_cli/output/formatters.rb, line 46
def format(data, field_params={})
  data
end
match?(other_tags) click to toggle source
# File lib/hammer_cli/output/formatters.rb, line 42
def match?(other_tags)
  tags & other_tags == tags
end
tags() click to toggle source
# File lib/hammer_cli/output/formatters.rb, line 38
def tags
  []
end