# File lib/ohai/application.rb, line 88
  def run_application
    ohai = Ohai::System.new
    ohai.all_plugins(@attributes)

    if @attributes
      @attributes.each do |a|
        puts ohai.attributes_print(a)
      end
    else
      puts ohai.json_pretty_print
    end
  end