Method: Pod::Podfile::TargetDefinition#empty?

Defined in:
lib/cocoapods-core/podfile/target_definition.rb

#empty?Boolean

Returns Whether the target definition has at least one dependency, excluding inherited ones.

Returns:

  • (Boolean)

    Whether the target definition has at least one dependency, excluding inherited ones.



102
103
104
# File 'lib/cocoapods-core/podfile/target_definition.rb', line 102

def empty?
  non_inherited_dependencies.empty?
end