├── iMonitorMyFiles ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TABFileMonitor.h │ └── TABFileMonitor.m ├── _Pods.xcodeproj ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests-Info.plist │ └── Tests.m ├── iMonitorMyFiles │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── TABViewController.h │ ├── TABAppDelegate.h │ ├── iMonitorMyFiles-Prefix.pch │ ├── main.m │ ├── TABAppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── iMonitorMyFiles-Info.plist │ ├── TABViewController.m │ └── Main.storyboard ├── Pods │ ├── Target Support Files │ │ ├── iMonitorMyFiles │ │ │ ├── iMonitorMyFiles-prefix.pch │ │ │ ├── iMonitorMyFiles.modulemap │ │ │ ├── iMonitorMyFiles-dummy.m │ │ │ ├── iMonitorMyFiles-umbrella.h │ │ │ ├── iMonitorMyFiles.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-iMonitorMyFiles_Tests │ │ │ ├── Pods-iMonitorMyFiles_Tests-acknowledgements.markdown │ │ │ ├── Pods-iMonitorMyFiles_Tests.modulemap │ │ │ ├── Pods-iMonitorMyFiles_Tests-dummy.m │ │ │ ├── Pods-iMonitorMyFiles_Tests-umbrella.h │ │ │ ├── Pods-iMonitorMyFiles_Tests.debug.xcconfig │ │ │ ├── Pods-iMonitorMyFiles_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-iMonitorMyFiles_Tests-acknowledgements.plist │ │ │ ├── Pods-iMonitorMyFiles_Tests-frameworks.sh │ │ │ └── Pods-iMonitorMyFiles_Tests-resources.sh │ │ └── Pods-iMonitorMyFiles_Example │ │ │ ├── Pods-iMonitorMyFiles_Example.modulemap │ │ │ ├── Pods-iMonitorMyFiles_Example-dummy.m │ │ │ ├── Pods-iMonitorMyFiles_Example-umbrella.h │ │ │ ├── Pods-iMonitorMyFiles_Example.debug.xcconfig │ │ │ ├── Pods-iMonitorMyFiles_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-iMonitorMyFiles_Example-acknowledgements.markdown │ │ │ ├── Pods-iMonitorMyFiles_Example-acknowledgements.plist │ │ │ ├── Pods-iMonitorMyFiles_Example-frameworks.sh │ │ │ └── Pods-iMonitorMyFiles_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── iMonitorMyFiles.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── iMonitorMyFiles.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── iMonitorMyFiles-Example.xcscheme │ └── project.pbxproj ├── iMonitorMyFiles.xcworkspace │ └── contents.xcworkspacedata └── Podfile.lock ├── .gitignore ├── LICENSE ├── iMonitorMyFiles.podspec └── README.md /iMonitorMyFiles/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iMonitorMyFiles/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/iMonitorMyFiles-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/iMonitorMyFiles.modulemap: -------------------------------------------------------------------------------- 1 | framework module iMonitorMyFiles { 2 | umbrella header "iMonitorMyFiles-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/iMonitorMyFiles-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_iMonitorMyFiles : NSObject 3 | @end 4 | @implementation PodsDummy_iMonitorMyFiles 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'iMonitorMyFiles_Example' do 4 | pod 'iMonitorMyFiles', :path => '../' 5 | 6 | target 'iMonitorMyFiles_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_iMonitorMyFiles_Tests { 2 | umbrella header "Pods-iMonitorMyFiles_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_iMonitorMyFiles_Example { 2 | umbrella header "Pods-iMonitorMyFiles_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iMonitorMyFiles_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iMonitorMyFiles_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iMonitorMyFiles_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iMonitorMyFiles_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/iMonitorMyFiles-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "TABFileMonitor.h" 4 | 5 | FOUNDATION_EXPORT double iMonitorMyFilesVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char iMonitorMyFilesVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_iMonitorMyFiles_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_iMonitorMyFiles_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_iMonitorMyFiles_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_iMonitorMyFiles_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/TABViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TABViewController.h 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/25/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TABViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iMonitorMyFiles (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - iMonitorMyFiles (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | iMonitorMyFiles: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | iMonitorMyFiles: ff08dba6a7d11e37415ffae6c68e78bc4aaf121e 13 | 14 | PODFILE CHECKSUM: 98af6d48a4e366ec8905b29abf200fa234d7299e 15 | 16 | COCOAPODS: 1.0.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iMonitorMyFiles (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - iMonitorMyFiles (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | iMonitorMyFiles: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | iMonitorMyFiles: ff08dba6a7d11e37415ffae6c68e78bc4aaf121e 13 | 14 | PODFILE CHECKSUM: 98af6d48a4e366ec8905b29abf200fa234d7299e 15 | 16 | COCOAPODS: 1.0.1 17 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/TABAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TABAppDelegate.h 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/25/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TABAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/iMonitorMyFiles-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // iMonitorMyFiles 4 | // 5 | // Created by Travis Blankenship on 07/25/2016. 6 | // Copyright (c) 2016 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "TABAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([TABAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/TABAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // TABAppDelegate.m 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/25/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import "TABAppDelegate.h" 10 | 11 | @implementation TABAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | return YES; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/iMonitorMyFiles.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles/iMonitorMyFiles.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles/iMonitorMyFiles.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles/iMonitorMyFiles.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "iMonitorMyFiles" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/iMonitorMyFiles/iMonitorMyFiles.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "iMonitorMyFiles" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // iMonitorMyFilesTests.m 3 | // iMonitorMyFilesTests 4 | // 5 | // Created by Travis Blankenship on 07/25/2016. 6 | // Copyright (c) 2016 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iMonitorMyFiles/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /iMonitorMyFiles/Classes/TABFileMonitor.h: -------------------------------------------------------------------------------- 1 | // 2 | // TABFileMonitor.h 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/27/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSUInteger, TABFileMonitorChangeType) 12 | { 13 | TABFileMonitorChangeTypeModified, 14 | TABFileMonitorChangeTypeMetadata, 15 | TABFileMonitorChangeTypeSize, 16 | TABFileMonitorChangeTypeRenamed, 17 | TABFileMonitorChangeTypeDeleted, 18 | TABFileMonitorChangeTypeObjectLink, 19 | TABFileMonitorChangeTypeRevoked 20 | }; 21 | 22 | @protocol TABFileMonitorDelegate; 23 | 24 | @interface TABFileMonitor : NSObject 25 | 26 | @property (nonatomic, weak) id delegate; 27 | 28 | - (id)initWithURL:(NSURL *)URL; 29 | 30 | @end 31 | 32 | @protocol TABFileMonitorDelegate 33 | @optional 34 | 35 | - (void)fileMonitor:(TABFileMonitor *)fileMonitor didSeeChange:(TABFileMonitorChangeType)changeType; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/iMonitorMyFiles.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iMonitorMyFiles", 3 | "version": "0.1.0", 4 | "summary": "Modern implementation of a file monitoring system for iOS.", 5 | "description": "iMonitorMyFiles provides a simple Objective-C interface for responding to file system changes in iOS. If your users can create, modify, and/or delete files in your app's sandbox, this library provides a way to respond to those events. It also insulates you from a low-level C API. Yikes.", 6 | "homepage": "https://github.com/tblank555/iMonitorMyFiles", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Travis Blankenship": "travis@sawtoothapps.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/tblank555/iMonitorMyFiles.git", 16 | "tag": "0.1.0" 17 | }, 18 | "social_media_url": "https://twitter.com/tblank555", 19 | "platforms": { 20 | "ios": "7.0" 21 | }, 22 | "source_files": "iMonitorMyFiles/Classes/TABFileMonitor.{h,m}", 23 | "public_header_files": "iMonitorMyFiles/Classes/TABFileMonitor.h" 24 | } 25 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "ipad", 20 | "size" : "29x29", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "40x40", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "76x76", 41 | "scale" : "1x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "2x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Travis Blankenship 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## iMonitorMyFiles 5 | 6 | Copyright (c) 2016 Travis Blankenship 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/iMonitorMyFiles-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /iMonitorMyFiles.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint iMonitorMyFiles.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'iMonitorMyFiles' 11 | s.version = '0.1.0' 12 | s.summary = 'Modern implementation of a file monitoring system for iOS.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | iMonitorMyFiles provides a simple Objective-C interface for responding to file system changes in iOS. If your users can create, modify, and/or delete files in your app's sandbox, this library provides a way to respond to those events. It also insulates you from a low-level C API (yikes!). 22 | DESC 23 | 24 | s.homepage = 'https://github.com/tblank555/iMonitorMyFiles' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'Travis Blankenship' => 'travis@sawtoothapps.com' } 28 | s.source = { :git => 'https://github.com/tblank555/iMonitorMyFiles.git', :tag => s.version.to_s } 29 | s.social_media_url = 'https://twitter.com/tblank555' 30 | 31 | s.ios.deployment_target = '7.0' 32 | 33 | s.source_files = 'iMonitorMyFiles/Classes/TABFileMonitor.{h,m}' 34 | 35 | # s.resource_bundles = { 36 | # 'iMonitorMyFiles' => ['iMonitorMyFiles/Assets/*.png'] 37 | # } 38 | 39 | s.public_header_files = 'iMonitorMyFiles/Classes/TABFileMonitor.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 Travis Blankenship <travis@sawtoothapps.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | iMonitorMyFiles 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | iMonitorMyFiles 2 | =============== 3 | ##### *Modern implementation of a file monitoring system for iOS* 4 | 5 | [![Version](https://img.shields.io/cocoapods/v/iMonitorMyFiles.svg?style=flat)](http://cocoapods.org/pods/iMonitorMyFiles) 6 | [![License](https://img.shields.io/cocoapods/l/iMonitorMyFiles.svg?style=flat)](http://cocoapods.org/pods/iMonitorMyFiles) 7 | [![Platform](https://img.shields.io/cocoapods/p/iMonitorMyFiles.svg?style=flat)](http://cocoapods.org/pods/iMonitorMyFiles) 8 | 9 | iMonitorMyFiles provides a simple Objective-C interface for responding to file system changes in iOS. If your users can create, modify, and/or delete files in your app's sandbox, this library provides a way to respond to those events. It also insulates you from a low-level C API (yikes!). 10 | 11 | ## Example 12 | 13 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 14 | 15 | ## Requirements 16 | 17 | Your app must target iOS 7.0+. 18 | 19 | ## Installation 20 | 21 | iMonitorMyFiles is available through [CocoaPods](http://cocoapods.org). To install 22 | it, simply add the following line to your Podfile: 23 | 24 | ```ruby 25 | pod 'iMonitorMyFiles', '~> 0.1.0' 26 | ``` 27 | 28 | and use the TABFileMonitor class for all your file monitoring needs: 29 | 30 | ```objc 31 | #import 32 | ``` 33 | 34 | ### How it works 35 | 36 | File monitoring is achieved by creating what GCD calls a "dispatch source" for whatever file or folder you want to monitor. When creating a dispatch source, you provide three interesting things: 37 | 38 | 1. A file descriptor that points to the file or folder 39 | 2. Flags to describe what kind of events you want to be notified about (file was modified, file was written to, etc.) 40 | 3. The queue on which to send these event notifications (the main queue, a background queue, etc.) 41 | 42 | After creating a dispatch source, you then set blocks of code to be executed when an event occurs or when the source is canceled (destroyed). In the block you set for when an event occurs, you can determine which event occurred (if you registered for more than one type), and proceed accordingly with if...else...then or switch...case statements. 43 | 44 | In order to continue monitoring a file after it has been deleted and recreated, my code destroys the dispatch source and file descriptor and subsequently recreates them. I did this because I noticed in testing that some applications invalidate the file descriptor we're using whenever they modify the file. 45 | 46 | ### Events to be notified about 47 | 48 | * **DISPATCH_VNODE_ATTRIB** : The file's metadata changed. 49 | * This includes date modified, date last opened, etc. 50 | * **DISPATCH_VNODE_DELETE** : The file was deleted. 51 | * **DISPATCH_VNODE_EXTEND** : The file changed size. 52 | * **DISPATCH_VNODE_LINK** : The file's object link count changed. 53 | * **DISPATCH_VNODE_RENAME** : The file was renamed. 54 | * This is the notification that lets you know your file descriptor is now invalid. 55 | * **DISPATCH_VNODE_REVOKE** : The file was revoked. 56 | * **DISPATCH_VNODE_WRITE** : The file was modified. 57 | 58 | ### Thanks 59 | 60 | * Cocoanetics' [Monitoring a Folder with GCD](http://www.cocoanetics.com/2013/08/monitoring-a-folder-with-gcd) 61 | * David Hamrick's [Handling Filesysytem Events with GCD](http://www.davidhamrick.com/2011/10/10/handling-filesystem-events-with-gcd.html) 62 | 63 | ## Author 64 | 65 | [Travis Blankenship](mailto:travis@sawtoothapps.com), [Sawtooth Apps LLC](http://www.sawtoothapps.com) 66 | 67 | ## License 68 | 69 | iMonitorMyFiles is available under the MIT license. See the LICENSE file for more info. 70 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/iMonitorMyFiles/iMonitorMyFiles.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/iMonitorMyFiles/iMonitorMyFiles.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/TABViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TABViewController.m 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/25/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import "TABViewController.h" 10 | 11 | #import 12 | 13 | @interface TABViewController () 14 | { 15 | NSURL *_testFileURL; 16 | __weak IBOutlet UITextField *_textToWriteField; 17 | __weak IBOutlet UITextView *_eventTextView; 18 | } 19 | 20 | @end 21 | 22 | @implementation TABViewController 23 | 24 | #pragma mark - View Lifecycle 25 | 26 | - (void)viewDidLoad 27 | { 28 | [super viewDidLoad]; 29 | 30 | // Create the test file URL 31 | NSURL *documentsDirectory = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory 32 | inDomains:NSUserDomainMask] firstObject]; 33 | _testFileURL = [documentsDirectory URLByAppendingPathComponent:@"testFile"]; 34 | 35 | // Write some text to that test file 36 | [self __writeText:@"Whadderp?" 37 | toURL:_testFileURL]; 38 | 39 | TABFileMonitor *fileMonitor = [[TABFileMonitor alloc] initWithURL:_testFileURL]; 40 | fileMonitor.delegate = self; 41 | } 42 | 43 | #pragma mark - TABFileMonitorDelegate 44 | 45 | - (void)fileMonitor:(TABFileMonitor *)fileMonitor didSeeChange:(TABFileMonitorChangeType)changeType 46 | { 47 | if (changeType == TABFileMonitorChangeTypeMetadata) 48 | { 49 | [self __logTextToScreen:@"Test file's metadata changed."]; 50 | } 51 | else if (changeType == TABFileMonitorChangeTypeDeleted) 52 | { 53 | [self __logTextToScreen:@"Test file was deleted."]; 54 | } 55 | else if (changeType == TABFileMonitorChangeTypeSize) 56 | { 57 | [self __logTextToScreen:@"Test file changed size."]; 58 | } 59 | else if (changeType == TABFileMonitorChangeTypeObjectLink) 60 | { 61 | [self __logTextToScreen:@"Test file's object link count changed."]; 62 | } 63 | else if (changeType == TABFileMonitorChangeTypeRenamed) 64 | { 65 | [self __logTextToScreen:@"Test file was renamed."]; 66 | } 67 | else if (changeType == TABFileMonitorChangeTypeRevoked) 68 | { 69 | [self __logTextToScreen:@"Test file was revoked."]; 70 | } 71 | else if (changeType == TABFileMonitorChangeTypeModified) 72 | { 73 | [self __logTextToScreen:@"Test file was modified."]; 74 | } 75 | } 76 | 77 | #pragma mark - Actions 78 | 79 | - (IBAction)write:(UIButton *)sender 80 | { 81 | [self __writeText:_textToWriteField.text 82 | toURL:_testFileURL]; 83 | [self dismissKeyboard:sender]; 84 | } 85 | 86 | - (IBAction)dismissKeyboard:(UIButton *)sender 87 | { 88 | [_textToWriteField resignFirstResponder]; 89 | } 90 | 91 | #pragma mark - UI Helper Methods 92 | 93 | - (void)__writeText:(NSString *)text toURL:(NSURL *)URL 94 | { 95 | [self __logTextToScreen:[NSString stringWithFormat:@"Writing text: %@", text]]; 96 | 97 | NSData *dataFromText = [text dataUsingEncoding:NSUTF8StringEncoding]; 98 | 99 | [dataFromText writeToURL:URL 100 | options:kNilOptions 101 | error:nil]; 102 | } 103 | 104 | - (void)__logTextToScreen:(NSString *)text 105 | { 106 | dispatch_async(dispatch_get_main_queue(), ^ 107 | { 108 | NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; 109 | dateFormatter.timeStyle = NSDateFormatterMediumStyle; 110 | NSString *logTime = [dateFormatter stringFromDate:[NSDate date]]; 111 | 112 | NSString *previousText = _eventTextView.text; 113 | _eventTextView.text = [NSString stringWithFormat:@"%@: %@\n%@", logTime, text, previousText]; 114 | }); 115 | } 116 | 117 | #pragma mark - UITextField 118 | 119 | - (BOOL)textFieldShouldReturn:(UITextField *)textField 120 | { 121 | [self write:nil]; 122 | return YES; 123 | } 124 | 125 | @end 126 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles.xcodeproj/xcshareddata/xcschemes/iMonitorMyFiles-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /iMonitorMyFiles/Classes/TABFileMonitor.m: -------------------------------------------------------------------------------- 1 | // 2 | // TABFileMonitor.m 3 | // File Monitor 4 | // 5 | // Created by Travis Blankenship on 3/27/14. 6 | // Copyright (c) 2014 Travis Blankenship. All rights reserved. 7 | // 8 | 9 | #import "TABFileMonitor.h" 10 | 11 | @interface TABFileMonitor () 12 | { 13 | @private 14 | 15 | NSURL *_fileURL; 16 | dispatch_source_t _source; 17 | int _fileDescriptor; 18 | BOOL _keepMonitoringFile; 19 | } 20 | 21 | @end 22 | 23 | @implementation TABFileMonitor 24 | 25 | - (id)initWithURL:(NSURL *)URL 26 | { 27 | self = [self init]; 28 | if (self) 29 | { 30 | _fileURL = URL; 31 | _keepMonitoringFile = NO; 32 | [self __beginMonitoringFile]; 33 | } 34 | return self; 35 | } 36 | 37 | - (void)dealloc 38 | { 39 | dispatch_source_cancel(_source); 40 | } 41 | 42 | - (void)__beginMonitoringFile 43 | { 44 | // Add a file descriptor for our test file 45 | _fileDescriptor = open([[_fileURL path] fileSystemRepresentation], 46 | O_EVTONLY); 47 | 48 | // Get a reference to the default queue so our file notifications can go out on it 49 | dispatch_queue_t defaultQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); 50 | 51 | // Create a dispatch source 52 | _source = dispatch_source_create(DISPATCH_SOURCE_TYPE_VNODE, 53 | _fileDescriptor, 54 | DISPATCH_VNODE_ATTRIB | DISPATCH_VNODE_DELETE | DISPATCH_VNODE_EXTEND | DISPATCH_VNODE_LINK | DISPATCH_VNODE_RENAME | DISPATCH_VNODE_REVOKE | DISPATCH_VNODE_WRITE, 55 | defaultQueue); 56 | 57 | // Log one or more messages to the screen when there's a file change event 58 | dispatch_source_set_event_handler(_source, ^ 59 | { 60 | unsigned long eventTypes = dispatch_source_get_data(_source); 61 | [self __alertDelegateOfEvents:eventTypes]; 62 | }); 63 | 64 | dispatch_source_set_cancel_handler(_source, ^ 65 | { 66 | close(_fileDescriptor); 67 | _fileDescriptor = 0; 68 | _source = nil; 69 | 70 | // If this dispatch source was canceled because of a rename or delete notification, recreate it 71 | if (_keepMonitoringFile) 72 | { 73 | _keepMonitoringFile = NO; 74 | [self __beginMonitoringFile]; 75 | } 76 | }); 77 | 78 | // Start monitoring the test file 79 | dispatch_resume(_source); 80 | } 81 | 82 | - (void)__recreateDispatchSource 83 | { 84 | _keepMonitoringFile = YES; 85 | dispatch_source_cancel(_source); 86 | } 87 | 88 | - (void)__alertDelegateOfEvents:(unsigned long)eventTypes 89 | { 90 | dispatch_async(dispatch_get_main_queue(), ^ 91 | { 92 | BOOL recreateDispatchSource = NO; 93 | NSMutableSet *eventSet = [[NSMutableSet alloc] initWithCapacity:7]; 94 | 95 | if (eventTypes & DISPATCH_VNODE_ATTRIB) 96 | { 97 | [eventSet addObject:@(TABFileMonitorChangeTypeMetadata)]; 98 | } 99 | if (eventTypes & DISPATCH_VNODE_DELETE) 100 | { 101 | [eventSet addObject:@(TABFileMonitorChangeTypeDeleted)]; 102 | recreateDispatchSource = YES; 103 | } 104 | if (eventTypes & DISPATCH_VNODE_EXTEND) 105 | { 106 | [eventSet addObject:@(TABFileMonitorChangeTypeSize)]; 107 | } 108 | if (eventTypes & DISPATCH_VNODE_LINK) 109 | { 110 | [eventSet addObject:@(TABFileMonitorChangeTypeObjectLink)]; 111 | } 112 | if (eventTypes & DISPATCH_VNODE_RENAME) 113 | { 114 | [eventSet addObject:@(TABFileMonitorChangeTypeRenamed)]; 115 | recreateDispatchSource = YES; 116 | } 117 | if (eventTypes & DISPATCH_VNODE_REVOKE) 118 | { 119 | [eventSet addObject:@(TABFileMonitorChangeTypeRevoked)]; 120 | } 121 | if (eventTypes & DISPATCH_VNODE_WRITE) 122 | { 123 | [eventSet addObject:@(TABFileMonitorChangeTypeModified)]; 124 | } 125 | 126 | for (NSNumber *eventType in eventSet) 127 | { 128 | TABFileMonitorChangeType changeType = (TABFileMonitorChangeType)[eventType unsignedIntegerValue]; 129 | [self.delegate fileMonitor:self 130 | didSeeChange:changeType]; 131 | } 132 | 133 | if (recreateDispatchSource) 134 | { 135 | [self __recreateDispatchSource]; 136 | } 137 | }); 138 | } 139 | 140 | @end 141 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 43 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /Example/iMonitorMyFiles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 35FEBCE03CFE9FE31567B6B2 /* Pods_iMonitorMyFiles_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DF243E1F8F866B5E9B137B4D /* Pods_iMonitorMyFiles_Example.framework */; }; 11 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 12 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 13 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 14 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 15 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 16 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 17 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 18 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 19 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 20 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 21 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 22 | 7F7E11918458481B7723F851 /* Pods_iMonitorMyFiles_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EC29478C0D4921581FC1899 /* Pods_iMonitorMyFiles_Tests.framework */; }; 23 | DB3200EE1D465A1B0079A5AC /* TABAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DB3200EB1D465A1B0079A5AC /* TABAppDelegate.m */; }; 24 | DB3200EF1D465A1B0079A5AC /* TABViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DB3200ED1D465A1B0079A5AC /* TABViewController.m */; }; 25 | DB3200F51D465AA50079A5AC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DB3200F41D465AA50079A5AC /* Main.storyboard */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6003F582195388D10070C39A /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6003F589195388D20070C39A; 34 | remoteInfo = iMonitorMyFiles; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 2E3CF55AA845F18ACE81CA95 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 40 | 3C9C7D36E94653A9F9104212 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iMonitorMyFiles_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.debug.xcconfig"; sourceTree = ""; }; 41 | 4B1E5F95FB76257178AB65AE /* Pods-iMonitorMyFiles_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iMonitorMyFiles_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.release.xcconfig"; sourceTree = ""; }; 42 | 6003F58A195388D20070C39A /* iMonitorMyFiles_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iMonitorMyFiles_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 44 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 45 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 46 | 6003F595195388D20070C39A /* iMonitorMyFiles-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iMonitorMyFiles-Info.plist"; sourceTree = ""; }; 47 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 48 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 49 | 6003F59B195388D20070C39A /* iMonitorMyFiles-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iMonitorMyFiles-Prefix.pch"; sourceTree = ""; }; 50 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 51 | 6003F5AE195388D20070C39A /* iMonitorMyFiles_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iMonitorMyFiles_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 53 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 54 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 55 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 56 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 57 | 8B6429CF2F70CF44A2E5EB7F /* iMonitorMyFiles.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = iMonitorMyFiles.podspec; path = ../iMonitorMyFiles.podspec; sourceTree = ""; }; 58 | 8EC29478C0D4921581FC1899 /* Pods_iMonitorMyFiles_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_iMonitorMyFiles_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 94C2EFF8F71063DD8B617B53 /* Pods-iMonitorMyFiles_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iMonitorMyFiles_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.release.xcconfig"; sourceTree = ""; }; 60 | 9AEA0D5FD0E4BBA77FFC2974 /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iMonitorMyFiles_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.debug.xcconfig"; sourceTree = ""; }; 61 | B14CBF1CC0CE5D969BABF319 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 62 | DB3200EA1D465A1B0079A5AC /* TABAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TABAppDelegate.h; sourceTree = ""; }; 63 | DB3200EB1D465A1B0079A5AC /* TABAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TABAppDelegate.m; sourceTree = ""; }; 64 | DB3200EC1D465A1B0079A5AC /* TABViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TABViewController.h; sourceTree = ""; }; 65 | DB3200ED1D465A1B0079A5AC /* TABViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TABViewController.m; sourceTree = ""; }; 66 | DB3200F41D465AA50079A5AC /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 67 | DF243E1F8F866B5E9B137B4D /* Pods_iMonitorMyFiles_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_iMonitorMyFiles_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 6003F587195388D20070C39A /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 76 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 77 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 78 | 35FEBCE03CFE9FE31567B6B2 /* Pods_iMonitorMyFiles_Example.framework in Frameworks */, 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | 6003F5AB195388D20070C39A /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 87 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 88 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 89 | 7F7E11918458481B7723F851 /* Pods_iMonitorMyFiles_Tests.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | /* End PBXFrameworksBuildPhase section */ 94 | 95 | /* Begin PBXGroup section */ 96 | 2822900767390C14B85CEA14 /* Pods */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 3C9C7D36E94653A9F9104212 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */, 100 | 94C2EFF8F71063DD8B617B53 /* Pods-iMonitorMyFiles_Example.release.xcconfig */, 101 | 9AEA0D5FD0E4BBA77FFC2974 /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */, 102 | 4B1E5F95FB76257178AB65AE /* Pods-iMonitorMyFiles_Tests.release.xcconfig */, 103 | ); 104 | name = Pods; 105 | sourceTree = ""; 106 | }; 107 | 6003F581195388D10070C39A = { 108 | isa = PBXGroup; 109 | children = ( 110 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 111 | 6003F593195388D20070C39A /* Example for iMonitorMyFiles */, 112 | 6003F5B5195388D20070C39A /* Tests */, 113 | 6003F58C195388D20070C39A /* Frameworks */, 114 | 6003F58B195388D20070C39A /* Products */, 115 | 2822900767390C14B85CEA14 /* Pods */, 116 | ); 117 | sourceTree = ""; 118 | }; 119 | 6003F58B195388D20070C39A /* Products */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 6003F58A195388D20070C39A /* iMonitorMyFiles_Example.app */, 123 | 6003F5AE195388D20070C39A /* iMonitorMyFiles_Tests.xctest */, 124 | ); 125 | name = Products; 126 | sourceTree = ""; 127 | }; 128 | 6003F58C195388D20070C39A /* Frameworks */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 6003F58D195388D20070C39A /* Foundation.framework */, 132 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 133 | 6003F591195388D20070C39A /* UIKit.framework */, 134 | 6003F5AF195388D20070C39A /* XCTest.framework */, 135 | DF243E1F8F866B5E9B137B4D /* Pods_iMonitorMyFiles_Example.framework */, 136 | 8EC29478C0D4921581FC1899 /* Pods_iMonitorMyFiles_Tests.framework */, 137 | ); 138 | name = Frameworks; 139 | sourceTree = ""; 140 | }; 141 | 6003F593195388D20070C39A /* Example for iMonitorMyFiles */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | DB3200EA1D465A1B0079A5AC /* TABAppDelegate.h */, 145 | DB3200EB1D465A1B0079A5AC /* TABAppDelegate.m */, 146 | DB3200EC1D465A1B0079A5AC /* TABViewController.h */, 147 | DB3200ED1D465A1B0079A5AC /* TABViewController.m */, 148 | DB3200F41D465AA50079A5AC /* Main.storyboard */, 149 | 6003F5A8195388D20070C39A /* Images.xcassets */, 150 | 6003F594195388D20070C39A /* Supporting Files */, 151 | ); 152 | name = "Example for iMonitorMyFiles"; 153 | path = iMonitorMyFiles; 154 | sourceTree = ""; 155 | }; 156 | 6003F594195388D20070C39A /* Supporting Files */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 6003F595195388D20070C39A /* iMonitorMyFiles-Info.plist */, 160 | 6003F596195388D20070C39A /* InfoPlist.strings */, 161 | 6003F599195388D20070C39A /* main.m */, 162 | 6003F59B195388D20070C39A /* iMonitorMyFiles-Prefix.pch */, 163 | ); 164 | name = "Supporting Files"; 165 | sourceTree = ""; 166 | }; 167 | 6003F5B5195388D20070C39A /* Tests */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | 6003F5BB195388D20070C39A /* Tests.m */, 171 | 6003F5B6195388D20070C39A /* Supporting Files */, 172 | ); 173 | path = Tests; 174 | sourceTree = ""; 175 | }; 176 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 180 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 181 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 182 | ); 183 | name = "Supporting Files"; 184 | sourceTree = ""; 185 | }; 186 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 187 | isa = PBXGroup; 188 | children = ( 189 | 8B6429CF2F70CF44A2E5EB7F /* iMonitorMyFiles.podspec */, 190 | B14CBF1CC0CE5D969BABF319 /* README.md */, 191 | 2E3CF55AA845F18ACE81CA95 /* LICENSE */, 192 | ); 193 | name = "Podspec Metadata"; 194 | sourceTree = ""; 195 | }; 196 | /* End PBXGroup section */ 197 | 198 | /* Begin PBXNativeTarget section */ 199 | 6003F589195388D20070C39A /* iMonitorMyFiles_Example */ = { 200 | isa = PBXNativeTarget; 201 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "iMonitorMyFiles_Example" */; 202 | buildPhases = ( 203 | 477931985D3695FC88F23BBD /* [CP] Check Pods Manifest.lock */, 204 | 6003F586195388D20070C39A /* Sources */, 205 | 6003F587195388D20070C39A /* Frameworks */, 206 | 6003F588195388D20070C39A /* Resources */, 207 | 9889435DC2B1802CD1DFC47E /* [CP] Embed Pods Frameworks */, 208 | B27187DCE7340751E1F72295 /* [CP] Copy Pods Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = iMonitorMyFiles_Example; 215 | productName = iMonitorMyFiles; 216 | productReference = 6003F58A195388D20070C39A /* iMonitorMyFiles_Example.app */; 217 | productType = "com.apple.product-type.application"; 218 | }; 219 | 6003F5AD195388D20070C39A /* iMonitorMyFiles_Tests */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "iMonitorMyFiles_Tests" */; 222 | buildPhases = ( 223 | 02F5235CD00283D6BE1064EB /* [CP] Check Pods Manifest.lock */, 224 | 6003F5AA195388D20070C39A /* Sources */, 225 | 6003F5AB195388D20070C39A /* Frameworks */, 226 | 6003F5AC195388D20070C39A /* Resources */, 227 | 381EA882F07CD4A123F38809 /* [CP] Embed Pods Frameworks */, 228 | B867EAAC49DF3D1B50046CBE /* [CP] Copy Pods Resources */, 229 | ); 230 | buildRules = ( 231 | ); 232 | dependencies = ( 233 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 234 | ); 235 | name = iMonitorMyFiles_Tests; 236 | productName = iMonitorMyFilesTests; 237 | productReference = 6003F5AE195388D20070C39A /* iMonitorMyFiles_Tests.xctest */; 238 | productType = "com.apple.product-type.bundle.unit-test"; 239 | }; 240 | /* End PBXNativeTarget section */ 241 | 242 | /* Begin PBXProject section */ 243 | 6003F582195388D10070C39A /* Project object */ = { 244 | isa = PBXProject; 245 | attributes = { 246 | CLASSPREFIX = TAB; 247 | LastUpgradeCheck = 0720; 248 | ORGANIZATIONNAME = "Travis Blankenship"; 249 | TargetAttributes = { 250 | 6003F5AD195388D20070C39A = { 251 | TestTargetID = 6003F589195388D20070C39A; 252 | }; 253 | }; 254 | }; 255 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "iMonitorMyFiles" */; 256 | compatibilityVersion = "Xcode 3.2"; 257 | developmentRegion = English; 258 | hasScannedForEncodings = 0; 259 | knownRegions = ( 260 | en, 261 | Base, 262 | ); 263 | mainGroup = 6003F581195388D10070C39A; 264 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 265 | projectDirPath = ""; 266 | projectRoot = ""; 267 | targets = ( 268 | 6003F589195388D20070C39A /* iMonitorMyFiles_Example */, 269 | 6003F5AD195388D20070C39A /* iMonitorMyFiles_Tests */, 270 | ); 271 | }; 272 | /* End PBXProject section */ 273 | 274 | /* Begin PBXResourcesBuildPhase section */ 275 | 6003F588195388D20070C39A /* Resources */ = { 276 | isa = PBXResourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | DB3200F51D465AA50079A5AC /* Main.storyboard in Resources */, 280 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 281 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | }; 285 | 6003F5AC195388D20070C39A /* Resources */ = { 286 | isa = PBXResourcesBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | }; 293 | /* End PBXResourcesBuildPhase section */ 294 | 295 | /* Begin PBXShellScriptBuildPhase section */ 296 | 02F5235CD00283D6BE1064EB /* [CP] Check Pods Manifest.lock */ = { 297 | isa = PBXShellScriptBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | ); 301 | inputPaths = ( 302 | ); 303 | name = "[CP] Check Pods Manifest.lock"; 304 | outputPaths = ( 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | 381EA882F07CD4A123F38809 /* [CP] Embed Pods Frameworks */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputPaths = ( 317 | ); 318 | name = "[CP] Embed Pods Frameworks"; 319 | outputPaths = ( 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | shellPath = /bin/sh; 323 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-frameworks.sh\"\n"; 324 | showEnvVarsInLog = 0; 325 | }; 326 | 477931985D3695FC88F23BBD /* [CP] Check Pods Manifest.lock */ = { 327 | isa = PBXShellScriptBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | ); 331 | inputPaths = ( 332 | ); 333 | name = "[CP] Check Pods Manifest.lock"; 334 | outputPaths = ( 335 | ); 336 | runOnlyForDeploymentPostprocessing = 0; 337 | shellPath = /bin/sh; 338 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 339 | showEnvVarsInLog = 0; 340 | }; 341 | 9889435DC2B1802CD1DFC47E /* [CP] Embed Pods Frameworks */ = { 342 | isa = PBXShellScriptBuildPhase; 343 | buildActionMask = 2147483647; 344 | files = ( 345 | ); 346 | inputPaths = ( 347 | ); 348 | name = "[CP] Embed Pods Frameworks"; 349 | outputPaths = ( 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | shellPath = /bin/sh; 353 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-frameworks.sh\"\n"; 354 | showEnvVarsInLog = 0; 355 | }; 356 | B27187DCE7340751E1F72295 /* [CP] Copy Pods Resources */ = { 357 | isa = PBXShellScriptBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | inputPaths = ( 362 | ); 363 | name = "[CP] Copy Pods Resources"; 364 | outputPaths = ( 365 | ); 366 | runOnlyForDeploymentPostprocessing = 0; 367 | shellPath = /bin/sh; 368 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example-resources.sh\"\n"; 369 | showEnvVarsInLog = 0; 370 | }; 371 | B867EAAC49DF3D1B50046CBE /* [CP] Copy Pods Resources */ = { 372 | isa = PBXShellScriptBuildPhase; 373 | buildActionMask = 2147483647; 374 | files = ( 375 | ); 376 | inputPaths = ( 377 | ); 378 | name = "[CP] Copy Pods Resources"; 379 | outputPaths = ( 380 | ); 381 | runOnlyForDeploymentPostprocessing = 0; 382 | shellPath = /bin/sh; 383 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests-resources.sh\"\n"; 384 | showEnvVarsInLog = 0; 385 | }; 386 | /* End PBXShellScriptBuildPhase section */ 387 | 388 | /* Begin PBXSourcesBuildPhase section */ 389 | 6003F586195388D20070C39A /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | DB3200EF1D465A1B0079A5AC /* TABViewController.m in Sources */, 394 | DB3200EE1D465A1B0079A5AC /* TABAppDelegate.m in Sources */, 395 | 6003F59A195388D20070C39A /* main.m in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 6003F5AA195388D20070C39A /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXSourcesBuildPhase section */ 408 | 409 | /* Begin PBXTargetDependency section */ 410 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 411 | isa = PBXTargetDependency; 412 | target = 6003F589195388D20070C39A /* iMonitorMyFiles_Example */; 413 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin PBXVariantGroup section */ 418 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 419 | isa = PBXVariantGroup; 420 | children = ( 421 | 6003F597195388D20070C39A /* en */, 422 | ); 423 | name = InfoPlist.strings; 424 | sourceTree = ""; 425 | }; 426 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 6003F5B9195388D20070C39A /* en */, 430 | ); 431 | name = InfoPlist.strings; 432 | sourceTree = ""; 433 | }; 434 | /* End PBXVariantGroup section */ 435 | 436 | /* Begin XCBuildConfiguration section */ 437 | 6003F5BD195388D20070C39A /* Debug */ = { 438 | isa = XCBuildConfiguration; 439 | buildSettings = { 440 | ALWAYS_SEARCH_USER_PATHS = NO; 441 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 442 | CLANG_CXX_LIBRARY = "libc++"; 443 | CLANG_ENABLE_MODULES = YES; 444 | CLANG_ENABLE_OBJC_ARC = YES; 445 | CLANG_WARN_BOOL_CONVERSION = YES; 446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 448 | CLANG_WARN_EMPTY_BODY = YES; 449 | CLANG_WARN_ENUM_CONVERSION = YES; 450 | CLANG_WARN_INT_CONVERSION = YES; 451 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | ENABLE_TESTABILITY = YES; 456 | GCC_C_LANGUAGE_STANDARD = gnu99; 457 | GCC_DYNAMIC_NO_PIC = NO; 458 | GCC_OPTIMIZATION_LEVEL = 0; 459 | GCC_PREPROCESSOR_DEFINITIONS = ( 460 | "DEBUG=1", 461 | "$(inherited)", 462 | ); 463 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 464 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 465 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 466 | GCC_WARN_UNDECLARED_SELECTOR = YES; 467 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 468 | GCC_WARN_UNUSED_FUNCTION = YES; 469 | GCC_WARN_UNUSED_VARIABLE = YES; 470 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 471 | ONLY_ACTIVE_ARCH = YES; 472 | SDKROOT = iphoneos; 473 | TARGETED_DEVICE_FAMILY = "1,2"; 474 | }; 475 | name = Debug; 476 | }; 477 | 6003F5BE195388D20070C39A /* Release */ = { 478 | isa = XCBuildConfiguration; 479 | buildSettings = { 480 | ALWAYS_SEARCH_USER_PATHS = NO; 481 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 482 | CLANG_CXX_LIBRARY = "libc++"; 483 | CLANG_ENABLE_MODULES = YES; 484 | CLANG_ENABLE_OBJC_ARC = YES; 485 | CLANG_WARN_BOOL_CONVERSION = YES; 486 | CLANG_WARN_CONSTANT_CONVERSION = YES; 487 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 488 | CLANG_WARN_EMPTY_BODY = YES; 489 | CLANG_WARN_ENUM_CONVERSION = YES; 490 | CLANG_WARN_INT_CONVERSION = YES; 491 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 492 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 493 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 494 | COPY_PHASE_STRIP = YES; 495 | ENABLE_NS_ASSERTIONS = NO; 496 | GCC_C_LANGUAGE_STANDARD = gnu99; 497 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 498 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 499 | GCC_WARN_UNDECLARED_SELECTOR = YES; 500 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 501 | GCC_WARN_UNUSED_FUNCTION = YES; 502 | GCC_WARN_UNUSED_VARIABLE = YES; 503 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 504 | SDKROOT = iphoneos; 505 | TARGETED_DEVICE_FAMILY = "1,2"; 506 | VALIDATE_PRODUCT = YES; 507 | }; 508 | name = Release; 509 | }; 510 | 6003F5C0195388D20070C39A /* Debug */ = { 511 | isa = XCBuildConfiguration; 512 | baseConfigurationReference = 3C9C7D36E94653A9F9104212 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */; 513 | buildSettings = { 514 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 515 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 516 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 517 | GCC_PREFIX_HEADER = "iMonitorMyFiles/iMonitorMyFiles-Prefix.pch"; 518 | INFOPLIST_FILE = "iMonitorMyFiles/iMonitorMyFiles-Info.plist"; 519 | MODULE_NAME = ExampleApp; 520 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 521 | PRODUCT_NAME = "$(TARGET_NAME)"; 522 | WRAPPER_EXTENSION = app; 523 | }; 524 | name = Debug; 525 | }; 526 | 6003F5C1195388D20070C39A /* Release */ = { 527 | isa = XCBuildConfiguration; 528 | baseConfigurationReference = 94C2EFF8F71063DD8B617B53 /* Pods-iMonitorMyFiles_Example.release.xcconfig */; 529 | buildSettings = { 530 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 531 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 532 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 533 | GCC_PREFIX_HEADER = "iMonitorMyFiles/iMonitorMyFiles-Prefix.pch"; 534 | INFOPLIST_FILE = "iMonitorMyFiles/iMonitorMyFiles-Info.plist"; 535 | MODULE_NAME = ExampleApp; 536 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | WRAPPER_EXTENSION = app; 539 | }; 540 | name = Release; 541 | }; 542 | 6003F5C3195388D20070C39A /* Debug */ = { 543 | isa = XCBuildConfiguration; 544 | baseConfigurationReference = 9AEA0D5FD0E4BBA77FFC2974 /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */; 545 | buildSettings = { 546 | BUNDLE_LOADER = "$(TEST_HOST)"; 547 | FRAMEWORK_SEARCH_PATHS = ( 548 | "$(SDKROOT)/Developer/Library/Frameworks", 549 | "$(inherited)", 550 | "$(DEVELOPER_FRAMEWORKS_DIR)", 551 | ); 552 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 553 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 554 | GCC_PREPROCESSOR_DEFINITIONS = ( 555 | "DEBUG=1", 556 | "$(inherited)", 557 | ); 558 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 559 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 560 | PRODUCT_NAME = "$(TARGET_NAME)"; 561 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iMonitorMyFiles_Example.app/iMonitorMyFiles_Example"; 562 | WRAPPER_EXTENSION = xctest; 563 | }; 564 | name = Debug; 565 | }; 566 | 6003F5C4195388D20070C39A /* Release */ = { 567 | isa = XCBuildConfiguration; 568 | baseConfigurationReference = 4B1E5F95FB76257178AB65AE /* Pods-iMonitorMyFiles_Tests.release.xcconfig */; 569 | buildSettings = { 570 | BUNDLE_LOADER = "$(TEST_HOST)"; 571 | FRAMEWORK_SEARCH_PATHS = ( 572 | "$(SDKROOT)/Developer/Library/Frameworks", 573 | "$(inherited)", 574 | "$(DEVELOPER_FRAMEWORKS_DIR)", 575 | ); 576 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 577 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 578 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 579 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 580 | PRODUCT_NAME = "$(TARGET_NAME)"; 581 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iMonitorMyFiles_Example.app/iMonitorMyFiles_Example"; 582 | WRAPPER_EXTENSION = xctest; 583 | }; 584 | name = Release; 585 | }; 586 | /* End XCBuildConfiguration section */ 587 | 588 | /* Begin XCConfigurationList section */ 589 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "iMonitorMyFiles" */ = { 590 | isa = XCConfigurationList; 591 | buildConfigurations = ( 592 | 6003F5BD195388D20070C39A /* Debug */, 593 | 6003F5BE195388D20070C39A /* Release */, 594 | ); 595 | defaultConfigurationIsVisible = 0; 596 | defaultConfigurationName = Release; 597 | }; 598 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "iMonitorMyFiles_Example" */ = { 599 | isa = XCConfigurationList; 600 | buildConfigurations = ( 601 | 6003F5C0195388D20070C39A /* Debug */, 602 | 6003F5C1195388D20070C39A /* Release */, 603 | ); 604 | defaultConfigurationIsVisible = 0; 605 | defaultConfigurationName = Release; 606 | }; 607 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "iMonitorMyFiles_Tests" */ = { 608 | isa = XCConfigurationList; 609 | buildConfigurations = ( 610 | 6003F5C3195388D20070C39A /* Debug */, 611 | 6003F5C4195388D20070C39A /* Release */, 612 | ); 613 | defaultConfigurationIsVisible = 0; 614 | defaultConfigurationName = Release; 615 | }; 616 | /* End XCConfigurationList section */ 617 | }; 618 | rootObject = 6003F582195388D10070C39A /* Project object */; 619 | } 620 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0A2B761D28AED5EECF6D2B4C2B597450 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 11 | 1C58C77C182278F7522FB8DCEA579E2A /* Pods-iMonitorMyFiles_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D123BAE37534965E72C0DD43D36C5B41 /* Pods-iMonitorMyFiles_Example-dummy.m */; }; 12 | 310316EDFE5F028E2C131BFF517A2AB9 /* Pods-iMonitorMyFiles_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F04A39DE98D271CEECBE7A4E1CEA5AD /* Pods-iMonitorMyFiles_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 3FEB1CE2BFB5365DDC0A2594CA1A1DA7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 14 | 45BA9F3BFCC85D04E58802B6726D645B /* TABFileMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D9F55C62E79B2AA8E9A85C35DB9D81 /* TABFileMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 51513257D38DA7BAA89C55B21E94037D /* Pods-iMonitorMyFiles_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B610452736D8DC504EFC8771BF8565 /* Pods-iMonitorMyFiles_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 91FB9FD0D2BAB3D7599A57AF6C3668F4 /* Pods-iMonitorMyFiles_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8170EA4D9AE9175A4F0209E7BF116AA1 /* Pods-iMonitorMyFiles_Tests-dummy.m */; }; 17 | 9E8474EC9917718BD2950171D1F1DD49 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 18 | CCE861CC752A7086F3697B0E09FADC93 /* TABFileMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 518B287B4FBD12BDBEEE8B7D771E8690 /* TABFileMonitor.m */; }; 19 | CD82046CC2090167FC8EC475F6C376CC /* iMonitorMyFiles-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39B88BD506E902CFCD7ADB88AE72AD51 /* iMonitorMyFiles-dummy.m */; }; 20 | F7F04656A2A06C866DC9262246E6CD98 /* iMonitorMyFiles-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A65A6211823D5AC015328C09BB352B /* iMonitorMyFiles-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 5FD61091EBF8080736C49C607C0B5B73 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 26C387E44BF8276370A00334064DC9B9; 29 | remoteInfo = iMonitorMyFiles; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 0AF3871AE24E4A41F85C328CBDD30898 /* Pods-iMonitorMyFiles_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iMonitorMyFiles_Example-acknowledgements.plist"; sourceTree = ""; }; 35 | 12A65A6211823D5AC015328C09BB352B /* iMonitorMyFiles-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iMonitorMyFiles-umbrella.h"; sourceTree = ""; }; 36 | 15409B3128D6BA51686D55C1A393888A /* Pods_iMonitorMyFiles_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_iMonitorMyFiles_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 1C038FB11CAA711AB050231627962C05 /* Pods-iMonitorMyFiles_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-iMonitorMyFiles_Example.modulemap"; sourceTree = ""; }; 38 | 2039B46E96A98DAFA4512D93631CF75D /* Pods_iMonitorMyFiles_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_iMonitorMyFiles_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 2046F4E18133C9C7DBFB4A170B964693 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 348F410560BD62657E2EC4BD2A43309F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 41 | 39B88BD506E902CFCD7ADB88AE72AD51 /* iMonitorMyFiles-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "iMonitorMyFiles-dummy.m"; sourceTree = ""; }; 42 | 46FE729089E7BC5152F8EB8C5F7CEF19 /* Pods-iMonitorMyFiles_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iMonitorMyFiles_Example.release.xcconfig"; sourceTree = ""; }; 43 | 518B287B4FBD12BDBEEE8B7D771E8690 /* TABFileMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TABFileMonitor.m; sourceTree = ""; }; 44 | 672FD5B5A0FAD25E720994D00D687C9B /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iMonitorMyFiles_Tests.debug.xcconfig"; sourceTree = ""; }; 45 | 7517FCADE5B9CCACBE4D1F4D1D4FDC03 /* Pods-iMonitorMyFiles_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-iMonitorMyFiles_Tests-acknowledgements.markdown"; sourceTree = ""; }; 46 | 7F04A39DE98D271CEECBE7A4E1CEA5AD /* Pods-iMonitorMyFiles_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-iMonitorMyFiles_Example-umbrella.h"; sourceTree = ""; }; 47 | 7FD61273D6E24B0314A3753C20DA33F1 /* Pods-iMonitorMyFiles_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iMonitorMyFiles_Tests-acknowledgements.plist"; sourceTree = ""; }; 48 | 8170EA4D9AE9175A4F0209E7BF116AA1 /* Pods-iMonitorMyFiles_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-iMonitorMyFiles_Tests-dummy.m"; sourceTree = ""; }; 49 | 8996622FCDF7214C2CBE3FFCA3F180BE /* Pods-iMonitorMyFiles_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iMonitorMyFiles_Tests-resources.sh"; sourceTree = ""; }; 50 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | 9B1ACB6F2D25D390ACB85B4339D6B241 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iMonitorMyFiles_Example.debug.xcconfig"; sourceTree = ""; }; 52 | 9F09FA642CFC8B98811F0BEBF7BB064F /* iMonitorMyFiles-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iMonitorMyFiles-prefix.pch"; sourceTree = ""; }; 53 | 9FB09E47AA7C8DACCE93438E9CBF50C5 /* Pods-iMonitorMyFiles_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-iMonitorMyFiles_Example-acknowledgements.markdown"; sourceTree = ""; }; 54 | A1D9F55C62E79B2AA8E9A85C35DB9D81 /* TABFileMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TABFileMonitor.h; sourceTree = ""; }; 55 | A5EF25A9A7E1E556DB739A077F0FB45A /* Pods-iMonitorMyFiles_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iMonitorMyFiles_Example-resources.sh"; sourceTree = ""; }; 56 | B475729237427E954494E68E7B46400D /* Pods-iMonitorMyFiles_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iMonitorMyFiles_Tests-frameworks.sh"; sourceTree = ""; }; 57 | B5B610452736D8DC504EFC8771BF8565 /* Pods-iMonitorMyFiles_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-iMonitorMyFiles_Tests-umbrella.h"; sourceTree = ""; }; 58 | B8D9AC72DE43B5286246A3F4674EE0F2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | B919C96FB3311B0F0158CFFDE9981AD1 /* Pods-iMonitorMyFiles_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iMonitorMyFiles_Example-frameworks.sh"; sourceTree = ""; }; 60 | C216BDDD58D3AB77D94CD41A8D9FCC72 /* Pods-iMonitorMyFiles_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iMonitorMyFiles_Tests.release.xcconfig"; sourceTree = ""; }; 61 | CA658E06FB225F17BB733E701F4CAE5D /* Pods-iMonitorMyFiles_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-iMonitorMyFiles_Tests.modulemap"; sourceTree = ""; }; 62 | CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 63 | D123BAE37534965E72C0DD43D36C5B41 /* Pods-iMonitorMyFiles_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-iMonitorMyFiles_Example-dummy.m"; sourceTree = ""; }; 64 | D93CFFF6C390174F52DCA51323CF9676 /* iMonitorMyFiles.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = iMonitorMyFiles.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | E16138CFA8EB928ECE40E892D3B1548B /* iMonitorMyFiles.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = iMonitorMyFiles.modulemap; sourceTree = ""; }; 66 | F555C3E9801BF4891F954F04A603D254 /* iMonitorMyFiles.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = iMonitorMyFiles.xcconfig; sourceTree = ""; }; 67 | /* End PBXFileReference section */ 68 | 69 | /* Begin PBXFrameworksBuildPhase section */ 70 | 0021F4935FEAA522AF23842C01F95D77 /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | 9E8474EC9917718BD2950171D1F1DD49 /* Foundation.framework in Frameworks */, 75 | ); 76 | runOnlyForDeploymentPostprocessing = 0; 77 | }; 78 | 3DBE07EB456FD19A6A6219271845E7CA /* Frameworks */ = { 79 | isa = PBXFrameworksBuildPhase; 80 | buildActionMask = 2147483647; 81 | files = ( 82 | 0A2B761D28AED5EECF6D2B4C2B597450 /* Foundation.framework in Frameworks */, 83 | ); 84 | runOnlyForDeploymentPostprocessing = 0; 85 | }; 86 | 5B666707F7E82B02BCDC2AD600A2F5B9 /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | 3FEB1CE2BFB5365DDC0A2594CA1A1DA7 /* Foundation.framework in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | /* End PBXFrameworksBuildPhase section */ 95 | 96 | /* Begin PBXGroup section */ 97 | 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */, 101 | ); 102 | name = iOS; 103 | sourceTree = ""; 104 | }; 105 | 556A0FE4213974AA5F6F8808CACD66E6 /* Development Pods */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 5A5687B72CFDFF0B149E0E5982B766D0 /* iMonitorMyFiles */, 109 | ); 110 | name = "Development Pods"; 111 | sourceTree = ""; 112 | }; 113 | 5A5687B72CFDFF0B149E0E5982B766D0 /* iMonitorMyFiles */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | FA5AF628BE6BE930139D913F5F51B8FD /* iMonitorMyFiles */, 117 | B0E8104DF375858ED01A0207C05D4B32 /* Support Files */, 118 | ); 119 | name = iMonitorMyFiles; 120 | path = ../..; 121 | sourceTree = ""; 122 | }; 123 | 60F5D56496F782D39E79F82B36FF59C8 /* Pods-iMonitorMyFiles_Example */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | B8D9AC72DE43B5286246A3F4674EE0F2 /* Info.plist */, 127 | 1C038FB11CAA711AB050231627962C05 /* Pods-iMonitorMyFiles_Example.modulemap */, 128 | 9FB09E47AA7C8DACCE93438E9CBF50C5 /* Pods-iMonitorMyFiles_Example-acknowledgements.markdown */, 129 | 0AF3871AE24E4A41F85C328CBDD30898 /* Pods-iMonitorMyFiles_Example-acknowledgements.plist */, 130 | D123BAE37534965E72C0DD43D36C5B41 /* Pods-iMonitorMyFiles_Example-dummy.m */, 131 | B919C96FB3311B0F0158CFFDE9981AD1 /* Pods-iMonitorMyFiles_Example-frameworks.sh */, 132 | A5EF25A9A7E1E556DB739A077F0FB45A /* Pods-iMonitorMyFiles_Example-resources.sh */, 133 | 7F04A39DE98D271CEECBE7A4E1CEA5AD /* Pods-iMonitorMyFiles_Example-umbrella.h */, 134 | 9B1ACB6F2D25D390ACB85B4339D6B241 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */, 135 | 46FE729089E7BC5152F8EB8C5F7CEF19 /* Pods-iMonitorMyFiles_Example.release.xcconfig */, 136 | ); 137 | name = "Pods-iMonitorMyFiles_Example"; 138 | path = "Target Support Files/Pods-iMonitorMyFiles_Example"; 139 | sourceTree = ""; 140 | }; 141 | 7DB346D0F39D3F0E887471402A8071AB = { 142 | isa = PBXGroup; 143 | children = ( 144 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 145 | 556A0FE4213974AA5F6F8808CACD66E6 /* Development Pods */, 146 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 147 | BE3F0CB755ECB68D96650CCB1BB16720 /* Products */, 148 | D9CA30D7EE477F4F75EEFA124656C168 /* Targets Support Files */, 149 | ); 150 | sourceTree = ""; 151 | }; 152 | 9BAF41A02F0D2313ED160961DF3F6561 /* Pods-iMonitorMyFiles_Tests */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 2046F4E18133C9C7DBFB4A170B964693 /* Info.plist */, 156 | CA658E06FB225F17BB733E701F4CAE5D /* Pods-iMonitorMyFiles_Tests.modulemap */, 157 | 7517FCADE5B9CCACBE4D1F4D1D4FDC03 /* Pods-iMonitorMyFiles_Tests-acknowledgements.markdown */, 158 | 7FD61273D6E24B0314A3753C20DA33F1 /* Pods-iMonitorMyFiles_Tests-acknowledgements.plist */, 159 | 8170EA4D9AE9175A4F0209E7BF116AA1 /* Pods-iMonitorMyFiles_Tests-dummy.m */, 160 | B475729237427E954494E68E7B46400D /* Pods-iMonitorMyFiles_Tests-frameworks.sh */, 161 | 8996622FCDF7214C2CBE3FFCA3F180BE /* Pods-iMonitorMyFiles_Tests-resources.sh */, 162 | B5B610452736D8DC504EFC8771BF8565 /* Pods-iMonitorMyFiles_Tests-umbrella.h */, 163 | 672FD5B5A0FAD25E720994D00D687C9B /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */, 164 | C216BDDD58D3AB77D94CD41A8D9FCC72 /* Pods-iMonitorMyFiles_Tests.release.xcconfig */, 165 | ); 166 | name = "Pods-iMonitorMyFiles_Tests"; 167 | path = "Target Support Files/Pods-iMonitorMyFiles_Tests"; 168 | sourceTree = ""; 169 | }; 170 | A9129D4AB457D5750C56AF72D37D5BF1 /* Classes */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | A1D9F55C62E79B2AA8E9A85C35DB9D81 /* TABFileMonitor.h */, 174 | 518B287B4FBD12BDBEEE8B7D771E8690 /* TABFileMonitor.m */, 175 | ); 176 | path = Classes; 177 | sourceTree = ""; 178 | }; 179 | B0E8104DF375858ED01A0207C05D4B32 /* Support Files */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | E16138CFA8EB928ECE40E892D3B1548B /* iMonitorMyFiles.modulemap */, 183 | F555C3E9801BF4891F954F04A603D254 /* iMonitorMyFiles.xcconfig */, 184 | 39B88BD506E902CFCD7ADB88AE72AD51 /* iMonitorMyFiles-dummy.m */, 185 | 9F09FA642CFC8B98811F0BEBF7BB064F /* iMonitorMyFiles-prefix.pch */, 186 | 12A65A6211823D5AC015328C09BB352B /* iMonitorMyFiles-umbrella.h */, 187 | 348F410560BD62657E2EC4BD2A43309F /* Info.plist */, 188 | ); 189 | name = "Support Files"; 190 | path = "Example/Pods/Target Support Files/iMonitorMyFiles"; 191 | sourceTree = ""; 192 | }; 193 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */, 197 | ); 198 | name = Frameworks; 199 | sourceTree = ""; 200 | }; 201 | BE3F0CB755ECB68D96650CCB1BB16720 /* Products */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | D93CFFF6C390174F52DCA51323CF9676 /* iMonitorMyFiles.framework */, 205 | 15409B3128D6BA51686D55C1A393888A /* Pods_iMonitorMyFiles_Example.framework */, 206 | 2039B46E96A98DAFA4512D93631CF75D /* Pods_iMonitorMyFiles_Tests.framework */, 207 | ); 208 | name = Products; 209 | sourceTree = ""; 210 | }; 211 | D9CA30D7EE477F4F75EEFA124656C168 /* Targets Support Files */ = { 212 | isa = PBXGroup; 213 | children = ( 214 | 60F5D56496F782D39E79F82B36FF59C8 /* Pods-iMonitorMyFiles_Example */, 215 | 9BAF41A02F0D2313ED160961DF3F6561 /* Pods-iMonitorMyFiles_Tests */, 216 | ); 217 | name = "Targets Support Files"; 218 | sourceTree = ""; 219 | }; 220 | FA5AF628BE6BE930139D913F5F51B8FD /* iMonitorMyFiles */ = { 221 | isa = PBXGroup; 222 | children = ( 223 | A9129D4AB457D5750C56AF72D37D5BF1 /* Classes */, 224 | ); 225 | path = iMonitorMyFiles; 226 | sourceTree = ""; 227 | }; 228 | /* End PBXGroup section */ 229 | 230 | /* Begin PBXHeadersBuildPhase section */ 231 | 30539F6D94289EF3A54BA14DA458ED6B /* Headers */ = { 232 | isa = PBXHeadersBuildPhase; 233 | buildActionMask = 2147483647; 234 | files = ( 235 | F7F04656A2A06C866DC9262246E6CD98 /* iMonitorMyFiles-umbrella.h in Headers */, 236 | 45BA9F3BFCC85D04E58802B6726D645B /* TABFileMonitor.h in Headers */, 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | }; 240 | 4D537DD3F8A40B9113D182FA5FF9D948 /* Headers */ = { 241 | isa = PBXHeadersBuildPhase; 242 | buildActionMask = 2147483647; 243 | files = ( 244 | 51513257D38DA7BAA89C55B21E94037D /* Pods-iMonitorMyFiles_Tests-umbrella.h in Headers */, 245 | ); 246 | runOnlyForDeploymentPostprocessing = 0; 247 | }; 248 | B6F7A3BF97D95408E6637770F0C05A2D /* Headers */ = { 249 | isa = PBXHeadersBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | 310316EDFE5F028E2C131BFF517A2AB9 /* Pods-iMonitorMyFiles_Example-umbrella.h in Headers */, 253 | ); 254 | runOnlyForDeploymentPostprocessing = 0; 255 | }; 256 | /* End PBXHeadersBuildPhase section */ 257 | 258 | /* Begin PBXNativeTarget section */ 259 | 26C387E44BF8276370A00334064DC9B9 /* iMonitorMyFiles */ = { 260 | isa = PBXNativeTarget; 261 | buildConfigurationList = A770D07ED2D61BC02D271AEDDD644AFD /* Build configuration list for PBXNativeTarget "iMonitorMyFiles" */; 262 | buildPhases = ( 263 | 40CE7D24CC71C7EBB89D472567656644 /* Sources */, 264 | 5B666707F7E82B02BCDC2AD600A2F5B9 /* Frameworks */, 265 | 30539F6D94289EF3A54BA14DA458ED6B /* Headers */, 266 | ); 267 | buildRules = ( 268 | ); 269 | dependencies = ( 270 | ); 271 | name = iMonitorMyFiles; 272 | productName = iMonitorMyFiles; 273 | productReference = D93CFFF6C390174F52DCA51323CF9676 /* iMonitorMyFiles.framework */; 274 | productType = "com.apple.product-type.framework"; 275 | }; 276 | B0F4F5CC55290355C609BF836F2540DB /* Pods-iMonitorMyFiles_Tests */ = { 277 | isa = PBXNativeTarget; 278 | buildConfigurationList = 18E8023317E8F859EB7AB5EBDC6884C9 /* Build configuration list for PBXNativeTarget "Pods-iMonitorMyFiles_Tests" */; 279 | buildPhases = ( 280 | DC79FC5C300880487706D5B304FCCD8A /* Sources */, 281 | 0021F4935FEAA522AF23842C01F95D77 /* Frameworks */, 282 | 4D537DD3F8A40B9113D182FA5FF9D948 /* Headers */, 283 | ); 284 | buildRules = ( 285 | ); 286 | dependencies = ( 287 | ); 288 | name = "Pods-iMonitorMyFiles_Tests"; 289 | productName = "Pods-iMonitorMyFiles_Tests"; 290 | productReference = 2039B46E96A98DAFA4512D93631CF75D /* Pods_iMonitorMyFiles_Tests.framework */; 291 | productType = "com.apple.product-type.framework"; 292 | }; 293 | F33655DCC8B70F57F6B5ADD6661EAC38 /* Pods-iMonitorMyFiles_Example */ = { 294 | isa = PBXNativeTarget; 295 | buildConfigurationList = 4DF73805A549C99CAC6A8074B9F6F5F5 /* Build configuration list for PBXNativeTarget "Pods-iMonitorMyFiles_Example" */; 296 | buildPhases = ( 297 | 2EE4649A6FBF59D296D81C26E26013F3 /* Sources */, 298 | 3DBE07EB456FD19A6A6219271845E7CA /* Frameworks */, 299 | B6F7A3BF97D95408E6637770F0C05A2D /* Headers */, 300 | ); 301 | buildRules = ( 302 | ); 303 | dependencies = ( 304 | A03FD32109D36D376BDC6F1C5D49778C /* PBXTargetDependency */, 305 | ); 306 | name = "Pods-iMonitorMyFiles_Example"; 307 | productName = "Pods-iMonitorMyFiles_Example"; 308 | productReference = 15409B3128D6BA51686D55C1A393888A /* Pods_iMonitorMyFiles_Example.framework */; 309 | productType = "com.apple.product-type.framework"; 310 | }; 311 | /* End PBXNativeTarget section */ 312 | 313 | /* Begin PBXProject section */ 314 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 315 | isa = PBXProject; 316 | attributes = { 317 | LastSwiftUpdateCheck = 0730; 318 | LastUpgradeCheck = 0700; 319 | }; 320 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 321 | compatibilityVersion = "Xcode 3.2"; 322 | developmentRegion = English; 323 | hasScannedForEncodings = 0; 324 | knownRegions = ( 325 | en, 326 | ); 327 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 328 | productRefGroup = BE3F0CB755ECB68D96650CCB1BB16720 /* Products */; 329 | projectDirPath = ""; 330 | projectRoot = ""; 331 | targets = ( 332 | 26C387E44BF8276370A00334064DC9B9 /* iMonitorMyFiles */, 333 | F33655DCC8B70F57F6B5ADD6661EAC38 /* Pods-iMonitorMyFiles_Example */, 334 | B0F4F5CC55290355C609BF836F2540DB /* Pods-iMonitorMyFiles_Tests */, 335 | ); 336 | }; 337 | /* End PBXProject section */ 338 | 339 | /* Begin PBXSourcesBuildPhase section */ 340 | 2EE4649A6FBF59D296D81C26E26013F3 /* Sources */ = { 341 | isa = PBXSourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 1C58C77C182278F7522FB8DCEA579E2A /* Pods-iMonitorMyFiles_Example-dummy.m in Sources */, 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | }; 348 | 40CE7D24CC71C7EBB89D472567656644 /* Sources */ = { 349 | isa = PBXSourcesBuildPhase; 350 | buildActionMask = 2147483647; 351 | files = ( 352 | CD82046CC2090167FC8EC475F6C376CC /* iMonitorMyFiles-dummy.m in Sources */, 353 | CCE861CC752A7086F3697B0E09FADC93 /* TABFileMonitor.m in Sources */, 354 | ); 355 | runOnlyForDeploymentPostprocessing = 0; 356 | }; 357 | DC79FC5C300880487706D5B304FCCD8A /* Sources */ = { 358 | isa = PBXSourcesBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | 91FB9FD0D2BAB3D7599A57AF6C3668F4 /* Pods-iMonitorMyFiles_Tests-dummy.m in Sources */, 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | /* End PBXSourcesBuildPhase section */ 366 | 367 | /* Begin PBXTargetDependency section */ 368 | A03FD32109D36D376BDC6F1C5D49778C /* PBXTargetDependency */ = { 369 | isa = PBXTargetDependency; 370 | name = iMonitorMyFiles; 371 | target = 26C387E44BF8276370A00334064DC9B9 /* iMonitorMyFiles */; 372 | targetProxy = 5FD61091EBF8080736C49C607C0B5B73 /* PBXContainerItemProxy */; 373 | }; 374 | /* End PBXTargetDependency section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_ANALYZER_NONNULL = YES; 382 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 383 | CLANG_CXX_LIBRARY = "libc++"; 384 | CLANG_ENABLE_MODULES = YES; 385 | CLANG_ENABLE_OBJC_ARC = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_CONSTANT_CONVERSION = YES; 388 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 389 | CLANG_WARN_EMPTY_BODY = YES; 390 | CLANG_WARN_ENUM_CONVERSION = YES; 391 | CLANG_WARN_INT_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 393 | CLANG_WARN_UNREACHABLE_CODE = YES; 394 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 395 | COPY_PHASE_STRIP = YES; 396 | ENABLE_NS_ASSERTIONS = NO; 397 | GCC_C_LANGUAGE_STANDARD = gnu99; 398 | GCC_PREPROCESSOR_DEFINITIONS = ( 399 | "POD_CONFIGURATION_RELEASE=1", 400 | "$(inherited)", 401 | ); 402 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 403 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 404 | GCC_WARN_UNDECLARED_SELECTOR = YES; 405 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 406 | GCC_WARN_UNUSED_FUNCTION = YES; 407 | GCC_WARN_UNUSED_VARIABLE = YES; 408 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 409 | STRIP_INSTALLED_PRODUCT = NO; 410 | SYMROOT = "${SRCROOT}/../build"; 411 | VALIDATE_PRODUCT = YES; 412 | }; 413 | name = Release; 414 | }; 415 | AF05E39EA23C9302B468DC454D41D8E6 /* Release */ = { 416 | isa = XCBuildConfiguration; 417 | baseConfigurationReference = 46FE729089E7BC5152F8EB8C5F7CEF19 /* Pods-iMonitorMyFiles_Example.release.xcconfig */; 418 | buildSettings = { 419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 420 | CURRENT_PROJECT_VERSION = 1; 421 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 422 | DEFINES_MODULE = YES; 423 | DYLIB_COMPATIBILITY_VERSION = 1; 424 | DYLIB_CURRENT_VERSION = 1; 425 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 426 | ENABLE_STRICT_OBJC_MSGSEND = YES; 427 | GCC_NO_COMMON_BLOCKS = YES; 428 | INFOPLIST_FILE = "Target Support Files/Pods-iMonitorMyFiles_Example/Info.plist"; 429 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 430 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 431 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 432 | MACH_O_TYPE = staticlib; 433 | MODULEMAP_FILE = "Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.modulemap"; 434 | MTL_ENABLE_DEBUG_INFO = NO; 435 | OTHER_LDFLAGS = ""; 436 | OTHER_LIBTOOLFLAGS = ""; 437 | PODS_ROOT = "$(SRCROOT)"; 438 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 439 | PRODUCT_NAME = Pods_iMonitorMyFiles_Example; 440 | SDKROOT = iphoneos; 441 | SKIP_INSTALL = YES; 442 | TARGETED_DEVICE_FAMILY = "1,2"; 443 | VERSIONING_SYSTEM = "apple-generic"; 444 | VERSION_INFO_PREFIX = ""; 445 | }; 446 | name = Release; 447 | }; 448 | B0B8CA2235CB62ADF73567D908E671E0 /* Debug */ = { 449 | isa = XCBuildConfiguration; 450 | baseConfigurationReference = F555C3E9801BF4891F954F04A603D254 /* iMonitorMyFiles.xcconfig */; 451 | buildSettings = { 452 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 453 | CURRENT_PROJECT_VERSION = 1; 454 | DEBUG_INFORMATION_FORMAT = dwarf; 455 | DEFINES_MODULE = YES; 456 | DYLIB_COMPATIBILITY_VERSION = 1; 457 | DYLIB_CURRENT_VERSION = 1; 458 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_NO_COMMON_BLOCKS = YES; 461 | GCC_PREFIX_HEADER = "Target Support Files/iMonitorMyFiles/iMonitorMyFiles-prefix.pch"; 462 | INFOPLIST_FILE = "Target Support Files/iMonitorMyFiles/Info.plist"; 463 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 464 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 465 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 466 | MODULEMAP_FILE = "Target Support Files/iMonitorMyFiles/iMonitorMyFiles.modulemap"; 467 | MTL_ENABLE_DEBUG_INFO = YES; 468 | PRODUCT_NAME = iMonitorMyFiles; 469 | SDKROOT = iphoneos; 470 | SKIP_INSTALL = YES; 471 | TARGETED_DEVICE_FAMILY = "1,2"; 472 | VERSIONING_SYSTEM = "apple-generic"; 473 | VERSION_INFO_PREFIX = ""; 474 | }; 475 | name = Debug; 476 | }; 477 | B370B83C0CF5F906DEB33391964A12B7 /* Debug */ = { 478 | isa = XCBuildConfiguration; 479 | baseConfigurationReference = 9B1ACB6F2D25D390ACB85B4339D6B241 /* Pods-iMonitorMyFiles_Example.debug.xcconfig */; 480 | buildSettings = { 481 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 482 | CURRENT_PROJECT_VERSION = 1; 483 | DEBUG_INFORMATION_FORMAT = dwarf; 484 | DEFINES_MODULE = YES; 485 | DYLIB_COMPATIBILITY_VERSION = 1; 486 | DYLIB_CURRENT_VERSION = 1; 487 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 488 | ENABLE_STRICT_OBJC_MSGSEND = YES; 489 | GCC_NO_COMMON_BLOCKS = YES; 490 | INFOPLIST_FILE = "Target Support Files/Pods-iMonitorMyFiles_Example/Info.plist"; 491 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 492 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 493 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 494 | MACH_O_TYPE = staticlib; 495 | MODULEMAP_FILE = "Target Support Files/Pods-iMonitorMyFiles_Example/Pods-iMonitorMyFiles_Example.modulemap"; 496 | MTL_ENABLE_DEBUG_INFO = YES; 497 | OTHER_LDFLAGS = ""; 498 | OTHER_LIBTOOLFLAGS = ""; 499 | PODS_ROOT = "$(SRCROOT)"; 500 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 501 | PRODUCT_NAME = Pods_iMonitorMyFiles_Example; 502 | SDKROOT = iphoneos; 503 | SKIP_INSTALL = YES; 504 | TARGETED_DEVICE_FAMILY = "1,2"; 505 | VERSIONING_SYSTEM = "apple-generic"; 506 | VERSION_INFO_PREFIX = ""; 507 | }; 508 | name = Debug; 509 | }; 510 | CDC53690A12EF542B1795F2906A2627B /* Release */ = { 511 | isa = XCBuildConfiguration; 512 | baseConfigurationReference = F555C3E9801BF4891F954F04A603D254 /* iMonitorMyFiles.xcconfig */; 513 | buildSettings = { 514 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 515 | CURRENT_PROJECT_VERSION = 1; 516 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 517 | DEFINES_MODULE = YES; 518 | DYLIB_COMPATIBILITY_VERSION = 1; 519 | DYLIB_CURRENT_VERSION = 1; 520 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 521 | ENABLE_STRICT_OBJC_MSGSEND = YES; 522 | GCC_NO_COMMON_BLOCKS = YES; 523 | GCC_PREFIX_HEADER = "Target Support Files/iMonitorMyFiles/iMonitorMyFiles-prefix.pch"; 524 | INFOPLIST_FILE = "Target Support Files/iMonitorMyFiles/Info.plist"; 525 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 526 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 527 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 528 | MODULEMAP_FILE = "Target Support Files/iMonitorMyFiles/iMonitorMyFiles.modulemap"; 529 | MTL_ENABLE_DEBUG_INFO = NO; 530 | PRODUCT_NAME = iMonitorMyFiles; 531 | SDKROOT = iphoneos; 532 | SKIP_INSTALL = YES; 533 | TARGETED_DEVICE_FAMILY = "1,2"; 534 | VERSIONING_SYSTEM = "apple-generic"; 535 | VERSION_INFO_PREFIX = ""; 536 | }; 537 | name = Release; 538 | }; 539 | D26419455B68F6E83E7BF8E46EBD68D9 /* Release */ = { 540 | isa = XCBuildConfiguration; 541 | baseConfigurationReference = C216BDDD58D3AB77D94CD41A8D9FCC72 /* Pods-iMonitorMyFiles_Tests.release.xcconfig */; 542 | buildSettings = { 543 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 544 | CURRENT_PROJECT_VERSION = 1; 545 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 546 | DEFINES_MODULE = YES; 547 | DYLIB_COMPATIBILITY_VERSION = 1; 548 | DYLIB_CURRENT_VERSION = 1; 549 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 550 | ENABLE_STRICT_OBJC_MSGSEND = YES; 551 | GCC_NO_COMMON_BLOCKS = YES; 552 | INFOPLIST_FILE = "Target Support Files/Pods-iMonitorMyFiles_Tests/Info.plist"; 553 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 554 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 555 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 556 | MACH_O_TYPE = staticlib; 557 | MODULEMAP_FILE = "Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.modulemap"; 558 | MTL_ENABLE_DEBUG_INFO = NO; 559 | OTHER_LDFLAGS = ""; 560 | OTHER_LIBTOOLFLAGS = ""; 561 | PODS_ROOT = "$(SRCROOT)"; 562 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 563 | PRODUCT_NAME = Pods_iMonitorMyFiles_Tests; 564 | SDKROOT = iphoneos; 565 | SKIP_INSTALL = YES; 566 | TARGETED_DEVICE_FAMILY = "1,2"; 567 | VERSIONING_SYSTEM = "apple-generic"; 568 | VERSION_INFO_PREFIX = ""; 569 | }; 570 | name = Release; 571 | }; 572 | D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */ = { 573 | isa = XCBuildConfiguration; 574 | buildSettings = { 575 | ALWAYS_SEARCH_USER_PATHS = NO; 576 | CLANG_ANALYZER_NONNULL = YES; 577 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 578 | CLANG_CXX_LIBRARY = "libc++"; 579 | CLANG_ENABLE_MODULES = YES; 580 | CLANG_ENABLE_OBJC_ARC = YES; 581 | CLANG_WARN_BOOL_CONVERSION = YES; 582 | CLANG_WARN_CONSTANT_CONVERSION = YES; 583 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 584 | CLANG_WARN_EMPTY_BODY = YES; 585 | CLANG_WARN_ENUM_CONVERSION = YES; 586 | CLANG_WARN_INT_CONVERSION = YES; 587 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 588 | CLANG_WARN_UNREACHABLE_CODE = YES; 589 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 590 | COPY_PHASE_STRIP = NO; 591 | ENABLE_TESTABILITY = YES; 592 | GCC_C_LANGUAGE_STANDARD = gnu99; 593 | GCC_DYNAMIC_NO_PIC = NO; 594 | GCC_OPTIMIZATION_LEVEL = 0; 595 | GCC_PREPROCESSOR_DEFINITIONS = ( 596 | "POD_CONFIGURATION_DEBUG=1", 597 | "DEBUG=1", 598 | "$(inherited)", 599 | ); 600 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 601 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 602 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 603 | GCC_WARN_UNDECLARED_SELECTOR = YES; 604 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 605 | GCC_WARN_UNUSED_FUNCTION = YES; 606 | GCC_WARN_UNUSED_VARIABLE = YES; 607 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 608 | ONLY_ACTIVE_ARCH = YES; 609 | STRIP_INSTALLED_PRODUCT = NO; 610 | SYMROOT = "${SRCROOT}/../build"; 611 | }; 612 | name = Debug; 613 | }; 614 | D7C21DECC97784877B07AE09095433A5 /* Debug */ = { 615 | isa = XCBuildConfiguration; 616 | baseConfigurationReference = 672FD5B5A0FAD25E720994D00D687C9B /* Pods-iMonitorMyFiles_Tests.debug.xcconfig */; 617 | buildSettings = { 618 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 619 | CURRENT_PROJECT_VERSION = 1; 620 | DEBUG_INFORMATION_FORMAT = dwarf; 621 | DEFINES_MODULE = YES; 622 | DYLIB_COMPATIBILITY_VERSION = 1; 623 | DYLIB_CURRENT_VERSION = 1; 624 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 625 | ENABLE_STRICT_OBJC_MSGSEND = YES; 626 | GCC_NO_COMMON_BLOCKS = YES; 627 | INFOPLIST_FILE = "Target Support Files/Pods-iMonitorMyFiles_Tests/Info.plist"; 628 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 629 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 630 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 631 | MACH_O_TYPE = staticlib; 632 | MODULEMAP_FILE = "Target Support Files/Pods-iMonitorMyFiles_Tests/Pods-iMonitorMyFiles_Tests.modulemap"; 633 | MTL_ENABLE_DEBUG_INFO = YES; 634 | OTHER_LDFLAGS = ""; 635 | OTHER_LIBTOOLFLAGS = ""; 636 | PODS_ROOT = "$(SRCROOT)"; 637 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 638 | PRODUCT_NAME = Pods_iMonitorMyFiles_Tests; 639 | SDKROOT = iphoneos; 640 | SKIP_INSTALL = YES; 641 | TARGETED_DEVICE_FAMILY = "1,2"; 642 | VERSIONING_SYSTEM = "apple-generic"; 643 | VERSION_INFO_PREFIX = ""; 644 | }; 645 | name = Debug; 646 | }; 647 | /* End XCBuildConfiguration section */ 648 | 649 | /* Begin XCConfigurationList section */ 650 | 18E8023317E8F859EB7AB5EBDC6884C9 /* Build configuration list for PBXNativeTarget "Pods-iMonitorMyFiles_Tests" */ = { 651 | isa = XCConfigurationList; 652 | buildConfigurations = ( 653 | D7C21DECC97784877B07AE09095433A5 /* Debug */, 654 | D26419455B68F6E83E7BF8E46EBD68D9 /* Release */, 655 | ); 656 | defaultConfigurationIsVisible = 0; 657 | defaultConfigurationName = Release; 658 | }; 659 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 660 | isa = XCConfigurationList; 661 | buildConfigurations = ( 662 | D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */, 663 | 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */, 664 | ); 665 | defaultConfigurationIsVisible = 0; 666 | defaultConfigurationName = Release; 667 | }; 668 | 4DF73805A549C99CAC6A8074B9F6F5F5 /* Build configuration list for PBXNativeTarget "Pods-iMonitorMyFiles_Example" */ = { 669 | isa = XCConfigurationList; 670 | buildConfigurations = ( 671 | B370B83C0CF5F906DEB33391964A12B7 /* Debug */, 672 | AF05E39EA23C9302B468DC454D41D8E6 /* Release */, 673 | ); 674 | defaultConfigurationIsVisible = 0; 675 | defaultConfigurationName = Release; 676 | }; 677 | A770D07ED2D61BC02D271AEDDD644AFD /* Build configuration list for PBXNativeTarget "iMonitorMyFiles" */ = { 678 | isa = XCConfigurationList; 679 | buildConfigurations = ( 680 | B0B8CA2235CB62ADF73567D908E671E0 /* Debug */, 681 | CDC53690A12EF542B1795F2906A2627B /* Release */, 682 | ); 683 | defaultConfigurationIsVisible = 0; 684 | defaultConfigurationName = Release; 685 | }; 686 | /* End XCConfigurationList section */ 687 | }; 688 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 689 | } 690 | --------------------------------------------------------------------------------