Method: CocoapodsMangle::Defines.prefix_symbols
- Defined in:
- lib/cocoapods_mangle/defines.rb
.prefix_symbols(prefix, symbols) ⇒ Object
Prefix a given list of symbols
85 86 87 88 89 |
# File 'lib/cocoapods_mangle/defines.rb', line 85 def self.prefix_symbols(prefix, symbols) symbols.map do |symbol| "#{symbol}=#{prefix}#{symbol}" end end |