- Get current Xcode UUID
XCODEUUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`- Write it into the Plug-ins's plist
| xcrun simctl list --json | jq '.devices | ."iOS 8.4"' | grep '.udid' | awk '{print $2}' | sed s/\"//g | xargs -I {} xcrun simctl delete {} |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Localize.py - Incremental localization on XCode projects | |
| # João Moreno 2009 | |
| # http://joaomoreno.com/ | |
| # Modified by Steve Streeting 2010 http://www.stevestreeting.com | |
| # Changes | |
| # - Use .strings files encoded as UTF-8 |
| // You can use this to declare unit testing methods, they will be named: | |
| // test{index}_methodName where {index} is automatically incremented whenever the macro is expanded | |
| // this ensures that unit tests run in the order they've been specified | |
| // WARNING: this will not work if you include the file in a precompiled header prefix | |
| #define CONCAT_INNER(a, b) test##a##_##b | |
| #define CONCAT(a, b) CONCAT_INNER(a, b) | |
| #define DECLARE_TEST_METHOD(_testName_) CONCAT(__COUNTER__, _testName_) |
| async.whilst( | |
| () => | |
| return taskHasCompleted is false or iterations > 0 | |
| (callback) => | |
| fetchEvents(msg, api_user, 1, limit, | |
| (results) => | |
| filtered_data = filterFunction(results) | |
| iterations-- | |
| callback() |
| From 0510e6ed2b9dd28d141f4daa539c2a3524747e15 Mon Sep 17 00:00:00 2001 | |
| From: Pedro Gomes <pdcgomes@gmail.com> | |
| Date: Wed, 16 Oct 2013 10:44:12 +0100 | |
| Subject: [PATCH] [PATCH] because of potential clashes, the message builder | |
| result holder property named 'result' has been renamed to | |
| '__result' | |
| --- | |
| src/compiler/objc_enum_field.cc | 34 +++++++++---------- | |
| src/compiler/objc_message.cc | 20 +++++------ |