I hereby claim:
- I am KrauseFx on github.
- I am krausefx (https://keybase.io/krausefx) on keybase.
- I have a public key whose fingerprint is 179F 4EFF D4C4 35ED 7F21 5F2D F4F0 E47F 5C75 4D85
To claim this, I am signing this object:
# encoding: utf-8 | |
require 'pty' | |
require 'pry' | |
command = "xcrun -sdk iphoneos Validation -online -upload -verbose notHere.ipa" | |
# upload it now: http://stackoverflow.com/questions/7568420/how-to-perform-ios-app-validation-from-the-command-line | |
output = '' | |
begin |
static FMDatabaseQueue *_queue; | |
static NSOperationQueue *_writeQueue; | |
static NSRecursiveLock *_writeQueueLock; |
_queue = [FMDatabaseQueue databaseQueueWithPath:...]; | |
_writeQueue = [NSOperationQueue new]; | |
[_writeQueue setMaxConcurrentOperationCount:1]; | |
_writeQueueLock = [NSRecursiveLock new]; |
[_writeQueueLock lock]; | |
[_queue inDatabase:^(FMDatabase *db) { | |
FMResultSet *res = [db executeQuery:@"..."]; | |
if ([res next]) { | |
... | |
} | |
[res close]; | |
}]; | |
[_writeQueueLock unlock]; |
[_writeQueue addOperationWithBlock:^{ | |
[_writeQueueLock lock]; | |
[_queue inDatabase:^(FMDatabase *db) { | |
if (![db executeUpdate:@"..." withArgumentsInArray:...]) { ... } | |
}]; | |
[_writeQueueLock unlock]; | |
}]; |
require 'JSON' | |
class Runner | |
def Runner.run | |
system("xcodebuild clean") | |
config = { | |
"devices": [ | |
"iPhone 6 Plus (8.1 Simulator)", | |
"iPhone 6 (8.1 Simulator)", |
project_name = gets.chomp | |
if project_name == 'project_name1' | |
email "[email protected]" | |
# hide_transporter_output # remove the '#' in the beginning of the line, to hide the output while uploading | |
######################################## | |
# App Metadata | |
######################################## |
before_all do | |
increment_build_number | |
cocoapods | |
xctool :test | |
end | |
lane :beta do | |
sigh :adhoc | |
deliver :beta | |
hockey |
I hereby claim:
To claim this, I am signing this object:
xcodebuild -workspace App.xcworkspace \ | |
-scheme "SchemeName" \ | |
-sdk iphonesimulator \ | |
-destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0' | |
test |