module Chef::Knife::Core::FormattingOptions

def self.included(includer)

Other tags:
    Private: -
def self.included(includer)
  includer.class_eval do
    option :medium_output,
      short: "-m",
      long: "--medium",
      boolean: true,
      default: false,
      description: "Include normal attributes in the output"
    option :long_output,
      short: "-l",
      long: "--long",
      boolean: true,
      default: false,
      description: "Include all attributes in the output"
  end
end