Module: CocoapodsUserDefinedBuildTypes
- Defined in:
- lib/cocoapods-user-defined-build-types/main.rb,
lib/cocoapods-user-defined-build-types/gem_version.rb
Constant Summary collapse
- PLUGIN_NAME =
'cocoapods-user-defined-build-types'- LATEST_SUPPORTED_COCOAPODS_VERSION =
'1.9.1'- VERSION =
"0.0.6"- @@plugin_enabled =
false- @@verbose_logging =
false
Class Method Summary collapse
Class Method Details
.plugin_enabled ⇒ Object
27 28 29 |
# File 'lib/cocoapods-user-defined-build-types/main.rb', line 27 def self.plugin_enabled @@plugin_enabled end |
.verbose_log(str) ⇒ Object
35 36 37 38 39 |
# File 'lib/cocoapods-user-defined-build-types/main.rb', line 35 def self.verbose_log(str) if @@verbose_logging || ENV["CP_DEV"] Pod::UI.puts "🔥 [#{PLUGIN_NAME}] #{str}".blue end end |
.verbose_logging ⇒ Object
31 32 33 |
# File 'lib/cocoapods-user-defined-build-types/main.rb', line 31 def self.verbose_logging @@verbose_logging end |