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
80 81 82 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 80 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
86 87 88 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 86 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
74 75 76 |
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 74 def all_source! ENV['IS_SOURCE'] = '1' end |