get Users up

This commit is contained in:
2015-09-13 23:37:18 +02:00
parent baba7de448
commit 79628c8824
56 changed files with 4513 additions and 36 deletions
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
@@ -0,0 +1,8 @@
#include "ReachabilitySwift.xcconfig"
CODE_SIGN_IDENTITY =
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ReachabilitySwift" "${PODS_ROOT}/Headers/Public"
OTHER_LDFLAGS = ${REACHABILITYSWIFT_OTHER_LDFLAGS}
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_ROOT = ${SRCROOT}
SKIP_INSTALL = YES
@@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_ReachabilitySwift : NSObject
@end
@implementation PodsDummy_ReachabilitySwift
@end
@@ -0,0 +1,4 @@
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
@@ -0,0 +1,6 @@
#import <Cocoa/Cocoa.h>
FOUNDATION_EXPORT double ReachabilitySwiftVersionNumber;
FOUNDATION_EXPORT const unsigned char ReachabilitySwiftVersionString[];
@@ -0,0 +1,6 @@
framework module ReachabilitySwift {
umbrella header "ReachabilitySwift-umbrella.h"
export *
module * { export * }
}
@@ -0,0 +1 @@
REACHABILITYSWIFT_OTHER_LDFLAGS = -framework "SystemConfiguration"