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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, message) ⇒ Result

Returns a new instance of Result.

Parameters:

  • type (Symbol)

    @see type

  • message (String)

    @see message



16
17
18
19
20
# File 'lib/cocoapods-core/specification/linter/result.rb', line 16

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.



11
12
13
# File 'lib/cocoapods-core/specification/linter/result.rb', line 11

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.



25
26
27
# File 'lib/cocoapods-core/specification/linter/result.rb', line 25

def platforms
  @platforms
end

#typeSymbol (readonly)

Returns the type of result.

Returns:

  • (Symbol)

    the type of result.



7
8
9
# File 'lib/cocoapods-core/specification/linter/result.rb', line 7

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.



29
30
31
32
33
34
35
36
37
38
# File 'lib/cocoapods-core/specification/linter/result.rb', line 29

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