#!/usr/bin/env ruby $:.unshift File.expand_path('../../lib', __FILE__) require 'xcpretty' require 'optparse' if RUBY_VERSION < '1.8.7' abort "error: XCPretty requires Ruby 1.8.7 or higher." end OptionParser.new do |opts| opts.banner = "Usage: xcodebuild [options] | xcpretty" opts.on('-t', '--test', 'Use RSpec style output') do @klass = XCPretty::Printer::RSpec end opts.on('-s', '--simple', 'Use simple output (default)') do @klass = XCPretty::Printer::Simple end opts.on('-c', '--color', 'Use colorized output') do @colorize = true end opts.on('--no-utf', 'Disable unicode characters in output') do @no_utf = true end opts.on_tail('-h', '--help', 'Show this message') { puts opts; exit } opts.on_tail("-v", "--version", "Show version") { puts XCPretty::VERSION; exit } opts.parse! end printer = (@klass || XCPretty::Printer::Simple).new printer.colorize = @colorize printer.use_unicode = !@no_utf ARGF.each_line do |line| printer.pretty_print(line) end