Module: Pod::Podfile::DSL
- Defined in:
- lib/cocoapods-cafswitcher/podfile_switch.rb
Instance Method Summary collapse
-
#all_archive! ⇒ Object
Enable archive for all pods it has a lower priority to other binary settings.
-
#all_debug_package! ⇒ Object
Enable debug package for all pods it has a lower priority to other binary settings.
-
#all_source! ⇒ Object
Enable code for all pods it has a lower priority to other binary settings.
Instance Method Details
#all_archive! ⇒ Object
Enable archive for all pods it has a lower priority to other binary settings
87 88 89 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 87 def all_archive! ENV['IS_ARCHIVE'] = '1' end |
#all_debug_package! ⇒ Object
Enable debug package for all pods it has a lower priority to other binary settings
93 94 95 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 93 def all_debug_package! ENV['IS_DEBUG'] = '1' end |
#all_source! ⇒ Object
Enable code for all pods it has a lower priority to other binary settings
81 82 83 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 81 def all_source! ENV['IS_SOURCE'] = '1' end |