This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Set here your Environment.plist name | |
ENVIRONMENT="DEV" | |
#Environment.plist path | |
ENVIRONMENT_PLIST="$PROJECT_DIR/AppName/Environments.plist" | |
#Get app name from Environment.plist | |
APP_NAME=$(/usr/libexec/PlistBuddy -c "Print :$ENVIRONMENT:APP_NAME" "$ENVIRONMENT_PLIST") | |
#Get bundle identifier from Environment.plist | |
BUNDLE_ID=$(/usr/libexec/PlistBuddy -c "Print :$ENVIRONMENT:BUNDLE_IDENTIFIER" "$ENVIRONMENT_PLIST") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
restore_derived_data_from_develop: | |
steps: | |
# We need to perform git fetch in order to find nearest develop SHA | |
- run: | |
name: Git Fetch | |
command: git fetch --no-tags | |
# This will create file with nearest develop commit SHA usually this will be point from where we stared this cranch | |
# We need to store it to file just to be able to use it as a key inside `restore_cache` command. | |
# Because it is not possible to directly embed it inside {{ }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
save_derived_data: | |
steps: | |
# This will create file with current commit SHA from develop branch | |
# We need to store it to file just to be able to use it as a key inside `save_cache` command. | |
# Because it is not possible to directly embed it inside {{ }} | |
- run: | |
name: Add current develop commit SHA environment variable | |
command: | | |
echo $(git show --format="%H" --no-patch) > /tmp/current_dev_commit_sha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This will print SHA to closest develop as a parent | |
echo $(git log --decorate | grep 'commit' | grep 'origin/develop' | head -n 1 | awk '{ print $2 }' | tr -d "\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct CoreDataContextObserverState : OptionSetType { | |
static public let Inserted: ContextWatcher.CoreDataContextObserverState | |
static public let Updated: ContextWatcher.CoreDataContextObserverState | |
static public let Deleted: ContextWatcher.CoreDataContextObserverState | |
static public let Refreshed: ContextWatcher.CoreDataContextObserverState | |
static public let All: CoreDataContextObserverState | |
} | |
public typealias CoreDataContextObserverCompletionBlock = (NSManagedObject, CoreDataContextObserverState) -> () | |
public class CoreDataContextObserver { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CoreDataContextWatcher.swift | |
// ContextWatcher | |
// | |
// Created by Michal Zaborowski on 10.05.2016. | |
// Copyright © 2016 Inspace Labs Sp z o. o. Spółka Komandytowa. All rights reserved. | |
// | |
import Foundation | |
import CoreData |
NewerOlder