Class: Pod::Installer::Analyzer

Inherits:
Object
  • Object
show all
Defined in:
lib/pod_builder/analyzer.rb

Instance Method Summary collapse

Instance Method Details

#explicit_podsObject



6
7
8
9
10
11
12
13
# File 'lib/pod_builder/analyzer.rb', line 6

def explicit_pods
    pods = []
    podfile.root_target_definitions[0].children.each do |children|
        pods += children.dependencies
    end

    pods.flatten.uniq.sort
end