module Slather
def self.prepare_pods(pods)
def self.prepare_pods(pods) Pod::UI.warn("[Slather] prepare_pods is now deprecated. The call to prepare_pods in your Podfile can simply be ommitted.") end
def self.xcode_version
def self.xcode_version xcode_path = `xcode-select -p`.strip plist = CFPropertyList::List.new(:file => File.join(xcode_path, '..', 'Info.plist')) xcode_version = CFPropertyList.native_types(plist.value)["CFBundleShortVersionString"] xcode_version.split('.').map(&:to_i) end