Skip to content

Commit

Permalink
initial buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Shapiro committed Dec 21, 2015
1 parent 4e9c2d1 commit f9aeb07
Show file tree
Hide file tree
Showing 11 changed files with 270 additions and 22 deletions.
47 changes: 47 additions & 0 deletions Modules/WGW_Logging/C/WGW_Logging.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
//
// WGW_Logging.h
// Whatgoeswith-Backend
//
// Created by Paul Shapiro on 12/20/15.
// Copyright © 2015 Lunarpad Corporation. All rights reserved.
//

#import <Foundation/Foundation.h>



#if (DEBUG == 1)

#define DDLogInfo(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 💬 %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogError(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ❌ Error:\t%@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogErrorString(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ❌ Error:\t%@", __VA_ARGS__])
#define DDLogWarn(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ⚠️ Warning:\t%@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogWarnString(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ⚠️ Warning:\t%@", __VA_ARGS__])
#define DDLogDo(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 🔁 %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogRead(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 🔍 %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogWrite(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 📝 %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogComplete(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ✅ %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogProfile(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ⌚ %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogDel(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ➤ %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogProxied(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] ⚡️ %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogNetworking(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 📡 %@", [NSString stringWithFormat:__VA_ARGS__]])
#define DDLogTodo(...) NSLog(@"%@", [NSString stringWithFormat:@"[DEV_ONLY] 📌 TODO in [%@/%@]:\n%@", self, NSStringFromSelector(_cmd), [NSString stringWithFormat:__VA_ARGS__]])

#else

#define DDLogInfo(...) ((void)0)
#define DDLogError(...) ((void)0)
#define DDLogErrorString(...) ((void)0)
#define DDLogWarn(...) ((void)0)
#define DDLogWarnString(...) ((void)0)
#define DDLogDo(...) ((void)0)
#define DDLogRead(...) ((void)0)
#define DDLogWrite(...) ((void)0)
#define DDLogComplete(...) ((void)0)
#define DDLogProfile(...) ((void)0)
#define DDLogDel(...) ((void)0)
#define DDLogProxied(...) ((void)0)
#define DDLogNetworking(...) ((void)0)
#define DDLogTodo(...) ((void)0)

#endif
9 changes: 9 additions & 0 deletions Modules/WGW_Logging/C/WGW_Logging.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//
// WGW_Logging.m
// Whatgoeswith-Backend
//
// Created by Paul Shapiro on 12/20/15.
// Copyright © 2015 Lunarpad Corporation. All rights reserved.
//

#import "WGW_Logging.h"
2 changes: 1 addition & 1 deletion Modules/WGW_Realm
Submodule WGW_Realm updated from e3b057 to 3c185e
187 changes: 166 additions & 21 deletions Whatgoeswith.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,65 @@
objects = {

/* Begin PBXBuildFile section */
9F7D2DCD1C27353000E8BA42 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7D2DCC1C27353000E8BA42 /* main.m */; };
9F7D2DD01C27353000E8BA42 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7D2DCF1C27353000E8BA42 /* AppDelegate.m */; };
9F7D2DD31C27353000E8BA42 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7D2DD21C27353000E8BA42 /* ViewController.m */; };
9F7D2DD61C27353000E8BA42 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9F7D2DD41C27353000E8BA42 /* Main.storyboard */; };
9F7D2DD81C27353000E8BA42 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9F7D2DD71C27353000E8BA42 /* Assets.xcassets */; };
9F7D2DDB1C27353000E8BA42 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9F7D2DD91C27353000E8BA42 /* LaunchScreen.storyboard */; };
9FF6AA3C1C288B3400F0EF1B /* WGWRealm.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA321C288B3400F0EF1B /* WGWRealm.m */; };
9FF6AA3D1C288B3400F0EF1B /* WGWRLMGoesWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA351C288B3400F0EF1B /* WGWRLMGoesWith.m */; };
9FF6AA3E1C288B3400F0EF1B /* WGWRLMIngredient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA371C288B3400F0EF1B /* WGWRLMIngredient.m */; };
9FF6AA3F1C288B3400F0EF1B /* wgw_encrypted.realm in Resources */ = {isa = PBXBuildFile; fileRef = 9FF6AA391C288B3400F0EF1B /* wgw_encrypted.realm */; };
9FF6AA581C288D7F00F0EF1B /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FF6AA541C288D3D00F0EF1B /* Realm.framework */; };
9FF6AA591C288D7F00F0EF1B /* Realm.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9FF6AA541C288D3D00F0EF1B /* Realm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
9FF6AA5F1C288DC900F0EF1B /* WGW_Logging.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA5E1C288DC900F0EF1B /* WGW_Logging.m */; };
9FF6AA671C288DF300F0EF1B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA621C288DF300F0EF1B /* AppDelegate.m */; };
9FF6AA681C288DF300F0EF1B /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA641C288DF300F0EF1B /* ViewController.m */; };
9FF6AA691C288DF300F0EF1B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF6AA661C288DF300F0EF1B /* main.m */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
9FF6AA5A1C288D7F00F0EF1B /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
9FF6AA591C288D7F00F0EF1B /* Realm.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
9F7D2DC81C27353000E8BA42 /* Whatgoeswith.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Whatgoeswith.app; sourceTree = BUILT_PRODUCTS_DIR; };
9F7D2DCC1C27353000E8BA42 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
9F7D2DCE1C27353000E8BA42 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
9F7D2DCF1C27353000E8BA42 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
9F7D2DD11C27353000E8BA42 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
9F7D2DD21C27353000E8BA42 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
9F7D2DD51C27353000E8BA42 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
9F7D2DD71C27353000E8BA42 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
9F7D2DDA1C27353000E8BA42 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
9F7D2DDC1C27353000E8BA42 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9FF6AA311C288B3400F0EF1B /* WGWRealm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WGWRealm.h; sourceTree = "<group>"; };
9FF6AA321C288B3400F0EF1B /* WGWRealm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WGWRealm.m; sourceTree = "<group>"; };
9FF6AA341C288B3400F0EF1B /* WGWRLMGoesWith.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WGWRLMGoesWith.h; sourceTree = "<group>"; };
9FF6AA351C288B3400F0EF1B /* WGWRLMGoesWith.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WGWRLMGoesWith.m; sourceTree = "<group>"; };
9FF6AA361C288B3400F0EF1B /* WGWRLMIngredient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WGWRLMIngredient.h; sourceTree = "<group>"; };
9FF6AA371C288B3400F0EF1B /* WGWRLMIngredient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WGWRLMIngredient.m; sourceTree = "<group>"; };
9FF6AA391C288B3400F0EF1B /* wgw_encrypted.realm */ = {isa = PBXFileReference; lastKnownFileType = file; path = wgw_encrypted.realm; sourceTree = "<group>"; };
9FF6AA541C288D3D00F0EF1B /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Realm.framework; sourceTree = "<group>"; };
9FF6AA5D1C288DC900F0EF1B /* WGW_Logging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WGW_Logging.h; sourceTree = "<group>"; };
9FF6AA5E1C288DC900F0EF1B /* WGW_Logging.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WGW_Logging.m; sourceTree = "<group>"; };
9FF6AA611C288DF300F0EF1B /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
9FF6AA621C288DF300F0EF1B /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
9FF6AA631C288DF300F0EF1B /* ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
9FF6AA641C288DF300F0EF1B /* ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
9FF6AA661C288DF300F0EF1B /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
9FF6AA6B1C288E2200F0EF1B /* Whatgoeswith.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Whatgoeswith.pch; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
9F7D2DC51C27353000E8BA42 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9FF6AA581C288D7F00F0EF1B /* Realm.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -59,32 +92,123 @@
9F7D2DCA1C27353000E8BA42 /* Whatgoeswith */ = {
isa = PBXGroup;
children = (
9F7D2DCE1C27353000E8BA42 /* AppDelegate.h */,
9F7D2DCF1C27353000E8BA42 /* AppDelegate.m */,
9F7D2DD11C27353000E8BA42 /* ViewController.h */,
9F7D2DD21C27353000E8BA42 /* ViewController.m */,
9FF6AA6A1C288E1400F0EF1B /* Headers */,
9FF6AA651C288DF300F0EF1B /* C */,
9FF6AA601C288DF300F0EF1B /* Controllers */,
9F7D2DD41C27353000E8BA42 /* Main.storyboard */,
9F7D2DD71C27353000E8BA42 /* Assets.xcassets */,
9F7D2DD91C27353000E8BA42 /* LaunchScreen.storyboard */,
9F7D2DDC1C27353000E8BA42 /* Info.plist */,
9F7D2DCB1C27353000E8BA42 /* Supporting Files */,
);
path = Whatgoeswith;
sourceTree = "<group>";
};
9F7D2DCB1C27353000E8BA42 /* Supporting Files */ = {
9FF6AA2E1C288AD900F0EF1B /* Modules */ = {
isa = PBXGroup;
children = (
9FF6AA5B1C288DC900F0EF1B /* WGW_Logging */,
9FF6AA2F1C288B3400F0EF1B /* WGW_Realm */,
);
path = Modules;
sourceTree = "<group>";
};
9FF6AA2F1C288B3400F0EF1B /* WGW_Realm */ = {
isa = PBXGroup;
children = (
9F7D2DCC1C27353000E8BA42 /* main.m */,
9FF6AA301C288B3400F0EF1B /* C */,
9FF6AA331C288B3400F0EF1B /* Models */,
9FF6AA381C288B3400F0EF1B /* Resources */,
9FF6AA3A1C288B3400F0EF1B /* Vendor */,
);
name = "Supporting Files";
path = WGW_Realm;
sourceTree = "<group>";
};
9FF6AA2E1C288AD900F0EF1B /* Modules */ = {
9FF6AA301C288B3400F0EF1B /* C */ = {
isa = PBXGroup;
children = (
9FF6AA311C288B3400F0EF1B /* WGWRealm.h */,
9FF6AA321C288B3400F0EF1B /* WGWRealm.m */,
);
path = Modules;
path = C;
sourceTree = "<group>";
};
9FF6AA331C288B3400F0EF1B /* Models */ = {
isa = PBXGroup;
children = (
9FF6AA341C288B3400F0EF1B /* WGWRLMGoesWith.h */,
9FF6AA351C288B3400F0EF1B /* WGWRLMGoesWith.m */,
9FF6AA361C288B3400F0EF1B /* WGWRLMIngredient.h */,
9FF6AA371C288B3400F0EF1B /* WGWRLMIngredient.m */,
);
path = Models;
sourceTree = "<group>";
};
9FF6AA381C288B3400F0EF1B /* Resources */ = {
isa = PBXGroup;
children = (
9FF6AA391C288B3400F0EF1B /* wgw_encrypted.realm */,
);
path = Resources;
sourceTree = "<group>";
};
9FF6AA3A1C288B3400F0EF1B /* Vendor */ = {
isa = PBXGroup;
children = (
9FF6AA531C288D3D00F0EF1B /* iOS */,
);
path = Vendor;
sourceTree = "<group>";
};
9FF6AA531C288D3D00F0EF1B /* iOS */ = {
isa = PBXGroup;
children = (
9FF6AA541C288D3D00F0EF1B /* Realm.framework */,
);
path = iOS;
sourceTree = "<group>";
};
9FF6AA5B1C288DC900F0EF1B /* WGW_Logging */ = {
isa = PBXGroup;
children = (
9FF6AA5C1C288DC900F0EF1B /* C */,
);
path = WGW_Logging;
sourceTree = "<group>";
};
9FF6AA5C1C288DC900F0EF1B /* C */ = {
isa = PBXGroup;
children = (
9FF6AA5D1C288DC900F0EF1B /* WGW_Logging.h */,
9FF6AA5E1C288DC900F0EF1B /* WGW_Logging.m */,
);
path = C;
sourceTree = "<group>";
};
9FF6AA601C288DF300F0EF1B /* Controllers */ = {
isa = PBXGroup;
children = (
9FF6AA611C288DF300F0EF1B /* AppDelegate.h */,
9FF6AA621C288DF300F0EF1B /* AppDelegate.m */,
9FF6AA631C288DF300F0EF1B /* ViewController.h */,
9FF6AA641C288DF300F0EF1B /* ViewController.m */,
);
path = Controllers;
sourceTree = "<group>";
};
9FF6AA651C288DF300F0EF1B /* C */ = {
isa = PBXGroup;
children = (
9FF6AA661C288DF300F0EF1B /* main.m */,
);
path = C;
sourceTree = "<group>";
};
9FF6AA6A1C288E1400F0EF1B /* Headers */ = {
isa = PBXGroup;
children = (
9FF6AA6B1C288E2200F0EF1B /* Whatgoeswith.pch */,
);
path = Headers;
sourceTree = "<group>";
};
/* End PBXGroup section */
Expand All @@ -97,6 +221,7 @@
9F7D2DC41C27353000E8BA42 /* Sources */,
9F7D2DC51C27353000E8BA42 /* Frameworks */,
9F7D2DC61C27353000E8BA42 /* Resources */,
9FF6AA5A1C288D7F00F0EF1B /* Embed Frameworks */,
);
buildRules = (
);
Expand All @@ -118,6 +243,7 @@
TargetAttributes = {
9F7D2DC71C27353000E8BA42 = {
CreatedOnToolsVersion = 7.2;
DevelopmentTeam = 458XY6DG3S;
};
};
};
Expand All @@ -144,6 +270,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9FF6AA3F1C288B3400F0EF1B /* wgw_encrypted.realm in Resources */,
9F7D2DDB1C27353000E8BA42 /* LaunchScreen.storyboard in Resources */,
9F7D2DD81C27353000E8BA42 /* Assets.xcassets in Resources */,
9F7D2DD61C27353000E8BA42 /* Main.storyboard in Resources */,
Expand All @@ -157,9 +284,13 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9F7D2DD31C27353000E8BA42 /* ViewController.m in Sources */,
9F7D2DD01C27353000E8BA42 /* AppDelegate.m in Sources */,
9F7D2DCD1C27353000E8BA42 /* main.m in Sources */,
9FF6AA681C288DF300F0EF1B /* ViewController.m in Sources */,
9FF6AA3D1C288B3400F0EF1B /* WGWRLMGoesWith.m in Sources */,
9FF6AA5F1C288DC900F0EF1B /* WGW_Logging.m in Sources */,
9FF6AA3E1C288B3400F0EF1B /* WGWRLMIngredient.m in Sources */,
9FF6AA3C1C288B3400F0EF1B /* WGWRealm.m in Sources */,
9FF6AA691C288DF300F0EF1B /* main.m in Sources */,
9FF6AA671C288DF300F0EF1B /* AppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -271,6 +402,13 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Modules/WGW_Realm/Vendor/iOS",
"$(PROJECT_DIR)/**",
);
GCC_PREFIX_HEADER = Whatgoeswith/Headers/Whatgoeswith.pch;
INFOPLIST_FILE = Whatgoeswith/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.lunarpad.Whatgoeswith;
Expand All @@ -282,6 +420,13 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Modules/WGW_Realm/Vendor/iOS",
"$(PROJECT_DIR)/**",
);
GCC_PREFIX_HEADER = Whatgoeswith/Headers/Whatgoeswith.pch;
INFOPLIST_FILE = Whatgoeswith/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.lunarpad.Whatgoeswith;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "8E2D105CEB1F3AB0CF18E0AF540B7D6D65123B64",
"DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : {

},
"DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : {
"8E2D105CEB1F3AB0CF18E0AF540B7D6D65123B64" : 0,
"BB48845202118043E9E8CA20F058DFC9587D07CF" : 0
},
"DVTSourceControlWorkspaceBlueprintIdentifierKey" : "103A39D6-B96C-4CDF-9D01-37C3757AE734",
"DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : {
"8E2D105CEB1F3AB0CF18E0AF540B7D6D65123B64" : "Whatgoeswith-iOS\/",
"BB48845202118043E9E8CA20F058DFC9587D07CF" : "Whatgoeswith-iOS\/Modules\/WGW_Realm\/"
},
"DVTSourceControlWorkspaceBlueprintNameKey" : "Whatgoeswith",
"DVTSourceControlWorkspaceBlueprintVersion" : 204,
"DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "Whatgoeswith.xcodeproj",
"DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [
{
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/bitbucket.org\/pshapiro\/whatgoeswith-ios.git",
"DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "8E2D105CEB1F3AB0CF18E0AF540B7D6D65123B64"
},
{
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/bitbucket.org\/pshapiro\/whatgoeswith-realm.git",
"DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "BB48845202118043E9E8CA20F058DFC9587D07CF"
}
]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions Whatgoeswith/Headers/Whatgoeswith.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// Whatgoeswith.pch
// Whatgoeswith
//
// Created by Paul Shapiro on 12/21/15.
// Copyright © 2015 Lunarpad Corporation. All rights reserved.
//

#ifndef Whatgoeswith_h
#define Whatgoeswith_h

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#import "WGW_Logging.h"

#endif /* Whatgoeswith_h */

0 comments on commit f9aeb07

Please sign in to comment.