Method: Pod::Podfile::DSL#abstract_target
- Defined in:
- lib/cocoapods-core/podfile/dsl.rb
#abstract_target(name) ⇒ void
This method returns an undefined value.
Defines a new abstract target that can be used for convenient target dependency inheritance.
515 516 517 518 519 520 |
# File 'lib/cocoapods-core/podfile/dsl.rb', line 515 def abstract_target(name) target(name) do abstract! yield if block_given? end end |