Sha256: 4c0aaa82603225087d27f52eaa3d790b48c11240f3fc175139260ebb18041521
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
COLORS_BY_PROPERTY_VALUES = { "Enabled" => :green, "Configurable" => :yellow, "Unavailable" => :underline } command :'app_ids:list' do |c| c.syntax = 'ios app_ids:list' c.summary = 'Lists the App IDs' c.action do |args, options| app_ids = try{agent.list_app_ids} title = "Legend: #{COLORS_BY_PROPERTY_VALUES.collect{|k, v| k.send(v)}.join(', ')}" table = Terminal::Table.new :title => title do |t| t << ["Bundle Seed ID", "Description", "Development", "Distribution"] app_ids.each do |app_id| t << :separator row = [app_id.bundle_seed_id, app_id.description] [app_id.development_properties, app_id.distribution_properties].each do |properties| values = [] properties.each do |key, value| color = COLORS_BY_PROPERTY_VALUES[value] || :reset values << key.sub(/\:$/, "").send(color) end row << values.join("\n") end t << row end end puts table end end alias_command :app_ids, :'app_ids:list' command :'app_ids:add' do |c| c.syntax = 'ios aps_ids:add NAME=BUNDLE_ID' c.summary = 'Adds the app to the Provisioning Portal' c.action do |args, options| say_error "Missing arguments, expected NAME=BUNDLE_ID" and abort if args.nil? or args.empty? args.each do |arg| components = arg.gsub(/"/, '').split(/\=/) say_warning "Invalid argument #{arg}, must be in form NAME=BUNDLE_ID" and next unless components.length == 2 app_id = AppID.new app_id.description = components.first app_id.bundle_seed_id = components.last agent.add_app_id(app_id) say_ok "Successfully added App ID #{app_id.bundle_seed_id}" end end end
Version data entries
3 entries across 3 versions & 1 rubygems