Sha256: 06857914d43310b0585f7b11ed827f87b69dd107cc7571fe6165c38e767e5b9e
Contents?: true
Size: 491 Bytes
Versions: 17
Compression:
Stored size: 491 Bytes
Contents
module Match class TablePrinter def self.print_summary(params, uuid) rows = [] rows << ["App Identifier", params[:app_identifier]] rows << ["Type", params[:type]] rows << ["UUID", uuid] rows << ["Environment Variable", Utils.environment_variable_name(params)] params = {} params[:rows] = rows params[:title] = "Installed Provisioning Profile".green puts "" puts Terminal::Table.new(params) puts "" end end end
Version data entries
17 entries across 17 versions & 1 rubygems