Class: Pod::Specification::Linter::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods-core/specification/linter.rb

Overview

———————————————————————–#

Root spec validation helpers collapse

Root spec validation helpers collapse

Constructor Details

#initialize(type, message) ⇒ Result

Returns a new instance of Result.

Parameters:

  • type (Symbol)

    @see type

  • message (String)

    @see message



508
509
510
511
512
# File 'lib/cocoapods-core/specification/linter.rb', line 508

def initialize(type, message)
  @type    = type
  @message = message
  @platforms = []
end

Instance Attribute Details

#messageString (readonly)

Returns the message associated with result.

Returns:

  • (String)

    the message associated with result.



503
504
505
# File 'lib/cocoapods-core/specification/linter.rb', line 503

def message
  @message
end

#platformsArray<Platform> (readonly)

Returns the platforms where this result was generated.

Returns:

  • (Array<Platform>)

    the platforms where this result was generated.



517
518
519
# File 'lib/cocoapods-core/specification/linter.rb', line 517

def platforms
  @platforms
end

#typeSymbol (readonly)

Returns the type of result.

Returns:

  • (Symbol)

    the type of result.



499
500
501
# File 'lib/cocoapods-core/specification/linter.rb', line 499

def type
  @type
end

Instance Method Details

#to_sString

Returns a string representation suitable for UI output.

Returns:

  • (String)

    a string representation suitable for UI output.



521
522
523
524
525
526
527
528
529
530
# File 'lib/cocoapods-core/specification/linter.rb', line 521

def to_s
  r = "[#{type.to_s.upcase}] #{message}"
  if platforms != Specification::PLATFORMS
    platforms_names = platforms.uniq.map do |p|
      Platform.string_name(p)
    end
    r << " [#{platforms_names * ' - '}]" unless platforms.empty?
  end
  r
end