├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── DebugConsoleHeader.h │ └── DebugConsoleHeader.m ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Pods-Tests-ConsoleBanner │ │ │ ├── Pods-Tests-ConsoleBanner.xcconfig │ │ │ ├── Pods-Tests-ConsoleBanner-prefix.pch │ │ │ ├── Pods-Tests-ConsoleBanner-dummy.m │ │ │ └── Pods-Tests-ConsoleBanner-Private.xcconfig │ │ ├── Pods-ConsoleBanner-ConsoleBanner │ │ │ ├── Pods-ConsoleBanner-ConsoleBanner.xcconfig │ │ │ ├── Pods-ConsoleBanner-ConsoleBanner-prefix.pch │ │ │ ├── Pods-ConsoleBanner-ConsoleBanner-dummy.m │ │ │ └── Pods-ConsoleBanner-ConsoleBanner-Private.xcconfig │ │ ├── Pods-Tests │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ ├── Pods-Tests.release.xcconfig │ │ │ ├── Pods-Tests-environment.h │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ └── Pods-Tests-resources.sh │ │ └── Pods-ConsoleBanner │ │ │ ├── Pods-ConsoleBanner-dummy.m │ │ │ ├── Pods-ConsoleBanner.debug.xcconfig │ │ │ ├── Pods-ConsoleBanner.release.xcconfig │ │ │ ├── Pods-ConsoleBanner-environment.h │ │ │ ├── Pods-ConsoleBanner-acknowledgements.markdown │ │ │ ├── Pods-ConsoleBanner-acknowledgements.plist │ │ │ └── Pods-ConsoleBanner-resources.sh │ ├── Headers │ │ └── Public │ │ │ └── ConsoleBanner │ │ │ └── DebugConsoleHeader.h │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── ConsoleBanner.podspec │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── ConsoleBanner │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── BSMViewController.h │ ├── BSMAppDelegate.h │ ├── ConsoleBanner-Prefix.pch │ ├── main.m │ ├── BSMViewController.m │ ├── banner.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── ConsoleBanner-Info.plist │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ └── BSMAppDelegate.m ├── ConsoleBanner.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ConsoleBanner-Example.xcscheme │ └── project.pbxproj ├── Podfile ├── Podfile.lock ├── ConsoleBanner.xcworkspace │ └── contents.xcworkspacedata └── Tests │ ├── Info.plist │ └── Tests.m ├── images └── ascii-art.gif ├── .gitignore ├── .travis.yml ├── ConsoleBanner.podspec ├── LICENSE └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /images/ascii-art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianmichel/ConsoleBanner/HEAD/images/ascii-art.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/ConsoleBanner/DebugConsoleHeader.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DebugConsoleHeader.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-ConsoleBanner-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ConsoleBanner : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ConsoleBanner 5 | @end 6 | -------------------------------------------------------------------------------- /Example/ConsoleBanner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests_ConsoleBanner : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests_ConsoleBanner 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | target 'ConsoleBanner', :exclusive => true do 4 | pod "ConsoleBanner", :path => "../" 5 | end 6 | 7 | target 'Tests', :exclusive => true do 8 | pod "ConsoleBanner", :path => "../" 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ConsoleBanner_ConsoleBanner : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ConsoleBanner_ConsoleBanner 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ConsoleBanner (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ConsoleBanner (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ConsoleBanner: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | ConsoleBanner: 00fe13efe9bcf906471f56b00d3b57916ed50ebf 13 | 14 | COCOAPODS: 0.35.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ConsoleBanner (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ConsoleBanner (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ConsoleBanner: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | ConsoleBanner: 00fe13efe9bcf906471f56b00d3b57916ed50ebf 13 | 14 | COCOAPODS: 0.35.0 15 | -------------------------------------------------------------------------------- /Example/ConsoleBanner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/BSMViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BSMViewController.h 3 | // ConsoleBanner 4 | // 5 | // Created by Brian Michel on 04/19/2015. 6 | // Copyright (c) 2014 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BSMViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/BSMAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // BSMAppDelegate.h 3 | // ConsoleBanner 4 | // 5 | // Created by CocoaPods on 04/19/2015. 6 | // Copyright (c) 2014 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BSMAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-Tests-ConsoleBanner.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ConsoleBanner" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-ConsoleBanner-ConsoleBanner.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ConsoleBanner" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/ConsoleBanner/ConsoleBanner-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 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ConsoleBanner 4 | // 5 | // Created by Brian Michel on 04/19/2015. 6 | // Copyright (c) 2014 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "BSMAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([BSMAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-ConsoleBanner" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-ConsoleBanner" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-ConsoleBanner-ConsoleBanner" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ConsoleBanner" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ConsoleBanner" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-ConsoleBanner-ConsoleBanner" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // ConsoleBanner 10 | #define COCOAPODS_POD_AVAILABLE_ConsoleBanner 11 | #define COCOAPODS_VERSION_MAJOR_ConsoleBanner 0 12 | #define COCOAPODS_VERSION_MINOR_ConsoleBanner 1 13 | #define COCOAPODS_VERSION_PATCH_ConsoleBanner 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // ConsoleBanner 10 | #define COCOAPODS_POD_AVAILABLE_ConsoleBanner 11 | #define COCOAPODS_VERSION_MAJOR_ConsoleBanner 0 12 | #define COCOAPODS_VERSION_MINOR_ConsoleBanner 1 13 | #define COCOAPODS_VERSION_PATCH_ConsoleBanner 0 14 | 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | #Pods/ 27 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | install: 12 | - gem install xcpretty --no-rdoc --no-ri --no-document --quiet 13 | script: 14 | - set -o pipefail && xcodebuild test -workspace Example/ConsoleBanner.xcworkspace -scheme ConsoleBanner-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/BSMViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // BSMViewController.m 3 | // ConsoleBanner 4 | // 5 | // Created by Brian Michel on 04/19/2015. 6 | // Copyright (c) 2014 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import "BSMViewController.h" 10 | 11 | @interface BSMViewController () 12 | 13 | @end 14 | 15 | @implementation BSMViewController 16 | 17 | - (void)viewDidLoad 18 | { 19 | [super viewDidLoad]; 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | - (void)didReceiveMemoryWarning 24 | { 25 | [super didReceiveMemoryWarning]; 26 | // Dispose of any resources that can be recreated. 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.bsm.ios.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Pod/Classes/DebugConsoleHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // DebugConsoleHeader.h 3 | // 4 | // Created by Brian Michel on 4/10/15. 5 | // Copyright (c) 2015 Brian Michel. All rights reserved. 6 | // 7 | 8 | @import Foundation; 9 | 10 | /* 11 | A class that will automatically check for a debugger and print the debug consonle banner 12 | if a debugger is attached. 13 | 14 | As long as this file in included in your target it will automatically print the banner when 15 | a debugger is attached. It will attemp to look for a banner.txt file in the main bundle to print 16 | before OS information is printed. 17 | */ 18 | @interface DebugConsoleHeader : NSObject 19 | 20 | /* 21 | Whether or not a debugger is attached. 22 | 23 | Will return YES if a debugger is attached, NO if one is not connected. 24 | */ 25 | + (BOOL)checkForDebugger; 26 | 27 | /* 28 | Check whether a debugger is attached, and if so, print the debug header. 29 | */ 30 | + (void)checkForDebuggerAndPrintConsoleHeader; 31 | @end 32 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // Tests.m 3 | // Tests 4 | // 5 | // Created by Brian Michel on 4/19/15. 6 | // Copyright (c) 2015 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface Tests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation Tests 17 | 18 | - (void)setUp { 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 | // Put teardown code here. This method is called after the invocation of each test method in the class. 25 | [super tearDown]; 26 | } 27 | 28 | - (void)testExample { 29 | // This is an example of a functional test case. 30 | XCTAssert(YES, @"Pass"); 31 | } 32 | 33 | - (void)testPerformanceExample { 34 | // This is an example of a performance test case. 35 | [self measureBlock:^{ 36 | // Put the code you want to measure the time of here. 37 | }]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ _ _ _ 2 | / /\ /\ \ /\ \ / /\ /\ \ _ 3 | / / \ / \ \ \ \ \ / / \ / \ \ /\_\ 4 | / / /\ \ / /\ \ \ /\ \_\ / / /\ \ / /\ \ \_/ / / 5 | / / /\ \ \ / / /\ \_\ / /\/_/ / / /\ \ \ / / /\ \___/ / 6 | / / /\ \_\ \ / / /_/ / / / / / / / / \ \ \ / / / \/____/ 7 | / / /\ \ \___\ / / /__\/ / / / / / / /___/ /\ \ / / / / / / 8 | / / / \ \ \__/ / / /_____/ / / / / / /_____/ /\ \ / / / / / / 9 | / / /____\_\ \ / / /\ \ \ ___/ / /__ / /_________/\ \ \ / / / / / / 10 | / / /__________\/ / / \ \ \/\__\/_/___\/ / /_ __\ \_\/ / / / / / 11 | \/_____________/\/_/ \_\/\/_________/\_\___\ /____/_/\/_/ \/_/ 12 | -------------------------------------------------------------------------------- /ConsoleBanner.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ConsoleBanner.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "ConsoleBanner" 12 | s.version = "0.1.0" 13 | s.summary = "A small library to print a debug banner in your Xcode console" 14 | s.homepage = "https://github.com/brianmichel/ConsoleBanner" 15 | s.license = 'MIT' 16 | s.author = { "Brian Michel" => "brian.michel@gmail.com" } 17 | s.source = { :git => "https://github.com/brianmichel/ConsoleBanner.git", :tag => s.version.to_s } 18 | s.social_media_url = 'https://twitter.com/brianmichel' 19 | 20 | s.platform = :ios, '7.0' 21 | s.requires_arc = true 22 | 23 | s.source_files = 'Pod/Classes/**/*' 24 | s.resource_bundles = { 25 | 'ConsoleBanner' => ['Pod/Assets/*.png'] 26 | } 27 | end 28 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/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 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ConsoleBanner.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ConsoleBanner.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "ConsoleBanner" 12 | s.version = "0.1.0" 13 | s.summary = "A small library to print a debug banner in your Xcode console" 14 | s.homepage = "https://github.com/brianmichel/ConsoleBanner" 15 | s.license = 'MIT' 16 | s.author = { "Brian Michel" => "brian.michel@gmail.com" } 17 | s.source = { :git => "https://github.com/brianmichel/ConsoleBanner.git", :tag => s.version.to_s } 18 | # s.social_media_url = 'https://twitter.com/brianmichel' 19 | 20 | s.platform = :ios, '7.0' 21 | s.requires_arc = true 22 | 23 | s.source_files = 'Pod/Classes/**/*' 24 | s.resource_bundles = { 25 | 'ConsoleBanner' => ['Pod/Assets/*.png'] 26 | } 27 | end 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Brian Michel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/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-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ConsoleBanner 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2015 Brian Michel 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in 18 | all copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | THE SOFTWARE. 28 | 29 | Generated by CocoaPods - http://cocoapods.org 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ConsoleBanner 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2015 Brian Michel 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in 18 | all copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | THE SOFTWARE. 28 | 29 | Generated by CocoaPods - http://cocoapods.org 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ConsoleBanner 2 | 3 | [![CI Status](http://img.shields.io/travis/brianmichel/ConsoleBanner.svg?style=flat)](https://travis-ci.org/brianmichel/ConsoleBanner) 4 | [![Version](https://img.shields.io/cocoapods/v/ConsoleBanner.svg?style=flat)](http://cocoapods.org/pods/ConsoleBanner) 5 | [![License](https://img.shields.io/cocoapods/l/ConsoleBanner.svg?style=flat)](http://cocoapods.org/pods/ConsoleBanner) 6 | [![Platform](https://img.shields.io/cocoapods/p/ConsoleBanner.svg?style=flat)](http://cocoapods.org/pods/ConsoleBanner) 7 | 8 | ## What Is This? 9 | 10 | Just wanted to make a small thing that could print out a sweet banner when a debugger was connected to an application. 11 | You may see these kinds of banners in page sources, or when you connect to servers, so why not your app? 12 | 13 | Basically, it just looks for a `banner.txt` file in the main bundle to print out in your console before printing 14 | system information. 15 | 16 | Check it out... 17 | ![](images/ascii-art.gif) 18 | 19 | ## Usage 20 | 21 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 22 | 23 | You can generate some sweet ASCII art here http://patorjk.com/software/taag/ 24 | 25 | I would recommend creating your `banner.txt` in something that's not Xcode, only because 26 | Xcode is terrible at formatting and will make you reindent everything. Sublime worked nicely 27 | for me. 28 | 29 | ## Installation 30 | 31 | ConsoleBanner is available through [CocoaPods](http://cocoapods.org). To install 32 | it, simply add the following line to your Podfile: 33 | 34 | ```ruby 35 | pod "ConsoleBanner" 36 | ``` 37 | 38 | ## Author 39 | 40 | Brian Michel, brian.michel@gmail.com 41 | 42 | ## License 43 | 44 | ConsoleBanner is available under the MIT license. See the LICENSE file for more info. 45 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/ConsoleBanner-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 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_iPhone 29 | UIMainStoryboardFile~ipad 30 | Main_iPad 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Example/ConsoleBanner/BSMAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // BSMAppDelegate.m 3 | // ConsoleBanner 4 | // 5 | // Created by CocoaPods on 04/19/2015. 6 | // Copyright (c) 2014 Brian Michel. All rights reserved. 7 | // 8 | 9 | #import "BSMAppDelegate.h" 10 | 11 | @implementation BSMAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-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 | The MIT License (MIT) 18 | 19 | Copyright (c) 2015 Brian Michel <brian.michel@gmail.com> 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in 29 | all copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | 37 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 38 | THE SOFTWARE. 39 | 40 | Title 41 | ConsoleBanner 42 | Type 43 | PSGroupSpecifier 44 | 45 | 46 | FooterText 47 | Generated by CocoaPods - http://cocoapods.org 48 | Title 49 | 50 | Type 51 | PSGroupSpecifier 52 | 53 | 54 | StringsTable 55 | Acknowledgements 56 | Title 57 | Acknowledgements 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-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 | The MIT License (MIT) 18 | 19 | Copyright (c) 2015 Brian Michel <brian.michel@gmail.com> 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in 29 | all copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | 37 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 38 | THE SOFTWARE. 39 | 40 | Title 41 | ConsoleBanner 42 | Type 43 | PSGroupSpecifier 44 | 45 | 46 | FooterText 47 | Generated by CocoaPods - http://cocoapods.org 48 | Title 49 | 50 | Type 51 | PSGroupSpecifier 52 | 53 | 54 | StringsTable 55 | Acknowledgements 56 | Title 57 | Acknowledgements 58 | 59 | 60 | -------------------------------------------------------------------------------- /Pod/Classes/DebugConsoleHeader.m: -------------------------------------------------------------------------------- 1 | // 2 | // DebugConsoleHeader.m 3 | // 4 | // Created by Brian Michel on 4/10/15. 5 | // Copyright (c) 2015 Brian Michel. All rights reserved. 6 | // 7 | 8 | #import "DebugConsoleHeader.h" 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | 15 | // Taken from https://developer.apple.com/library/mac/qa/qa1361/_index.html 16 | static bool AmIBeingDebugged(void) 17 | // Returns true if the current process is being debugged (either 18 | // running under the debugger or has a debugger attached post facto). 19 | { 20 | int junk; 21 | int mib[4]; 22 | struct kinfo_proc info; 23 | size_t size; 24 | 25 | // Initialize the flags so that, if sysctl fails for some bizarre 26 | // reason, we get a predictable result. 27 | 28 | info.kp_proc.p_flag = 0; 29 | 30 | // Initialize mib, which tells sysctl the info we want, in this case 31 | // we're looking for information about a specific process ID. 32 | 33 | mib[0] = CTL_KERN; 34 | mib[1] = KERN_PROC; 35 | mib[2] = KERN_PROC_PID; 36 | mib[3] = getpid(); 37 | 38 | // Call sysctl. 39 | 40 | size = sizeof(info); 41 | junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0); 42 | assert(junk == 0); 43 | 44 | // We're being debugged if the P_TRACED flag is set. 45 | 46 | return ( (info.kp_proc.p_flag & P_TRACED) != 0 ); 47 | } 48 | 49 | @implementation DebugConsoleHeader 50 | 51 | + (void)load { 52 | [[self class] checkForDebuggerAndPrintConsoleHeader]; 53 | } 54 | 55 | + (BOOL)checkForDebugger { 56 | return AmIBeingDebugged(); 57 | } 58 | 59 | + (void)checkForDebuggerAndPrintConsoleHeader { 60 | if ([[self class] checkForDebugger]) { 61 | [[self class] printBanner]; 62 | [[self class] printSystemInformation]; 63 | } 64 | } 65 | 66 | + (void)printBanner { 67 | NSString *bannerPath = [[NSBundle mainBundle] pathForResource:@"banner" ofType:@"txt"]; 68 | 69 | if (bannerPath) { 70 | NSError *error; 71 | NSString *banner = [NSString stringWithContentsOfURL:[NSURL fileURLWithPath:bannerPath] encoding:NSUTF8StringEncoding error:&error]; 72 | NSArray *lines = [banner componentsSeparatedByString:@"\n"]; 73 | for (NSString *line in lines) { 74 | puts([line UTF8String]); 75 | } 76 | } 77 | } 78 | 79 | + (void)printSystemInformation { 80 | NSString *device = [UIDevice currentDevice].model; 81 | NSString *osName = [UIDevice currentDevice].systemName; 82 | NSString *osVersion = [UIDevice currentDevice].systemVersion; 83 | 84 | printf("\tDevice: %s\n", [device UTF8String]); 85 | printf("\tOS: %s\t\tVersion: %s\n", [osName UTF8String], [osVersion UTF8String]); 86 | } 87 | 88 | @end 89 | -------------------------------------------------------------------------------- /Example/ConsoleBanner.xcodeproj/xcshareddata/xcschemes/ConsoleBanner-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 | 61 | 63 | 69 | 70 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/ConsoleBanner.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/ConsoleBanner.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Example/ConsoleBanner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* BSMAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* BSMAppDelegate.m */; }; 16 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F59F195388D20070C39A /* Main_iPhone.storyboard */; }; 17 | 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A2195388D20070C39A /* Main_iPad.storyboard */; }; 18 | 6003F5A7195388D20070C39A /* BSMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* BSMViewController.m */; }; 19 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 20 | 721379F21AE3E4BC00A489DA /* banner.txt in Resources */ = {isa = PBXBuildFile; fileRef = 721379F11AE3E4BC00A489DA /* banner.txt */; }; 21 | 721379FC1AE3F30600A489DA /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 721379FB1AE3F30600A489DA /* Tests.m */; }; 22 | DA2C3724A73EB4CE2F978F22 /* libPods-ConsoleBanner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 031A8B0DD6C12093389FCBDC /* libPods-ConsoleBanner.a */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | 721379FD1AE3F30600A489DA /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = 6003F582195388D10070C39A /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = 6003F589195388D20070C39A; 31 | remoteInfo = ConsoleBanner; 32 | }; 33 | /* End PBXContainerItemProxy section */ 34 | 35 | /* Begin PBXFileReference section */ 36 | 031A8B0DD6C12093389FCBDC /* libPods-ConsoleBanner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ConsoleBanner.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 4ACC57802DAD9B94FF504ABC /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 38 | 4CC2E0EEF162F9F478FA49C3 /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 6003F58A195388D20070C39A /* ConsoleBanner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ConsoleBanner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 41 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 42 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 43 | 6003F595195388D20070C39A /* ConsoleBanner-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ConsoleBanner-Info.plist"; sourceTree = ""; }; 44 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 45 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 46 | 6003F59B195388D20070C39A /* ConsoleBanner-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ConsoleBanner-Prefix.pch"; sourceTree = ""; }; 47 | 6003F59C195388D20070C39A /* BSMAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BSMAppDelegate.h; sourceTree = ""; }; 48 | 6003F59D195388D20070C39A /* BSMAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BSMAppDelegate.m; sourceTree = ""; }; 49 | 6003F5A0195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = ""; }; 50 | 6003F5A3195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPad.storyboard; sourceTree = ""; }; 51 | 6003F5A5195388D20070C39A /* BSMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BSMViewController.h; sourceTree = ""; }; 52 | 6003F5A6195388D20070C39A /* BSMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BSMViewController.m; sourceTree = ""; }; 53 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 54 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 55 | 721379F11AE3E4BC00A489DA /* banner.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = banner.txt; sourceTree = ""; }; 56 | 721379F71AE3F30600A489DA /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 721379FA1AE3F30600A489DA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 58 | 721379FB1AE3F30600A489DA /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 59 | 8CBCEBAC78F2BB6835388853 /* ConsoleBanner.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ConsoleBanner.podspec; path = ../ConsoleBanner.podspec; sourceTree = ""; }; 60 | 96175A44BEA2B8FBDF2B5DDE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 61 | 9962C3A44F05F0CDBCC3CFE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 62 | C0FD4565B6D0FF8419CEE3AF /* Pods-ConsoleBanner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConsoleBanner.release.xcconfig"; path = "Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner.release.xcconfig"; sourceTree = ""; }; 63 | D5A82B7F98FA77D7D6A1FDAD /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; 64 | DE146608C31E39812D9FDA59 /* Pods-ConsoleBanner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConsoleBanner.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner.debug.xcconfig"; sourceTree = ""; }; 65 | /* End PBXFileReference section */ 66 | 67 | /* Begin PBXFrameworksBuildPhase section */ 68 | 6003F587195388D20070C39A /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 73 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 74 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 75 | DA2C3724A73EB4CE2F978F22 /* libPods-ConsoleBanner.a in Frameworks */, 76 | ); 77 | runOnlyForDeploymentPostprocessing = 0; 78 | }; 79 | 721379F41AE3F30600A489DA /* Frameworks */ = { 80 | isa = PBXFrameworksBuildPhase; 81 | buildActionMask = 2147483647; 82 | files = ( 83 | ); 84 | runOnlyForDeploymentPostprocessing = 0; 85 | }; 86 | /* End PBXFrameworksBuildPhase section */ 87 | 88 | /* Begin PBXGroup section */ 89 | 6003F581195388D10070C39A = { 90 | isa = PBXGroup; 91 | children = ( 92 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 93 | 6003F593195388D20070C39A /* ConsoleBanner */, 94 | 721379F81AE3F30600A489DA /* Tests */, 95 | 6003F58C195388D20070C39A /* Frameworks */, 96 | 6003F58B195388D20070C39A /* Products */, 97 | 6F322316597BAD8D8FE072DA /* Pods */, 98 | ); 99 | sourceTree = ""; 100 | }; 101 | 6003F58B195388D20070C39A /* Products */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | 6003F58A195388D20070C39A /* ConsoleBanner.app */, 105 | 721379F71AE3F30600A489DA /* Tests.xctest */, 106 | ); 107 | name = Products; 108 | sourceTree = ""; 109 | }; 110 | 6003F58C195388D20070C39A /* Frameworks */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 6003F58D195388D20070C39A /* Foundation.framework */, 114 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 115 | 6003F591195388D20070C39A /* UIKit.framework */, 116 | 6003F5AF195388D20070C39A /* XCTest.framework */, 117 | 031A8B0DD6C12093389FCBDC /* libPods-ConsoleBanner.a */, 118 | 4CC2E0EEF162F9F478FA49C3 /* libPods-Tests.a */, 119 | ); 120 | name = Frameworks; 121 | sourceTree = ""; 122 | }; 123 | 6003F593195388D20070C39A /* ConsoleBanner */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | 6003F59C195388D20070C39A /* BSMAppDelegate.h */, 127 | 6003F59D195388D20070C39A /* BSMAppDelegate.m */, 128 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */, 129 | 6003F5A2195388D20070C39A /* Main_iPad.storyboard */, 130 | 6003F5A5195388D20070C39A /* BSMViewController.h */, 131 | 6003F5A6195388D20070C39A /* BSMViewController.m */, 132 | 6003F5A8195388D20070C39A /* Images.xcassets */, 133 | 6003F594195388D20070C39A /* Supporting Files */, 134 | ); 135 | path = ConsoleBanner; 136 | sourceTree = ""; 137 | }; 138 | 6003F594195388D20070C39A /* Supporting Files */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 6003F595195388D20070C39A /* ConsoleBanner-Info.plist */, 142 | 6003F596195388D20070C39A /* InfoPlist.strings */, 143 | 6003F599195388D20070C39A /* main.m */, 144 | 6003F59B195388D20070C39A /* ConsoleBanner-Prefix.pch */, 145 | 721379F11AE3E4BC00A489DA /* banner.txt */, 146 | ); 147 | name = "Supporting Files"; 148 | sourceTree = ""; 149 | }; 150 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | 8CBCEBAC78F2BB6835388853 /* ConsoleBanner.podspec */, 154 | 9962C3A44F05F0CDBCC3CFE5 /* README.md */, 155 | 96175A44BEA2B8FBDF2B5DDE /* LICENSE */, 156 | ); 157 | name = "Podspec Metadata"; 158 | sourceTree = ""; 159 | }; 160 | 6F322316597BAD8D8FE072DA /* Pods */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | DE146608C31E39812D9FDA59 /* Pods-ConsoleBanner.debug.xcconfig */, 164 | C0FD4565B6D0FF8419CEE3AF /* Pods-ConsoleBanner.release.xcconfig */, 165 | 4ACC57802DAD9B94FF504ABC /* Pods-Tests.debug.xcconfig */, 166 | D5A82B7F98FA77D7D6A1FDAD /* Pods-Tests.release.xcconfig */, 167 | ); 168 | name = Pods; 169 | sourceTree = ""; 170 | }; 171 | 721379F81AE3F30600A489DA /* Tests */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | 721379FB1AE3F30600A489DA /* Tests.m */, 175 | 721379F91AE3F30600A489DA /* Supporting Files */, 176 | ); 177 | path = Tests; 178 | sourceTree = ""; 179 | }; 180 | 721379F91AE3F30600A489DA /* Supporting Files */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 721379FA1AE3F30600A489DA /* Info.plist */, 184 | ); 185 | name = "Supporting Files"; 186 | sourceTree = ""; 187 | }; 188 | /* End PBXGroup section */ 189 | 190 | /* Begin PBXNativeTarget section */ 191 | 6003F589195388D20070C39A /* ConsoleBanner */ = { 192 | isa = PBXNativeTarget; 193 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ConsoleBanner" */; 194 | buildPhases = ( 195 | E716FB711A2D9F22D666D30B /* Check Pods Manifest.lock */, 196 | 6003F586195388D20070C39A /* Sources */, 197 | 6003F587195388D20070C39A /* Frameworks */, 198 | 6003F588195388D20070C39A /* Resources */, 199 | 70EA445F796038B4F9B5C186 /* Copy Pods Resources */, 200 | ); 201 | buildRules = ( 202 | ); 203 | dependencies = ( 204 | ); 205 | name = ConsoleBanner; 206 | productName = ConsoleBanner; 207 | productReference = 6003F58A195388D20070C39A /* ConsoleBanner.app */; 208 | productType = "com.apple.product-type.application"; 209 | }; 210 | 721379F61AE3F30600A489DA /* Tests */ = { 211 | isa = PBXNativeTarget; 212 | buildConfigurationList = 721379FF1AE3F30600A489DA /* Build configuration list for PBXNativeTarget "Tests" */; 213 | buildPhases = ( 214 | 721379F31AE3F30600A489DA /* Sources */, 215 | 721379F41AE3F30600A489DA /* Frameworks */, 216 | 721379F51AE3F30600A489DA /* Resources */, 217 | ); 218 | buildRules = ( 219 | ); 220 | dependencies = ( 221 | 721379FE1AE3F30600A489DA /* PBXTargetDependency */, 222 | ); 223 | name = Tests; 224 | productName = Tests; 225 | productReference = 721379F71AE3F30600A489DA /* Tests.xctest */; 226 | productType = "com.apple.product-type.bundle.unit-test"; 227 | }; 228 | /* End PBXNativeTarget section */ 229 | 230 | /* Begin PBXProject section */ 231 | 6003F582195388D10070C39A /* Project object */ = { 232 | isa = PBXProject; 233 | attributes = { 234 | CLASSPREFIX = BSM; 235 | LastUpgradeCheck = 0510; 236 | ORGANIZATIONNAME = "Brian Michel"; 237 | TargetAttributes = { 238 | 721379F61AE3F30600A489DA = { 239 | CreatedOnToolsVersion = 6.3; 240 | TestTargetID = 6003F589195388D20070C39A; 241 | }; 242 | }; 243 | }; 244 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "ConsoleBanner" */; 245 | compatibilityVersion = "Xcode 3.2"; 246 | developmentRegion = English; 247 | hasScannedForEncodings = 0; 248 | knownRegions = ( 249 | en, 250 | Base, 251 | ); 252 | mainGroup = 6003F581195388D10070C39A; 253 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 254 | projectDirPath = ""; 255 | projectRoot = ""; 256 | targets = ( 257 | 6003F589195388D20070C39A /* ConsoleBanner */, 258 | 721379F61AE3F30600A489DA /* Tests */, 259 | ); 260 | }; 261 | /* End PBXProject section */ 262 | 263 | /* Begin PBXResourcesBuildPhase section */ 264 | 6003F588195388D20070C39A /* Resources */ = { 265 | isa = PBXResourcesBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | 721379F21AE3E4BC00A489DA /* banner.txt in Resources */, 269 | 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */, 270 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 271 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */, 272 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | 721379F51AE3F30600A489DA /* Resources */ = { 277 | isa = PBXResourcesBuildPhase; 278 | buildActionMask = 2147483647; 279 | files = ( 280 | ); 281 | runOnlyForDeploymentPostprocessing = 0; 282 | }; 283 | /* End PBXResourcesBuildPhase section */ 284 | 285 | /* Begin PBXShellScriptBuildPhase section */ 286 | 70EA445F796038B4F9B5C186 /* Copy Pods Resources */ = { 287 | isa = PBXShellScriptBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | ); 291 | inputPaths = ( 292 | ); 293 | name = "Copy Pods Resources"; 294 | outputPaths = ( 295 | ); 296 | runOnlyForDeploymentPostprocessing = 0; 297 | shellPath = /bin/sh; 298 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ConsoleBanner/Pods-ConsoleBanner-resources.sh\"\n"; 299 | showEnvVarsInLog = 0; 300 | }; 301 | E716FB711A2D9F22D666D30B /* Check Pods Manifest.lock */ = { 302 | isa = PBXShellScriptBuildPhase; 303 | buildActionMask = 2147483647; 304 | files = ( 305 | ); 306 | inputPaths = ( 307 | ); 308 | name = "Check Pods Manifest.lock"; 309 | outputPaths = ( 310 | ); 311 | runOnlyForDeploymentPostprocessing = 0; 312 | shellPath = /bin/sh; 313 | 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"; 314 | showEnvVarsInLog = 0; 315 | }; 316 | /* End PBXShellScriptBuildPhase section */ 317 | 318 | /* Begin PBXSourcesBuildPhase section */ 319 | 6003F586195388D20070C39A /* Sources */ = { 320 | isa = PBXSourcesBuildPhase; 321 | buildActionMask = 2147483647; 322 | files = ( 323 | 6003F59E195388D20070C39A /* BSMAppDelegate.m in Sources */, 324 | 6003F5A7195388D20070C39A /* BSMViewController.m in Sources */, 325 | 6003F59A195388D20070C39A /* main.m in Sources */, 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | 721379F31AE3F30600A489DA /* Sources */ = { 330 | isa = PBXSourcesBuildPhase; 331 | buildActionMask = 2147483647; 332 | files = ( 333 | 721379FC1AE3F30600A489DA /* Tests.m in Sources */, 334 | ); 335 | runOnlyForDeploymentPostprocessing = 0; 336 | }; 337 | /* End PBXSourcesBuildPhase section */ 338 | 339 | /* Begin PBXTargetDependency section */ 340 | 721379FE1AE3F30600A489DA /* PBXTargetDependency */ = { 341 | isa = PBXTargetDependency; 342 | target = 6003F589195388D20070C39A /* ConsoleBanner */; 343 | targetProxy = 721379FD1AE3F30600A489DA /* PBXContainerItemProxy */; 344 | }; 345 | /* End PBXTargetDependency section */ 346 | 347 | /* Begin PBXVariantGroup section */ 348 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 349 | isa = PBXVariantGroup; 350 | children = ( 351 | 6003F597195388D20070C39A /* en */, 352 | ); 353 | name = InfoPlist.strings; 354 | sourceTree = ""; 355 | }; 356 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */ = { 357 | isa = PBXVariantGroup; 358 | children = ( 359 | 6003F5A0195388D20070C39A /* Base */, 360 | ); 361 | name = Main_iPhone.storyboard; 362 | sourceTree = ""; 363 | }; 364 | 6003F5A2195388D20070C39A /* Main_iPad.storyboard */ = { 365 | isa = PBXVariantGroup; 366 | children = ( 367 | 6003F5A3195388D20070C39A /* Base */, 368 | ); 369 | name = Main_iPad.storyboard; 370 | sourceTree = ""; 371 | }; 372 | /* End PBXVariantGroup section */ 373 | 374 | /* Begin XCBuildConfiguration section */ 375 | 6003F5BD195388D20070C39A /* Debug */ = { 376 | isa = XCBuildConfiguration; 377 | buildSettings = { 378 | ALWAYS_SEARCH_USER_PATHS = NO; 379 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 380 | CLANG_CXX_LIBRARY = "libc++"; 381 | CLANG_ENABLE_MODULES = YES; 382 | CLANG_ENABLE_OBJC_ARC = YES; 383 | CLANG_WARN_BOOL_CONVERSION = YES; 384 | CLANG_WARN_CONSTANT_CONVERSION = YES; 385 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 386 | CLANG_WARN_EMPTY_BODY = YES; 387 | CLANG_WARN_ENUM_CONVERSION = YES; 388 | CLANG_WARN_INT_CONVERSION = YES; 389 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 390 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 391 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 392 | COPY_PHASE_STRIP = NO; 393 | GCC_C_LANGUAGE_STANDARD = gnu99; 394 | GCC_DYNAMIC_NO_PIC = NO; 395 | GCC_OPTIMIZATION_LEVEL = 0; 396 | GCC_PREPROCESSOR_DEFINITIONS = ( 397 | "DEBUG=1", 398 | "$(inherited)", 399 | ); 400 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 401 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 402 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 403 | GCC_WARN_UNDECLARED_SELECTOR = YES; 404 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 405 | GCC_WARN_UNUSED_FUNCTION = YES; 406 | GCC_WARN_UNUSED_VARIABLE = YES; 407 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 408 | ONLY_ACTIVE_ARCH = YES; 409 | SDKROOT = iphoneos; 410 | TARGETED_DEVICE_FAMILY = "1,2"; 411 | }; 412 | name = Debug; 413 | }; 414 | 6003F5BE195388D20070C39A /* Release */ = { 415 | isa = XCBuildConfiguration; 416 | buildSettings = { 417 | ALWAYS_SEARCH_USER_PATHS = NO; 418 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 419 | CLANG_CXX_LIBRARY = "libc++"; 420 | CLANG_ENABLE_MODULES = YES; 421 | CLANG_ENABLE_OBJC_ARC = YES; 422 | CLANG_WARN_BOOL_CONVERSION = YES; 423 | CLANG_WARN_CONSTANT_CONVERSION = YES; 424 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 425 | CLANG_WARN_EMPTY_BODY = YES; 426 | CLANG_WARN_ENUM_CONVERSION = YES; 427 | CLANG_WARN_INT_CONVERSION = YES; 428 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 429 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 430 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 431 | COPY_PHASE_STRIP = YES; 432 | ENABLE_NS_ASSERTIONS = NO; 433 | GCC_C_LANGUAGE_STANDARD = gnu99; 434 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 435 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 436 | GCC_WARN_UNDECLARED_SELECTOR = YES; 437 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 438 | GCC_WARN_UNUSED_FUNCTION = YES; 439 | GCC_WARN_UNUSED_VARIABLE = YES; 440 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 441 | SDKROOT = iphoneos; 442 | TARGETED_DEVICE_FAMILY = "1,2"; 443 | VALIDATE_PRODUCT = YES; 444 | }; 445 | name = Release; 446 | }; 447 | 6003F5C0195388D20070C39A /* Debug */ = { 448 | isa = XCBuildConfiguration; 449 | baseConfigurationReference = DE146608C31E39812D9FDA59 /* Pods-ConsoleBanner.debug.xcconfig */; 450 | buildSettings = { 451 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 452 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 453 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 454 | GCC_PREFIX_HEADER = "ConsoleBanner/ConsoleBanner-Prefix.pch"; 455 | INFOPLIST_FILE = "ConsoleBanner/ConsoleBanner-Info.plist"; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | WRAPPER_EXTENSION = app; 458 | }; 459 | name = Debug; 460 | }; 461 | 6003F5C1195388D20070C39A /* Release */ = { 462 | isa = XCBuildConfiguration; 463 | baseConfigurationReference = C0FD4565B6D0FF8419CEE3AF /* Pods-ConsoleBanner.release.xcconfig */; 464 | buildSettings = { 465 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 466 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 467 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 468 | GCC_PREFIX_HEADER = "ConsoleBanner/ConsoleBanner-Prefix.pch"; 469 | INFOPLIST_FILE = "ConsoleBanner/ConsoleBanner-Info.plist"; 470 | PRODUCT_NAME = "$(TARGET_NAME)"; 471 | WRAPPER_EXTENSION = app; 472 | }; 473 | name = Release; 474 | }; 475 | 72137A001AE3F30600A489DA /* Debug */ = { 476 | isa = XCBuildConfiguration; 477 | buildSettings = { 478 | BUNDLE_LOADER = "$(TEST_HOST)"; 479 | CLANG_WARN_UNREACHABLE_CODE = YES; 480 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 481 | ENABLE_STRICT_OBJC_MSGSEND = YES; 482 | FRAMEWORK_SEARCH_PATHS = ( 483 | "$(SDKROOT)/Developer/Library/Frameworks", 484 | "$(inherited)", 485 | ); 486 | GCC_NO_COMMON_BLOCKS = YES; 487 | GCC_PREPROCESSOR_DEFINITIONS = ( 488 | "DEBUG=1", 489 | "$(inherited)", 490 | ); 491 | INFOPLIST_FILE = Tests/Info.plist; 492 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 493 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 494 | MTL_ENABLE_DEBUG_INFO = YES; 495 | PRODUCT_NAME = "$(TARGET_NAME)"; 496 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ConsoleBanner.app/ConsoleBanner"; 497 | }; 498 | name = Debug; 499 | }; 500 | 72137A011AE3F30600A489DA /* Release */ = { 501 | isa = XCBuildConfiguration; 502 | buildSettings = { 503 | BUNDLE_LOADER = "$(TEST_HOST)"; 504 | CLANG_WARN_UNREACHABLE_CODE = YES; 505 | COPY_PHASE_STRIP = NO; 506 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 507 | ENABLE_STRICT_OBJC_MSGSEND = YES; 508 | FRAMEWORK_SEARCH_PATHS = ( 509 | "$(SDKROOT)/Developer/Library/Frameworks", 510 | "$(inherited)", 511 | ); 512 | GCC_NO_COMMON_BLOCKS = YES; 513 | INFOPLIST_FILE = Tests/Info.plist; 514 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 515 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 516 | MTL_ENABLE_DEBUG_INFO = NO; 517 | PRODUCT_NAME = "$(TARGET_NAME)"; 518 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ConsoleBanner.app/ConsoleBanner"; 519 | }; 520 | name = Release; 521 | }; 522 | /* End XCBuildConfiguration section */ 523 | 524 | /* Begin XCConfigurationList section */ 525 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "ConsoleBanner" */ = { 526 | isa = XCConfigurationList; 527 | buildConfigurations = ( 528 | 6003F5BD195388D20070C39A /* Debug */, 529 | 6003F5BE195388D20070C39A /* Release */, 530 | ); 531 | defaultConfigurationIsVisible = 0; 532 | defaultConfigurationName = Release; 533 | }; 534 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ConsoleBanner" */ = { 535 | isa = XCConfigurationList; 536 | buildConfigurations = ( 537 | 6003F5C0195388D20070C39A /* Debug */, 538 | 6003F5C1195388D20070C39A /* Release */, 539 | ); 540 | defaultConfigurationIsVisible = 0; 541 | defaultConfigurationName = Release; 542 | }; 543 | 721379FF1AE3F30600A489DA /* Build configuration list for PBXNativeTarget "Tests" */ = { 544 | isa = XCConfigurationList; 545 | buildConfigurations = ( 546 | 72137A001AE3F30600A489DA /* Debug */, 547 | 72137A011AE3F30600A489DA /* Release */, 548 | ); 549 | defaultConfigurationIsVisible = 0; 550 | }; 551 | /* End XCConfigurationList section */ 552 | }; 553 | rootObject = 6003F582195388D10070C39A /* Project object */; 554 | } 555 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | archiveVersion 6 | 1 7 | classes 8 | 9 | objectVersion 10 | 46 11 | objects 12 | 13 | 01A0E5998444C4535AA37A1E 14 | 15 | includeInIndex 16 | 1 17 | isa 18 | PBXFileReference 19 | lastKnownFileType 20 | sourcecode.c.objc 21 | path 22 | Pods-Tests-dummy.m 23 | sourceTree 24 | <group> 25 | 26 | 01B8BE7081CC79C76DEF9C79 27 | 28 | children 29 | 30 | BBF0AF509EB210E17DADA753 31 | 95363DA6A4586B14EFEAC0DA 32 | 82BAF3128918D54BA06A4AED 33 | E34AB14330A6CCB2D26AE7EB 34 | 67A58B3C6545E877853CA844 35 | 36 | isa 37 | PBXGroup 38 | sourceTree 39 | <group> 40 | 41 | 03FDAB3B1F046BFA942DC85B 42 | 43 | containerPortal 44 | 4442612168C15A6BDFD33029 45 | isa 46 | PBXContainerItemProxy 47 | proxyType 48 | 1 49 | remoteGlobalIDString 50 | 35E801EE513CB405106D8320 51 | remoteInfo 52 | ConsoleBanner 53 | 54 | 0727FC0FD0BEA507E58556D6 55 | 56 | buildActionMask 57 | 2147483647 58 | files 59 | 60 | isa 61 | PBXSourcesBuildPhase 62 | runOnlyForDeploymentPostprocessing 63 | 0 64 | 65 | 09A0C313E2FEB3AEAE7FCD88 66 | 67 | children 68 | 69 | E8DAE100A516ECCE626B3195 70 | C7E086D850D139E1267ECC63 71 | 4FB21BABB0F16D19853ADEF5 72 | 58C89EC048FAC53CF972452C 73 | BD4522D318F4B25168A8D6C0 74 | 96B2DF94186E39EAB7B3BAEE 75 | 869CC52A9121744E4992E523 76 | 32316AAD79C1845DBC9D7832 77 | 78 | isa 79 | PBXGroup 80 | name 81 | Support Files 82 | path 83 | Example/Pods/Target Support Files/Pods-ConsoleBanner-ConsoleBanner 84 | sourceTree 85 | <group> 86 | 87 | 0F564AF39EBB80071EE33B67 88 | 89 | children 90 | 91 | 6FCB8A6C5D49D6FBF6EB2CD5 92 | 232137732FE22D92E08F7C76 93 | 09A0C313E2FEB3AEAE7FCD88 94 | 95 | isa 96 | PBXGroup 97 | name 98 | ConsoleBanner 99 | path 100 | ../.. 101 | sourceTree 102 | <group> 103 | 104 | 13C65C3FCDA81F508998508D 105 | 106 | buildActionMask 107 | 2147483647 108 | files 109 | 110 | CA12F78718F693DD93F82CC6 111 | 112 | isa 113 | PBXHeadersBuildPhase 114 | runOnlyForDeploymentPostprocessing 115 | 0 116 | 117 | 140932D2889050989DD85CBF 118 | 119 | buildActionMask 120 | 2147483647 121 | files 122 | 123 | 36FF4274B338ADB1636A9F67 124 | 125 | isa 126 | PBXSourcesBuildPhase 127 | runOnlyForDeploymentPostprocessing 128 | 0 129 | 130 | 1F7EEDC6301CBC63F3C492DE 131 | 132 | buildConfigurationList 133 | 35668326BF4233523545532B 134 | buildPhases 135 | 136 | D30739302DC3826F8541F234 137 | B101DC365722A04D177A7909 138 | 13C65C3FCDA81F508998508D 139 | 140 | buildRules 141 | 142 | dependencies 143 | 144 | D0E63F94317B4FDCCEB20DD2 145 | 146 | isa 147 | PBXNativeTarget 148 | name 149 | Pods-Tests-ConsoleBanner 150 | productName 151 | Pods-Tests-ConsoleBanner 152 | productReference 153 | 3E9C95FB00BED9CF877D55BE 154 | productType 155 | com.apple.product-type.library.static 156 | 157 | 232137732FE22D92E08F7C76 158 | 159 | includeInIndex 160 | 1 161 | isa 162 | PBXFileReference 163 | lastKnownFileType 164 | sourcecode.c.objc 165 | name 166 | DebugConsoleHeader.m 167 | path 168 | Pod/Classes/DebugConsoleHeader.m 169 | sourceTree 170 | <group> 171 | 172 | 288F83762ED0E734D5A4FB08 173 | 174 | explicitFileType 175 | archive.ar 176 | includeInIndex 177 | 0 178 | isa 179 | PBXFileReference 180 | path 181 | libPods-ConsoleBanner-ConsoleBanner.a 182 | sourceTree 183 | BUILT_PRODUCTS_DIR 184 | 185 | 29E1EED4D2C0EFC5E780F1F7 186 | 187 | buildActionMask 188 | 2147483647 189 | files 190 | 191 | C1025B1C6C33663CBD4BDE81 192 | 193 | isa 194 | PBXHeadersBuildPhase 195 | runOnlyForDeploymentPostprocessing 196 | 0 197 | 198 | 2B1753918D04BE173AF27786 199 | 200 | includeInIndex 201 | 1 202 | isa 203 | PBXFileReference 204 | lastKnownFileType 205 | sourcecode.c.objc 206 | path 207 | Pods-ConsoleBanner-dummy.m 208 | sourceTree 209 | <group> 210 | 211 | 2D076598115807476272FC04 212 | 213 | baseConfigurationReference 214 | 7FC6D7D21CCC550EA145AD15 215 | buildSettings 216 | 217 | ALWAYS_SEARCH_USER_PATHS 218 | NO 219 | COPY_PHASE_STRIP 220 | YES 221 | DSTROOT 222 | /tmp/xcodeproj.dst 223 | GCC_PRECOMPILE_PREFIX_HEADER 224 | YES 225 | INSTALL_PATH 226 | $(BUILT_PRODUCTS_DIR) 227 | IPHONEOS_DEPLOYMENT_TARGET 228 | 7.1 229 | OTHER_CFLAGS 230 | 231 | -DNS_BLOCK_ASSERTIONS=1 232 | $(inherited) 233 | 234 | OTHER_CPLUSPLUSFLAGS 235 | 236 | -DNS_BLOCK_ASSERTIONS=1 237 | $(inherited) 238 | 239 | OTHER_LDFLAGS 240 | 241 | OTHER_LIBTOOLFLAGS 242 | 243 | PRODUCT_NAME 244 | $(TARGET_NAME) 245 | PUBLIC_HEADERS_FOLDER_PATH 246 | $(TARGET_NAME) 247 | SDKROOT 248 | iphoneos 249 | SKIP_INSTALL 250 | YES 251 | VALIDATE_PRODUCT 252 | YES 253 | 254 | isa 255 | XCBuildConfiguration 256 | name 257 | Release 258 | 259 | 2E6FB1B472CD69C9B373E26D 260 | 261 | isa 262 | PBXTargetDependency 263 | name 264 | Pods-Tests-ConsoleBanner 265 | target 266 | 1F7EEDC6301CBC63F3C492DE 267 | targetProxy 268 | 8708D2BCBE21A4FC73F0C48C 269 | 270 | 30F5FAF151AE530386571536 271 | 272 | fileRef 273 | 232137732FE22D92E08F7C76 274 | isa 275 | PBXBuildFile 276 | 277 | 32316AAD79C1845DBC9D7832 278 | 279 | includeInIndex 280 | 1 281 | isa 282 | PBXFileReference 283 | lastKnownFileType 284 | sourcecode.c.h 285 | name 286 | Pods-Tests-ConsoleBanner-prefix.pch 287 | path 288 | ../Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-prefix.pch 289 | sourceTree 290 | <group> 291 | 292 | 35668326BF4233523545532B 293 | 294 | buildConfigurations 295 | 296 | 55348672F7BCC1782794E489 297 | FA799950BDAD0CEF1FBEB748 298 | 299 | defaultConfigurationIsVisible 300 | 0 301 | defaultConfigurationName 302 | Release 303 | isa 304 | XCConfigurationList 305 | 306 | 35E801EE513CB405106D8320 307 | 308 | buildConfigurationList 309 | F6CAFB7F0F164BEBDBDD6A3E 310 | buildPhases 311 | 312 | 0727FC0FD0BEA507E58556D6 313 | C907D1A361BDF552D0B5A34D 314 | EF733EA9B5094D0840F54B77 315 | 316 | buildRules 317 | 318 | dependencies 319 | 320 | isa 321 | PBXNativeTarget 322 | name 323 | ConsoleBanner 324 | productName 325 | ConsoleBanner 326 | productReference 327 | 9105C0111F21139AAB5A4278 328 | productType 329 | com.apple.product-type.bundle 330 | 331 | 36247871F1F711DE804CFB3B 332 | 333 | fileRef 334 | 232137732FE22D92E08F7C76 335 | isa 336 | PBXBuildFile 337 | 338 | 362F6CD98B96E0EF6300B3AF 339 | 340 | buildSettings 341 | 342 | PRODUCT_NAME 343 | $(TARGET_NAME) 344 | SDKROOT 345 | iphoneos 346 | SKIP_INSTALL 347 | YES 348 | WRAPPER_EXTENSION 349 | bundle 350 | 351 | isa 352 | XCBuildConfiguration 353 | name 354 | Debug 355 | 356 | 3671AA47DF2B2F4527545AB9 357 | 358 | containerPortal 359 | 4442612168C15A6BDFD33029 360 | isa 361 | PBXContainerItemProxy 362 | proxyType 363 | 1 364 | remoteGlobalIDString 365 | BA1C184F456D45DC7110B7EB 366 | remoteInfo 367 | Pods-ConsoleBanner-ConsoleBanner 368 | 369 | 36FF4274B338ADB1636A9F67 370 | 371 | fileRef 372 | 2B1753918D04BE173AF27786 373 | isa 374 | PBXBuildFile 375 | 376 | 3E9C95FB00BED9CF877D55BE 377 | 378 | explicitFileType 379 | archive.ar 380 | includeInIndex 381 | 0 382 | isa 383 | PBXFileReference 384 | path 385 | libPods-Tests-ConsoleBanner.a 386 | sourceTree 387 | BUILT_PRODUCTS_DIR 388 | 389 | 3FBD0F72F2C5854B095F6A63 390 | 391 | includeInIndex 392 | 1 393 | isa 394 | PBXFileReference 395 | lastKnownFileType 396 | text.plist.xml 397 | path 398 | Pods-ConsoleBanner-acknowledgements.plist 399 | sourceTree 400 | <group> 401 | 402 | 41F02D43A1B73F494FC266C8 403 | 404 | includeInIndex 405 | 1 406 | isa 407 | PBXFileReference 408 | lastKnownFileType 409 | text.script.sh 410 | path 411 | Pods-Tests-resources.sh 412 | sourceTree 413 | <group> 414 | 415 | 42A877C73127B967AF4C752D 416 | 417 | isa 418 | PBXTargetDependency 419 | name 420 | Pods-ConsoleBanner-ConsoleBanner 421 | target 422 | BA1C184F456D45DC7110B7EB 423 | targetProxy 424 | 3671AA47DF2B2F4527545AB9 425 | 426 | 43F327BB03C5C6C1AC6884F6 427 | 428 | children 429 | 430 | A16308F140F5FF936EA7097D 431 | BF84A5543E995B96F8E861E5 432 | 01A0E5998444C4535AA37A1E 433 | BA2D11D5BFF033D8317D9754 434 | 41F02D43A1B73F494FC266C8 435 | 9EA628A612555B9C39E4E584 436 | 7FC6D7D21CCC550EA145AD15 437 | 438 | isa 439 | PBXGroup 440 | name 441 | Pods-Tests 442 | path 443 | Target Support Files/Pods-Tests 444 | sourceTree 445 | <group> 446 | 447 | 4442612168C15A6BDFD33029 448 | 449 | attributes 450 | 451 | LastUpgradeCheck 452 | 0510 453 | 454 | buildConfigurationList 455 | 6874D716D20D29E867060CFC 456 | compatibilityVersion 457 | Xcode 3.2 458 | developmentRegion 459 | English 460 | hasScannedForEncodings 461 | 0 462 | isa 463 | PBXProject 464 | knownRegions 465 | 466 | en 467 | 468 | mainGroup 469 | 01B8BE7081CC79C76DEF9C79 470 | productRefGroup 471 | E34AB14330A6CCB2D26AE7EB 472 | projectDirPath 473 | 474 | projectReferences 475 | 476 | projectRoot 477 | 478 | targets 479 | 480 | 35E801EE513CB405106D8320 481 | D69BE212288477682F9EA8F4 482 | BA1C184F456D45DC7110B7EB 483 | 5CA44EC16DEA1D530BCBE539 484 | 1F7EEDC6301CBC63F3C492DE 485 | 486 | 487 | 4AA12A8C6EDB19E795702555 488 | 489 | buildActionMask 490 | 2147483647 491 | files 492 | 493 | 5EED2B3F2B9DAD2EED26EDED 494 | 495 | isa 496 | PBXSourcesBuildPhase 497 | runOnlyForDeploymentPostprocessing 498 | 0 499 | 500 | 4FB21BABB0F16D19853ADEF5 501 | 502 | includeInIndex 503 | 1 504 | isa 505 | PBXFileReference 506 | lastKnownFileType 507 | sourcecode.c.objc 508 | path 509 | Pods-ConsoleBanner-ConsoleBanner-dummy.m 510 | sourceTree 511 | <group> 512 | 513 | 55348672F7BCC1782794E489 514 | 515 | baseConfigurationReference 516 | 96B2DF94186E39EAB7B3BAEE 517 | buildSettings 518 | 519 | ALWAYS_SEARCH_USER_PATHS 520 | NO 521 | COPY_PHASE_STRIP 522 | NO 523 | DSTROOT 524 | /tmp/xcodeproj.dst 525 | GCC_DYNAMIC_NO_PIC 526 | NO 527 | GCC_OPTIMIZATION_LEVEL 528 | 0 529 | GCC_PRECOMPILE_PREFIX_HEADER 530 | YES 531 | GCC_PREFIX_HEADER 532 | Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-prefix.pch 533 | GCC_PREPROCESSOR_DEFINITIONS 534 | 535 | DEBUG=1 536 | $(inherited) 537 | 538 | GCC_SYMBOLS_PRIVATE_EXTERN 539 | NO 540 | INSTALL_PATH 541 | $(BUILT_PRODUCTS_DIR) 542 | IPHONEOS_DEPLOYMENT_TARGET 543 | 7.1 544 | OTHER_LDFLAGS 545 | 546 | OTHER_LIBTOOLFLAGS 547 | 548 | PRODUCT_NAME 549 | $(TARGET_NAME) 550 | PUBLIC_HEADERS_FOLDER_PATH 551 | $(TARGET_NAME) 552 | SDKROOT 553 | iphoneos 554 | SKIP_INSTALL 555 | YES 556 | 557 | isa 558 | XCBuildConfiguration 559 | name 560 | Debug 561 | 562 | 5652A7B060C0F5A389EA8CED 563 | 564 | buildActionMask 565 | 2147483647 566 | files 567 | 568 | 30F5FAF151AE530386571536 569 | 9FB1120A856B6BD13D3DA2BA 570 | 571 | isa 572 | PBXSourcesBuildPhase 573 | runOnlyForDeploymentPostprocessing 574 | 0 575 | 576 | 58C89EC048FAC53CF972452C 577 | 578 | includeInIndex 579 | 1 580 | isa 581 | PBXFileReference 582 | lastKnownFileType 583 | sourcecode.c.h 584 | path 585 | Pods-ConsoleBanner-ConsoleBanner-prefix.pch 586 | sourceTree 587 | <group> 588 | 589 | 5C9BC7C85B1F959360635F8D 590 | 591 | baseConfigurationReference 592 | C7E086D850D139E1267ECC63 593 | buildSettings 594 | 595 | ALWAYS_SEARCH_USER_PATHS 596 | NO 597 | COPY_PHASE_STRIP 598 | NO 599 | DSTROOT 600 | /tmp/xcodeproj.dst 601 | GCC_DYNAMIC_NO_PIC 602 | NO 603 | GCC_OPTIMIZATION_LEVEL 604 | 0 605 | GCC_PRECOMPILE_PREFIX_HEADER 606 | YES 607 | GCC_PREFIX_HEADER 608 | Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner-prefix.pch 609 | GCC_PREPROCESSOR_DEFINITIONS 610 | 611 | DEBUG=1 612 | $(inherited) 613 | 614 | GCC_SYMBOLS_PRIVATE_EXTERN 615 | NO 616 | INSTALL_PATH 617 | $(BUILT_PRODUCTS_DIR) 618 | IPHONEOS_DEPLOYMENT_TARGET 619 | 7.1 620 | OTHER_LDFLAGS 621 | 622 | OTHER_LIBTOOLFLAGS 623 | 624 | PRODUCT_NAME 625 | $(TARGET_NAME) 626 | PUBLIC_HEADERS_FOLDER_PATH 627 | $(TARGET_NAME) 628 | SDKROOT 629 | iphoneos 630 | SKIP_INSTALL 631 | YES 632 | 633 | isa 634 | XCBuildConfiguration 635 | name 636 | Debug 637 | 638 | 5CA44EC16DEA1D530BCBE539 639 | 640 | buildConfigurationList 641 | BAE1AF65605910BE1FC8BEDB 642 | buildPhases 643 | 644 | 4AA12A8C6EDB19E795702555 645 | 7AAD37059CBAD54239FD122C 646 | 647 | buildRules 648 | 649 | dependencies 650 | 651 | 2E6FB1B472CD69C9B373E26D 652 | 653 | isa 654 | PBXNativeTarget 655 | name 656 | Pods-Tests 657 | productName 658 | Pods-Tests 659 | productReference 660 | BA4859E656B9BBA89547D8CE 661 | productType 662 | com.apple.product-type.library.static 663 | 664 | 5E969F08BB6A1C00373A312B 665 | 666 | buildConfigurations 667 | 668 | 5C9BC7C85B1F959360635F8D 669 | 62E6A34C64821503C39890F1 670 | 671 | defaultConfigurationIsVisible 672 | 0 673 | defaultConfigurationName 674 | Release 675 | isa 676 | XCConfigurationList 677 | 678 | 5EED2B3F2B9DAD2EED26EDED 679 | 680 | fileRef 681 | 01A0E5998444C4535AA37A1E 682 | isa 683 | PBXBuildFile 684 | 685 | 60A531C72D87A3A42ED001F9 686 | 687 | containerPortal 688 | 4442612168C15A6BDFD33029 689 | isa 690 | PBXContainerItemProxy 691 | proxyType 692 | 1 693 | remoteGlobalIDString 694 | 35E801EE513CB405106D8320 695 | remoteInfo 696 | ConsoleBanner 697 | 698 | 61A3634D45D9E61A18E8198F 699 | 700 | buildSettings 701 | 702 | ALWAYS_SEARCH_USER_PATHS 703 | NO 704 | CLANG_CXX_LANGUAGE_STANDARD 705 | gnu++0x 706 | CLANG_CXX_LIBRARY 707 | libc++ 708 | CLANG_ENABLE_MODULES 709 | YES 710 | CLANG_ENABLE_OBJC_ARC 711 | YES 712 | CLANG_WARN_BOOL_CONVERSION 713 | YES 714 | CLANG_WARN_CONSTANT_CONVERSION 715 | YES 716 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 717 | YES 718 | CLANG_WARN_EMPTY_BODY 719 | YES 720 | CLANG_WARN_ENUM_CONVERSION 721 | YES 722 | CLANG_WARN_INT_CONVERSION 723 | YES 724 | CLANG_WARN_OBJC_ROOT_CLASS 725 | YES 726 | COPY_PHASE_STRIP 727 | YES 728 | GCC_C_LANGUAGE_STANDARD 729 | gnu99 730 | GCC_DYNAMIC_NO_PIC 731 | NO 732 | GCC_OPTIMIZATION_LEVEL 733 | 0 734 | GCC_PREPROCESSOR_DEFINITIONS 735 | 736 | DEBUG=1 737 | $(inherited) 738 | 739 | GCC_SYMBOLS_PRIVATE_EXTERN 740 | NO 741 | GCC_WARN_64_TO_32_BIT_CONVERSION 742 | YES 743 | GCC_WARN_ABOUT_RETURN_TYPE 744 | YES 745 | GCC_WARN_UNDECLARED_SELECTOR 746 | YES 747 | GCC_WARN_UNINITIALIZED_AUTOS 748 | YES 749 | GCC_WARN_UNUSED_FUNCTION 750 | YES 751 | GCC_WARN_UNUSED_VARIABLE 752 | YES 753 | IPHONEOS_DEPLOYMENT_TARGET 754 | 7.1 755 | ONLY_ACTIVE_ARCH 756 | YES 757 | STRIP_INSTALLED_PRODUCT 758 | NO 759 | 760 | isa 761 | XCBuildConfiguration 762 | name 763 | Debug 764 | 765 | 62E6A34C64821503C39890F1 766 | 767 | baseConfigurationReference 768 | C7E086D850D139E1267ECC63 769 | buildSettings 770 | 771 | ALWAYS_SEARCH_USER_PATHS 772 | NO 773 | COPY_PHASE_STRIP 774 | YES 775 | DSTROOT 776 | /tmp/xcodeproj.dst 777 | GCC_PRECOMPILE_PREFIX_HEADER 778 | YES 779 | GCC_PREFIX_HEADER 780 | Target Support Files/Pods-ConsoleBanner-ConsoleBanner/Pods-ConsoleBanner-ConsoleBanner-prefix.pch 781 | INSTALL_PATH 782 | $(BUILT_PRODUCTS_DIR) 783 | IPHONEOS_DEPLOYMENT_TARGET 784 | 7.1 785 | OTHER_CFLAGS 786 | 787 | -DNS_BLOCK_ASSERTIONS=1 788 | $(inherited) 789 | 790 | OTHER_CPLUSPLUSFLAGS 791 | 792 | -DNS_BLOCK_ASSERTIONS=1 793 | $(inherited) 794 | 795 | OTHER_LDFLAGS 796 | 797 | OTHER_LIBTOOLFLAGS 798 | 799 | PRODUCT_NAME 800 | $(TARGET_NAME) 801 | PUBLIC_HEADERS_FOLDER_PATH 802 | $(TARGET_NAME) 803 | SDKROOT 804 | iphoneos 805 | SKIP_INSTALL 806 | YES 807 | VALIDATE_PRODUCT 808 | YES 809 | 810 | isa 811 | XCBuildConfiguration 812 | name 813 | Release 814 | 815 | 67A58B3C6545E877853CA844 816 | 817 | children 818 | 819 | A4B45EF1A0788CE855CC1EB2 820 | 43F327BB03C5C6C1AC6884F6 821 | 822 | isa 823 | PBXGroup 824 | name 825 | Targets Support Files 826 | sourceTree 827 | <group> 828 | 829 | 6874D716D20D29E867060CFC 830 | 831 | buildConfigurations 832 | 833 | 61A3634D45D9E61A18E8198F 834 | 94A3415503FF83D0081A4881 835 | 836 | defaultConfigurationIsVisible 837 | 0 838 | defaultConfigurationName 839 | Release 840 | isa 841 | XCConfigurationList 842 | 843 | 6FCB8A6C5D49D6FBF6EB2CD5 844 | 845 | includeInIndex 846 | 1 847 | isa 848 | PBXFileReference 849 | lastKnownFileType 850 | sourcecode.c.h 851 | name 852 | DebugConsoleHeader.h 853 | path 854 | Pod/Classes/DebugConsoleHeader.h 855 | sourceTree 856 | <group> 857 | 858 | 7A84231424D97EF3A51FDF1F 859 | 860 | baseConfigurationReference 861 | EF424D65BDB59B8BE61659ED 862 | buildSettings 863 | 864 | ALWAYS_SEARCH_USER_PATHS 865 | NO 866 | COPY_PHASE_STRIP 867 | YES 868 | DSTROOT 869 | /tmp/xcodeproj.dst 870 | GCC_PRECOMPILE_PREFIX_HEADER 871 | YES 872 | INSTALL_PATH 873 | $(BUILT_PRODUCTS_DIR) 874 | IPHONEOS_DEPLOYMENT_TARGET 875 | 7.1 876 | OTHER_CFLAGS 877 | 878 | -DNS_BLOCK_ASSERTIONS=1 879 | $(inherited) 880 | 881 | OTHER_CPLUSPLUSFLAGS 882 | 883 | -DNS_BLOCK_ASSERTIONS=1 884 | $(inherited) 885 | 886 | OTHER_LDFLAGS 887 | 888 | OTHER_LIBTOOLFLAGS 889 | 890 | PRODUCT_NAME 891 | $(TARGET_NAME) 892 | PUBLIC_HEADERS_FOLDER_PATH 893 | $(TARGET_NAME) 894 | SDKROOT 895 | iphoneos 896 | SKIP_INSTALL 897 | YES 898 | VALIDATE_PRODUCT 899 | YES 900 | 901 | isa 902 | XCBuildConfiguration 903 | name 904 | Release 905 | 906 | 7AAD37059CBAD54239FD122C 907 | 908 | buildActionMask 909 | 2147483647 910 | files 911 | 912 | 8411BCFE45282FD7F524E949 913 | 914 | isa 915 | PBXFrameworksBuildPhase 916 | runOnlyForDeploymentPostprocessing 917 | 0 918 | 919 | 7FC6D7D21CCC550EA145AD15 920 | 921 | includeInIndex 922 | 1 923 | isa 924 | PBXFileReference 925 | lastKnownFileType 926 | text.xcconfig 927 | path 928 | Pods-Tests.release.xcconfig 929 | sourceTree 930 | <group> 931 | 932 | 82BAF3128918D54BA06A4AED 933 | 934 | children 935 | 936 | B5F45BC604B1A011A97E7B23 937 | 938 | isa 939 | PBXGroup 940 | name 941 | Frameworks 942 | sourceTree 943 | <group> 944 | 945 | 8411BCFE45282FD7F524E949 946 | 947 | fileRef 948 | 9CDB50CCF8F84313E1D6F9EC 949 | isa 950 | PBXBuildFile 951 | 952 | 869CC52A9121744E4992E523 953 | 954 | includeInIndex 955 | 1 956 | isa 957 | PBXFileReference 958 | lastKnownFileType 959 | sourcecode.c.objc 960 | name 961 | Pods-Tests-ConsoleBanner-dummy.m 962 | path 963 | ../Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-dummy.m 964 | sourceTree 965 | <group> 966 | 967 | 8708D2BCBE21A4FC73F0C48C 968 | 969 | containerPortal 970 | 4442612168C15A6BDFD33029 971 | isa 972 | PBXContainerItemProxy 973 | proxyType 974 | 1 975 | remoteGlobalIDString 976 | 1F7EEDC6301CBC63F3C492DE 977 | remoteInfo 978 | Pods-Tests-ConsoleBanner 979 | 980 | 9105C0111F21139AAB5A4278 981 | 982 | explicitFileType 983 | wrapper.cfbundle 984 | includeInIndex 985 | 0 986 | isa 987 | PBXFileReference 988 | path 989 | ConsoleBanner.bundle 990 | sourceTree 991 | BUILT_PRODUCTS_DIR 992 | 993 | 94A3415503FF83D0081A4881 994 | 995 | buildSettings 996 | 997 | ALWAYS_SEARCH_USER_PATHS 998 | NO 999 | CLANG_CXX_LANGUAGE_STANDARD 1000 | gnu++0x 1001 | CLANG_CXX_LIBRARY 1002 | libc++ 1003 | CLANG_ENABLE_MODULES 1004 | YES 1005 | CLANG_ENABLE_OBJC_ARC 1006 | YES 1007 | CLANG_WARN_BOOL_CONVERSION 1008 | YES 1009 | CLANG_WARN_CONSTANT_CONVERSION 1010 | YES 1011 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 1012 | YES 1013 | CLANG_WARN_EMPTY_BODY 1014 | YES 1015 | CLANG_WARN_ENUM_CONVERSION 1016 | YES 1017 | CLANG_WARN_INT_CONVERSION 1018 | YES 1019 | CLANG_WARN_OBJC_ROOT_CLASS 1020 | YES 1021 | COPY_PHASE_STRIP 1022 | NO 1023 | ENABLE_NS_ASSERTIONS 1024 | NO 1025 | GCC_C_LANGUAGE_STANDARD 1026 | gnu99 1027 | GCC_PREPROCESSOR_DEFINITIONS 1028 | 1029 | RELEASE=1 1030 | 1031 | GCC_WARN_64_TO_32_BIT_CONVERSION 1032 | YES 1033 | GCC_WARN_ABOUT_RETURN_TYPE 1034 | YES 1035 | GCC_WARN_UNDECLARED_SELECTOR 1036 | YES 1037 | GCC_WARN_UNINITIALIZED_AUTOS 1038 | YES 1039 | GCC_WARN_UNUSED_FUNCTION 1040 | YES 1041 | GCC_WARN_UNUSED_VARIABLE 1042 | YES 1043 | IPHONEOS_DEPLOYMENT_TARGET 1044 | 7.1 1045 | STRIP_INSTALLED_PRODUCT 1046 | NO 1047 | VALIDATE_PRODUCT 1048 | YES 1049 | 1050 | isa 1051 | XCBuildConfiguration 1052 | name 1053 | Release 1054 | 1055 | 95363DA6A4586B14EFEAC0DA 1056 | 1057 | children 1058 | 1059 | 0F564AF39EBB80071EE33B67 1060 | 1061 | isa 1062 | PBXGroup 1063 | name 1064 | Development Pods 1065 | sourceTree 1066 | <group> 1067 | 1068 | 96B2DF94186E39EAB7B3BAEE 1069 | 1070 | includeInIndex 1071 | 1 1072 | isa 1073 | PBXFileReference 1074 | lastKnownFileType 1075 | text.xcconfig 1076 | name 1077 | Pods-Tests-ConsoleBanner-Private.xcconfig 1078 | path 1079 | ../Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-Private.xcconfig 1080 | sourceTree 1081 | <group> 1082 | 1083 | 98FB2DE4016270461B73E19A 1084 | 1085 | buildActionMask 1086 | 2147483647 1087 | files 1088 | 1089 | B54E8BCC6E145E82DACC3E80 1090 | 1091 | isa 1092 | PBXFrameworksBuildPhase 1093 | runOnlyForDeploymentPostprocessing 1094 | 0 1095 | 1096 | 9CDB50CCF8F84313E1D6F9EC 1097 | 1098 | isa 1099 | PBXFileReference 1100 | lastKnownFileType 1101 | wrapper.framework 1102 | name 1103 | Foundation.framework 1104 | path 1105 | Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework 1106 | sourceTree 1107 | DEVELOPER_DIR 1108 | 1109 | 9EA628A612555B9C39E4E584 1110 | 1111 | includeInIndex 1112 | 1 1113 | isa 1114 | PBXFileReference 1115 | lastKnownFileType 1116 | text.xcconfig 1117 | path 1118 | Pods-Tests.debug.xcconfig 1119 | sourceTree 1120 | <group> 1121 | 1122 | 9FB1120A856B6BD13D3DA2BA 1123 | 1124 | fileRef 1125 | 4FB21BABB0F16D19853ADEF5 1126 | isa 1127 | PBXBuildFile 1128 | 1129 | A16308F140F5FF936EA7097D 1130 | 1131 | includeInIndex 1132 | 1 1133 | isa 1134 | PBXFileReference 1135 | lastKnownFileType 1136 | text 1137 | path 1138 | Pods-Tests-acknowledgements.markdown 1139 | sourceTree 1140 | <group> 1141 | 1142 | A4B45EF1A0788CE855CC1EB2 1143 | 1144 | children 1145 | 1146 | B045208407CF1B470E388542 1147 | 3FBD0F72F2C5854B095F6A63 1148 | 2B1753918D04BE173AF27786 1149 | F226C7828A2080202EFE0983 1150 | D4F0DA123BA6075676F78366 1151 | C053E365608985176117E9DD 1152 | EF424D65BDB59B8BE61659ED 1153 | 1154 | isa 1155 | PBXGroup 1156 | name 1157 | Pods-ConsoleBanner 1158 | path 1159 | Target Support Files/Pods-ConsoleBanner 1160 | sourceTree 1161 | <group> 1162 | 1163 | B045208407CF1B470E388542 1164 | 1165 | includeInIndex 1166 | 1 1167 | isa 1168 | PBXFileReference 1169 | lastKnownFileType 1170 | text 1171 | path 1172 | Pods-ConsoleBanner-acknowledgements.markdown 1173 | sourceTree 1174 | <group> 1175 | 1176 | B101DC365722A04D177A7909 1177 | 1178 | buildActionMask 1179 | 2147483647 1180 | files 1181 | 1182 | EAC907375FA838A53EF44977 1183 | 1184 | isa 1185 | PBXFrameworksBuildPhase 1186 | runOnlyForDeploymentPostprocessing 1187 | 0 1188 | 1189 | B54E8BCC6E145E82DACC3E80 1190 | 1191 | fileRef 1192 | 9CDB50CCF8F84313E1D6F9EC 1193 | isa 1194 | PBXBuildFile 1195 | 1196 | B5F45BC604B1A011A97E7B23 1197 | 1198 | children 1199 | 1200 | 9CDB50CCF8F84313E1D6F9EC 1201 | 1202 | isa 1203 | PBXGroup 1204 | name 1205 | iOS 1206 | sourceTree 1207 | <group> 1208 | 1209 | BA1C184F456D45DC7110B7EB 1210 | 1211 | buildConfigurationList 1212 | 5E969F08BB6A1C00373A312B 1213 | buildPhases 1214 | 1215 | 5652A7B060C0F5A389EA8CED 1216 | 98FB2DE4016270461B73E19A 1217 | 29E1EED4D2C0EFC5E780F1F7 1218 | 1219 | buildRules 1220 | 1221 | dependencies 1222 | 1223 | ECB4B6FE92D3A231F305B128 1224 | 1225 | isa 1226 | PBXNativeTarget 1227 | name 1228 | Pods-ConsoleBanner-ConsoleBanner 1229 | productName 1230 | Pods-ConsoleBanner-ConsoleBanner 1231 | productReference 1232 | 288F83762ED0E734D5A4FB08 1233 | productType 1234 | com.apple.product-type.library.static 1235 | 1236 | BA2D11D5BFF033D8317D9754 1237 | 1238 | includeInIndex 1239 | 1 1240 | isa 1241 | PBXFileReference 1242 | lastKnownFileType 1243 | sourcecode.c.h 1244 | path 1245 | Pods-Tests-environment.h 1246 | sourceTree 1247 | <group> 1248 | 1249 | BA4859E656B9BBA89547D8CE 1250 | 1251 | explicitFileType 1252 | archive.ar 1253 | includeInIndex 1254 | 0 1255 | isa 1256 | PBXFileReference 1257 | path 1258 | libPods-Tests.a 1259 | sourceTree 1260 | BUILT_PRODUCTS_DIR 1261 | 1262 | BAE1AF65605910BE1FC8BEDB 1263 | 1264 | buildConfigurations 1265 | 1266 | DD2A6A1A2DAE37799FF97AAC 1267 | 2D076598115807476272FC04 1268 | 1269 | defaultConfigurationIsVisible 1270 | 0 1271 | defaultConfigurationName 1272 | Release 1273 | isa 1274 | XCConfigurationList 1275 | 1276 | BBF0AF509EB210E17DADA753 1277 | 1278 | includeInIndex 1279 | 1 1280 | isa 1281 | PBXFileReference 1282 | lastKnownFileType 1283 | text 1284 | name 1285 | Podfile 1286 | path 1287 | ../Podfile 1288 | sourceTree 1289 | SOURCE_ROOT 1290 | xcLanguageSpecificationIdentifier 1291 | xcode.lang.ruby 1292 | 1293 | BD4522D318F4B25168A8D6C0 1294 | 1295 | includeInIndex 1296 | 1 1297 | isa 1298 | PBXFileReference 1299 | lastKnownFileType 1300 | text.xcconfig 1301 | name 1302 | Pods-Tests-ConsoleBanner.xcconfig 1303 | path 1304 | ../Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner.xcconfig 1305 | sourceTree 1306 | <group> 1307 | 1308 | BF84A5543E995B96F8E861E5 1309 | 1310 | includeInIndex 1311 | 1 1312 | isa 1313 | PBXFileReference 1314 | lastKnownFileType 1315 | text.plist.xml 1316 | path 1317 | Pods-Tests-acknowledgements.plist 1318 | sourceTree 1319 | <group> 1320 | 1321 | BF913F431C4B3EEFA1B12120 1322 | 1323 | buildActionMask 1324 | 2147483647 1325 | files 1326 | 1327 | CE88190E6E34C6C8FF9213B7 1328 | 1329 | isa 1330 | PBXFrameworksBuildPhase 1331 | runOnlyForDeploymentPostprocessing 1332 | 0 1333 | 1334 | C053E365608985176117E9DD 1335 | 1336 | includeInIndex 1337 | 1 1338 | isa 1339 | PBXFileReference 1340 | lastKnownFileType 1341 | text.xcconfig 1342 | path 1343 | Pods-ConsoleBanner.debug.xcconfig 1344 | sourceTree 1345 | <group> 1346 | 1347 | C1025B1C6C33663CBD4BDE81 1348 | 1349 | fileRef 1350 | 6FCB8A6C5D49D6FBF6EB2CD5 1351 | isa 1352 | PBXBuildFile 1353 | 1354 | C7E086D850D139E1267ECC63 1355 | 1356 | includeInIndex 1357 | 1 1358 | isa 1359 | PBXFileReference 1360 | lastKnownFileType 1361 | text.xcconfig 1362 | path 1363 | Pods-ConsoleBanner-ConsoleBanner-Private.xcconfig 1364 | sourceTree 1365 | <group> 1366 | 1367 | C907D1A361BDF552D0B5A34D 1368 | 1369 | buildActionMask 1370 | 2147483647 1371 | files 1372 | 1373 | isa 1374 | PBXFrameworksBuildPhase 1375 | runOnlyForDeploymentPostprocessing 1376 | 0 1377 | 1378 | CA12F78718F693DD93F82CC6 1379 | 1380 | fileRef 1381 | 6FCB8A6C5D49D6FBF6EB2CD5 1382 | isa 1383 | PBXBuildFile 1384 | 1385 | CDA7550134033AB766D2FFD3 1386 | 1387 | explicitFileType 1388 | archive.ar 1389 | includeInIndex 1390 | 0 1391 | isa 1392 | PBXFileReference 1393 | path 1394 | libPods-ConsoleBanner.a 1395 | sourceTree 1396 | BUILT_PRODUCTS_DIR 1397 | 1398 | CE88190E6E34C6C8FF9213B7 1399 | 1400 | fileRef 1401 | 9CDB50CCF8F84313E1D6F9EC 1402 | isa 1403 | PBXBuildFile 1404 | 1405 | D0E63F94317B4FDCCEB20DD2 1406 | 1407 | isa 1408 | PBXTargetDependency 1409 | name 1410 | ConsoleBanner 1411 | target 1412 | 35E801EE513CB405106D8320 1413 | targetProxy 1414 | 60A531C72D87A3A42ED001F9 1415 | 1416 | D30739302DC3826F8541F234 1417 | 1418 | buildActionMask 1419 | 2147483647 1420 | files 1421 | 1422 | 36247871F1F711DE804CFB3B 1423 | F0C12373DDF5180716FAD17C 1424 | 1425 | isa 1426 | PBXSourcesBuildPhase 1427 | runOnlyForDeploymentPostprocessing 1428 | 0 1429 | 1430 | D4F0DA123BA6075676F78366 1431 | 1432 | includeInIndex 1433 | 1 1434 | isa 1435 | PBXFileReference 1436 | lastKnownFileType 1437 | text.script.sh 1438 | path 1439 | Pods-ConsoleBanner-resources.sh 1440 | sourceTree 1441 | <group> 1442 | 1443 | D69BE212288477682F9EA8F4 1444 | 1445 | buildConfigurationList 1446 | ECD529275C8D4C9D68997DFA 1447 | buildPhases 1448 | 1449 | 140932D2889050989DD85CBF 1450 | BF913F431C4B3EEFA1B12120 1451 | 1452 | buildRules 1453 | 1454 | dependencies 1455 | 1456 | 42A877C73127B967AF4C752D 1457 | 1458 | isa 1459 | PBXNativeTarget 1460 | name 1461 | Pods-ConsoleBanner 1462 | productName 1463 | Pods-ConsoleBanner 1464 | productReference 1465 | CDA7550134033AB766D2FFD3 1466 | productType 1467 | com.apple.product-type.library.static 1468 | 1469 | DD2A6A1A2DAE37799FF97AAC 1470 | 1471 | baseConfigurationReference 1472 | 9EA628A612555B9C39E4E584 1473 | buildSettings 1474 | 1475 | ALWAYS_SEARCH_USER_PATHS 1476 | NO 1477 | COPY_PHASE_STRIP 1478 | NO 1479 | DSTROOT 1480 | /tmp/xcodeproj.dst 1481 | GCC_DYNAMIC_NO_PIC 1482 | NO 1483 | GCC_OPTIMIZATION_LEVEL 1484 | 0 1485 | GCC_PRECOMPILE_PREFIX_HEADER 1486 | YES 1487 | GCC_PREPROCESSOR_DEFINITIONS 1488 | 1489 | DEBUG=1 1490 | $(inherited) 1491 | 1492 | GCC_SYMBOLS_PRIVATE_EXTERN 1493 | NO 1494 | INSTALL_PATH 1495 | $(BUILT_PRODUCTS_DIR) 1496 | IPHONEOS_DEPLOYMENT_TARGET 1497 | 7.1 1498 | OTHER_LDFLAGS 1499 | 1500 | OTHER_LIBTOOLFLAGS 1501 | 1502 | PRODUCT_NAME 1503 | $(TARGET_NAME) 1504 | PUBLIC_HEADERS_FOLDER_PATH 1505 | $(TARGET_NAME) 1506 | SDKROOT 1507 | iphoneos 1508 | SKIP_INSTALL 1509 | YES 1510 | 1511 | isa 1512 | XCBuildConfiguration 1513 | name 1514 | Debug 1515 | 1516 | E34AB14330A6CCB2D26AE7EB 1517 | 1518 | children 1519 | 1520 | 9105C0111F21139AAB5A4278 1521 | CDA7550134033AB766D2FFD3 1522 | 288F83762ED0E734D5A4FB08 1523 | BA4859E656B9BBA89547D8CE 1524 | 3E9C95FB00BED9CF877D55BE 1525 | 1526 | isa 1527 | PBXGroup 1528 | name 1529 | Products 1530 | sourceTree 1531 | <group> 1532 | 1533 | E8DAE100A516ECCE626B3195 1534 | 1535 | includeInIndex 1536 | 1 1537 | isa 1538 | PBXFileReference 1539 | lastKnownFileType 1540 | text.xcconfig 1541 | path 1542 | Pods-ConsoleBanner-ConsoleBanner.xcconfig 1543 | sourceTree 1544 | <group> 1545 | 1546 | EA0BE7534A9A62B8C7400B47 1547 | 1548 | buildSettings 1549 | 1550 | PRODUCT_NAME 1551 | $(TARGET_NAME) 1552 | SDKROOT 1553 | iphoneos 1554 | SKIP_INSTALL 1555 | YES 1556 | WRAPPER_EXTENSION 1557 | bundle 1558 | 1559 | isa 1560 | XCBuildConfiguration 1561 | name 1562 | Release 1563 | 1564 | EAC907375FA838A53EF44977 1565 | 1566 | fileRef 1567 | 9CDB50CCF8F84313E1D6F9EC 1568 | isa 1569 | PBXBuildFile 1570 | 1571 | ECB4B6FE92D3A231F305B128 1572 | 1573 | isa 1574 | PBXTargetDependency 1575 | name 1576 | ConsoleBanner 1577 | target 1578 | 35E801EE513CB405106D8320 1579 | targetProxy 1580 | 03FDAB3B1F046BFA942DC85B 1581 | 1582 | ECD529275C8D4C9D68997DFA 1583 | 1584 | buildConfigurations 1585 | 1586 | F3F305488D9FB33F87A8B092 1587 | 7A84231424D97EF3A51FDF1F 1588 | 1589 | defaultConfigurationIsVisible 1590 | 0 1591 | defaultConfigurationName 1592 | Release 1593 | isa 1594 | XCConfigurationList 1595 | 1596 | EF424D65BDB59B8BE61659ED 1597 | 1598 | includeInIndex 1599 | 1 1600 | isa 1601 | PBXFileReference 1602 | lastKnownFileType 1603 | text.xcconfig 1604 | path 1605 | Pods-ConsoleBanner.release.xcconfig 1606 | sourceTree 1607 | <group> 1608 | 1609 | EF733EA9B5094D0840F54B77 1610 | 1611 | buildActionMask 1612 | 2147483647 1613 | files 1614 | 1615 | isa 1616 | PBXResourcesBuildPhase 1617 | runOnlyForDeploymentPostprocessing 1618 | 0 1619 | 1620 | F0C12373DDF5180716FAD17C 1621 | 1622 | fileRef 1623 | 869CC52A9121744E4992E523 1624 | isa 1625 | PBXBuildFile 1626 | 1627 | F226C7828A2080202EFE0983 1628 | 1629 | includeInIndex 1630 | 1 1631 | isa 1632 | PBXFileReference 1633 | lastKnownFileType 1634 | sourcecode.c.h 1635 | path 1636 | Pods-ConsoleBanner-environment.h 1637 | sourceTree 1638 | <group> 1639 | 1640 | F3F305488D9FB33F87A8B092 1641 | 1642 | baseConfigurationReference 1643 | C053E365608985176117E9DD 1644 | buildSettings 1645 | 1646 | ALWAYS_SEARCH_USER_PATHS 1647 | NO 1648 | COPY_PHASE_STRIP 1649 | NO 1650 | DSTROOT 1651 | /tmp/xcodeproj.dst 1652 | GCC_DYNAMIC_NO_PIC 1653 | NO 1654 | GCC_OPTIMIZATION_LEVEL 1655 | 0 1656 | GCC_PRECOMPILE_PREFIX_HEADER 1657 | YES 1658 | GCC_PREPROCESSOR_DEFINITIONS 1659 | 1660 | DEBUG=1 1661 | $(inherited) 1662 | 1663 | GCC_SYMBOLS_PRIVATE_EXTERN 1664 | NO 1665 | INSTALL_PATH 1666 | $(BUILT_PRODUCTS_DIR) 1667 | IPHONEOS_DEPLOYMENT_TARGET 1668 | 7.1 1669 | OTHER_LDFLAGS 1670 | 1671 | OTHER_LIBTOOLFLAGS 1672 | 1673 | PRODUCT_NAME 1674 | $(TARGET_NAME) 1675 | PUBLIC_HEADERS_FOLDER_PATH 1676 | $(TARGET_NAME) 1677 | SDKROOT 1678 | iphoneos 1679 | SKIP_INSTALL 1680 | YES 1681 | 1682 | isa 1683 | XCBuildConfiguration 1684 | name 1685 | Debug 1686 | 1687 | F6CAFB7F0F164BEBDBDD6A3E 1688 | 1689 | buildConfigurations 1690 | 1691 | 362F6CD98B96E0EF6300B3AF 1692 | EA0BE7534A9A62B8C7400B47 1693 | 1694 | defaultConfigurationIsVisible 1695 | 0 1696 | defaultConfigurationName 1697 | Release 1698 | isa 1699 | XCConfigurationList 1700 | 1701 | FA799950BDAD0CEF1FBEB748 1702 | 1703 | baseConfigurationReference 1704 | 96B2DF94186E39EAB7B3BAEE 1705 | buildSettings 1706 | 1707 | ALWAYS_SEARCH_USER_PATHS 1708 | NO 1709 | COPY_PHASE_STRIP 1710 | YES 1711 | DSTROOT 1712 | /tmp/xcodeproj.dst 1713 | GCC_PRECOMPILE_PREFIX_HEADER 1714 | YES 1715 | GCC_PREFIX_HEADER 1716 | Target Support Files/Pods-Tests-ConsoleBanner/Pods-Tests-ConsoleBanner-prefix.pch 1717 | INSTALL_PATH 1718 | $(BUILT_PRODUCTS_DIR) 1719 | IPHONEOS_DEPLOYMENT_TARGET 1720 | 7.1 1721 | OTHER_CFLAGS 1722 | 1723 | -DNS_BLOCK_ASSERTIONS=1 1724 | $(inherited) 1725 | 1726 | OTHER_CPLUSPLUSFLAGS 1727 | 1728 | -DNS_BLOCK_ASSERTIONS=1 1729 | $(inherited) 1730 | 1731 | OTHER_LDFLAGS 1732 | 1733 | OTHER_LIBTOOLFLAGS 1734 | 1735 | PRODUCT_NAME 1736 | $(TARGET_NAME) 1737 | PUBLIC_HEADERS_FOLDER_PATH 1738 | $(TARGET_NAME) 1739 | SDKROOT 1740 | iphoneos 1741 | SKIP_INSTALL 1742 | YES 1743 | VALIDATE_PRODUCT 1744 | YES 1745 | 1746 | isa 1747 | XCBuildConfiguration 1748 | name 1749 | Release 1750 | 1751 | 1752 | rootObject 1753 | 4442612168C15A6BDFD33029 1754 | 1755 | 1756 | --------------------------------------------------------------------------------