Method: Pod::Spec#initialize

Defined in:
lib/stool/Core/LibInfo.rb

#initialize {|_self| ... } ⇒ Spec

Returns a new instance of Spec.

Yields:

  • (_self)

Yield Parameters:

  • _self (Pod::Spec)

    the object that the method was called on



59
60
61
62
63
64
65
# File 'lib/stool/Core/LibInfo.rb', line 59

def initialize
  @ios = Ios.new()
  @osx = Osx.new()
  @tvos = Tvos.new()
  @watchos = Watchos.new()
  yield self if block_given?
end