Class: Pod::X::SourcesBuilder

Inherits:
Object
  • Object
show all
Includes:
BuilderDSL, SourcesDSL
Defined in:
lib/cocoapods-x/extension/installer/builder.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from BuilderDSL

#build

Methods included from SourcesDSL

#pod, #source

Constructor Details

#initializeSourcesBuilder

Returns a new instance of SourcesBuilder.



26
27
28
29
30
# File 'lib/cocoapods-x/extension/installer/builder.rb', line 26

def initialize
     @current_domain = nil
     @current_group = nil
     @sources = Hash::new(nil)
end

Instance Attribute Details

#current_domainObject

Returns the value of attribute current_domain.



23
24
25
# File 'lib/cocoapods-x/extension/installer/builder.rb', line 23

def current_domain
  @current_domain
end

#current_groupObject

Returns the value of attribute current_group.



23
24
25
# File 'lib/cocoapods-x/extension/installer/builder.rb', line 23

def current_group
  @current_group
end

#sourcesObject

Returns the value of attribute sources.



24
25
26
# File 'lib/cocoapods-x/extension/installer/builder.rb', line 24

def sources
  @sources
end