Sha256: 6c732965f763d16115c08dd364df425ef1eef5160bde56f489d23d58b29ddc36
Contents?: true
Size: 1.17 KB
Versions: 8
Compression:
Stored size: 1.17 KB
Contents
module Xcake class Configuration # @return [Hash<Symbol, String>] the constants for the # supported_devices setting # SUPPORTED_DEVICES = { iphone_only: "1", ipad_only: "2", universal: "1,2" } # Convienence method to easily set the # supported devices for a application. # # Use this when you want to make a # Non-Univeral iOS application. # # @example Using Supported Devices # # Target.new do |t| # t.all_configurations.supported_devices = :ipad_only # end # def supported_devices=(devices) supported_devices = SUPPORTED_DEVICES[devices] settings["TARGETED_DEVICE_FAMILY"] = supported_devices end # Convienience method to easily set the # product's bundle identifier # def product_bundle_identifier=(identifier) settings["PRODUCT_BUNDLE_IDENTIFIER"] = identifier end # Convienence method to easily set preprocessor directives # def preprocessor_definitions PreprocessorDefinitionsSettingProxy.new( settings, "GCC_PREPROCESSOR_DEFINITIONS" ) end end end
Version data entries
8 entries across 8 versions & 1 rubygems