Methods
N
Constants
ERROR_LINE = /<main>\s+ERROR:\s+(.+)/
 
WARNING_LINE = /<main>\s+WARN:\s+(.+)/
 
SKIP_ERRORS = [ /\boperation was not successful/i, /\bunable to verify the package/i, /\bwill NOT be verified/, /^an error has occurred/i, /^an error occurred while/i, /^unknown operation/i, /\bunable to authenticate the package/i ]
 

Generic messages we want to ignore.

Attributes
[R] errors

This class extracts error and warning messages output by iTMSTransporter. For each message is creates an instance of ITunes::Store::Transporter::TransporterMessage

[R] warnings
Class Public methods
new(output)

Arguments

output (Array)

iTMSTransporter output

# File lib/itunes/store/transporter/output_parser.rb, line 33
def initialize(output)
  @errors = []
  @warnings = []
  parse_output(output) if Array === output
end