Class: Pod::UserOption
- Inherits:
-
Object
- Object
- Pod::UserOption
- Defined in:
- lib/cocoapods-user-defined-build-types/podfile_options.rb
Class Method Summary collapse
- .keyword ⇒ Object
-
.keyword_mapping ⇒ Object
- HashBuildType
-
mapping of Podfile keyword to a BuildType.
Class Method Details
.keyword ⇒ Object
4 5 6 |
# File 'lib/cocoapods-user-defined-build-types/podfile_options.rb', line 4 def self.keyword :build_type end |
.keyword_mapping ⇒ Object
- HashBuildType
-
mapping of Podfile keyword to a BuildType
9 10 11 12 13 14 15 16 |
# File 'lib/cocoapods-user-defined-build-types/podfile_options.rb', line 9 def self.keyword_mapping { :dynamic_framework => Pod::Target::BuildType.dynamic_framework, :dynamic_library => Pod::Target::BuildType.dynamic_library, :static_framework => Pod::Target::BuildType.static_framework, :static_library => Pod::Target::BuildType.static_library } end |