├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── BlinkingLabel.swift ├── _Pods.xcodeproj ├── blinkinglabel.gif ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel.modulemap │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-BlinkingLabel_Tests │ │ │ ├── Pods-BlinkingLabel_Tests.modulemap │ │ │ ├── Pods-BlinkingLabel_Tests-dummy.m │ │ │ ├── Pods-BlinkingLabel_Tests-umbrella.h │ │ │ ├── Pods-BlinkingLabel_Tests-environment.h │ │ │ ├── Pods-BlinkingLabel_Tests.debug.xcconfig │ │ │ ├── Pods-BlinkingLabel_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-BlinkingLabel_Tests-acknowledgements.markdown │ │ │ ├── Pods-BlinkingLabel_Tests-acknowledgements.plist │ │ │ ├── Pods-BlinkingLabel_Tests-frameworks.sh │ │ │ └── Pods-BlinkingLabel_Tests-resources.sh │ │ └── Pods-BlinkingLabel_Example │ │ │ ├── Pods-BlinkingLabel_Example.modulemap │ │ │ ├── Pods-BlinkingLabel_Example-dummy.m │ │ │ ├── Pods-BlinkingLabel_Example-umbrella.h │ │ │ ├── Pods-BlinkingLabel_Example-environment.h │ │ │ ├── Pods-BlinkingLabel_Example.debug.xcconfig │ │ │ ├── Pods-BlinkingLabel_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-BlinkingLabel_Example-acknowledgements.markdown │ │ │ ├── Pods-BlinkingLabel_Example-acknowledgements.plist │ │ │ ├── Pods-BlinkingLabel_Example-frameworks.sh │ │ │ └── Pods-BlinkingLabel_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── BlinkingLabel.podspec.json │ └── Pods.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel.xcscheme │ │ │ ├── Pods-BlinkingLabel_Example-BlinkingLabel.xcscheme │ │ │ ├── Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel.xcscheme │ │ │ └── Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel.xcscheme │ │ └── project.pbxproj ├── BlinkingLabel.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── BlinkingLabel-Example.xcscheme │ └── project.pbxproj ├── Podfile.lock ├── Podfile ├── BlinkingLabel.xcworkspace │ └── contents.xcworkspacedata ├── BlinkingLabel │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.xib │ └── AppDelegate.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── BlinkingLabel.podspec └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /blinkinglabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obuseme/BlinkingLabel/HEAD/blinkinglabel.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-BlinkingLabel_Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-BlinkingLabel_Example-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_BlinkingLabel_Tests { 2 | umbrella header "Pods-BlinkingLabel_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/BlinkingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_BlinkingLabel_Example { 2 | umbrella header "Pods-BlinkingLabel_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BlinkingLabel_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BlinkingLabel_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BlinkingLabel_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BlinkingLabel_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module BlinkingLabel { 2 | umbrella header "Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BlinkingLabel_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BlinkingLabel_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module BlinkingLabel { 2 | umbrella header "Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double BlinkingLabelVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char BlinkingLabelVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BlinkingLabel_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BlinkingLabel_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double BlinkingLabelVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char BlinkingLabelVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BlinkingLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BlinkingLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BlinkingLabel: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BlinkingLabel: eecd43212c9f278123b5af56b503f6d40ec9102c 13 | 14 | COCOAPODS: 0.37.2 15 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BlinkingLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BlinkingLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BlinkingLabel: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BlinkingLabel: eecd43212c9f278123b5af56b503f6d40ec9102c 13 | 14 | COCOAPODS: 0.37.2 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BlinkingLabel_Tests_BlinkingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BlinkingLabel_Tests_BlinkingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BlinkingLabel_Example_BlinkingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BlinkingLabel_Example_BlinkingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | 4 | target 'BlinkingLabel_Example', :exclusive => true do 5 | pod "BlinkingLabel", :path => "../" 6 | end 7 | 8 | target 'BlinkingLabel_Tests', :exclusive => true do 9 | pod "BlinkingLabel", :path => "../" 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /Example/BlinkingLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_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 | // BlinkingLabel 10 | #define COCOAPODS_POD_AVAILABLE_BlinkingLabel 11 | #define COCOAPODS_VERSION_MAJOR_BlinkingLabel 0 12 | #define COCOAPODS_VERSION_MINOR_BlinkingLabel 1 13 | #define COCOAPODS_VERSION_PATCH_BlinkingLabel 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-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 | // BlinkingLabel 10 | #define COCOAPODS_POD_AVAILABLE_BlinkingLabel 11 | #define COCOAPODS_VERSION_MAJOR_BlinkingLabel 0 12 | #define COCOAPODS_VERSION_MINOR_BlinkingLabel 1 13 | #define COCOAPODS_VERSION_PATCH_BlinkingLabel 0 14 | 15 | -------------------------------------------------------------------------------- /.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/BlinkingLabel.xcworkspace -scheme BlinkingLabel-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BlinkingLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "BlinkingLabel" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Tests 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BlinkingLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "BlinkingLabel" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Tests 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BlinkingLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "BlinkingLabel" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Example 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BlinkingLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "BlinkingLabel" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Example 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig" 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BlinkingLabel" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BlinkingLabel" 6 | OTHER_LDFLAGS = -ObjC 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Tests 9 | PODS_ROOT = ${SRCROOT} 10 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig" 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BlinkingLabel" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BlinkingLabel" 6 | OTHER_LDFLAGS = -ObjC 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Example 9 | PODS_ROOT = ${SRCROOT} 10 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pod/Classes/BlinkingLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BlinkingLabel.swift 3 | // Pods 4 | // 5 | // Created by Andy Obusek on 6/29/15. 6 | // 7 | // 8 | 9 | /// A UILabel subclass that may be told to blink or stop blinking 10 | public class BlinkingLabel : UILabel { 11 | 12 | /** 13 | Tells the label to start blinking. 14 | */ 15 | public func startBlinking() { 16 | let options : UIViewAnimationOptions = .Repeat | .Autoreverse 17 | UIView.animateWithDuration(0.25, delay:0.0, options:options, animations: { 18 | self.alpha = 0 19 | }, completion: nil) 20 | } 21 | 22 | /** 23 | Tells the label to stop blinking. 24 | */ 25 | public func stopBlinking() { 26 | alpha = 1 27 | layer.removeAllAnimations() 28 | } 29 | } -------------------------------------------------------------------------------- /Example/BlinkingLabel/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" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.cocoapods.$(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 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/BlinkingLabel.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BlinkingLabel", 3 | "version": "0.1.0", 4 | "summary": "A short description of BlinkingLabel.", 5 | "description": " An optional longer description of BlinkingLabel\n\n * Markdown format.\n * Don't worry about the indent, we strip it!\n", 6 | "homepage": "https://github.com//BlinkingLabel", 7 | "license": "MIT", 8 | "authors": { 9 | "Andy Obusek": "andyo@aweber.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com//BlinkingLabel.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes/**/*", 20 | "resource_bundles": { 21 | "BlinkingLabel": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import BlinkingLabel 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measureBlock() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Andy Obusek 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /BlinkingLabel.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint BlinkingLabel.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 = "BlinkingLabel" 12 | s.version = "0.3.0" 13 | s.summary = "A subclass on UILabel that provides a blink." 14 | s.description = <<-DESC 15 | This CocoaPod provides the ability to use a UILabel that may be started and stopped blinking. 16 | DESC 17 | s.homepage = "https://github.com/obuseme/BlinkingLabel" 18 | s.license = 'MIT' 19 | s.author = { "Andy Obusek" => "andyo@aweber.com" } 20 | s.source = { :git => "https://github.com/obuseme/BlinkingLabel.git", :tag => s.version.to_s } 21 | s.social_media_url = 'https://twitter.com/obusek' 22 | 23 | s.platform = :ios, '8.0' 24 | s.requires_arc = true 25 | 26 | s.source_files = 'Pod/Classes/**/*' 27 | s.resource_bundles = { 28 | 'BlinkingLabel' => ['Pod/Assets/*.png'] 29 | } 30 | end 31 | -------------------------------------------------------------------------------- /Example/BlinkingLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BlinkingLabel 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/BlinkingLabel.svg?style=flat)](http://cocoapods.org/pods/BlinkingLabel) 4 | [![License](https://img.shields.io/cocoapods/l/BlinkingLabel.svg?style=flat)](http://cocoapods.org/pods/BlinkingLabel) 5 | [![Platform](https://img.shields.io/cocoapods/p/BlinkingLabel.svg?style=flat)](http://cocoapods.org/pods/BlinkingLabel) 6 | 7 | ## Overview 8 | 9 | BlinkingLabel is a subclass of UILabel, written in Swift, that enables the UILabel to blink. 10 | 11 | ![](blinkinglabel.gif?raw=true "Blinking Label screenshot") 12 | 13 | ## Requirements 14 | * ARC 15 | * iOS8 16 | 17 | ## Installation with CocoaPods 18 | 19 | BlinkingLabel is available through [CocoaPods](http://cocoapods.org). To install 20 | it, simply add the following line to your Podfile: 21 | 22 | ```ruby 23 | pod "BlinkingLabel" 24 | ``` 25 | 26 | ## Usage 27 | 28 | ```Swift 29 | import BlinkingLabel 30 | 31 | let labelThatBlinks = BlinkingLabel() 32 | labelThatBlinks.startBlinking() 33 | labelThatBlinks.stopBlinking() 34 | 35 | ``` 36 | 37 | ## Example Project 38 | 39 | An example project is included with this repo. To run the example project, clone the repo, and run `pod install` from the Example directory first. 40 | 41 | ## Author 42 | 43 | Andy Obusek 44 | 45 | ## License 46 | 47 | BlinkingLabel is available under the MIT license. See the LICENSE file for more info. 48 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BlinkingLabel 5 | 6 | Copyright (c) 2015 Andy Obusek 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BlinkingLabel 5 | 6 | Copyright (c) 2015 Andy Obusek 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/BlinkingLabel/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // BlinkingLabel 4 | // 5 | // Created by Andy Obusek on 06/29/2015. 6 | // Copyright (c) 06/29/2015 Andy Obusek. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import BlinkingLabel 11 | 12 | class ViewController: UIViewController { 13 | 14 | var isBlinking = false 15 | let blinkingLabel = BlinkingLabel(frame: CGRectMake(10, 20, 200, 30)) 16 | 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | 20 | // Setup the BlinkingLabel 21 | blinkingLabel.text = "I blink!" 22 | blinkingLabel.font = UIFont.systemFontOfSize(20) 23 | view.addSubview(blinkingLabel) 24 | blinkingLabel.startBlinking() 25 | isBlinking = true 26 | 27 | // Create a UIButton to toggle the blinking 28 | let toggleButton = UIButton(frame: CGRectMake(10, 60, 125, 30)) 29 | toggleButton.setTitle("Toggle Blinking", forState: .Normal) 30 | toggleButton.setTitleColor(UIColor.redColor(), forState: .Normal) 31 | toggleButton.addTarget(self, action: "toggleBlinking", forControlEvents: .TouchUpInside) 32 | view.addSubview(toggleButton) 33 | } 34 | 35 | func toggleBlinking() { 36 | if (isBlinking) { 37 | blinkingLabel.stopBlinking() 38 | } else { 39 | blinkingLabel.startBlinking() 40 | } 41 | isBlinking = !isBlinking 42 | } 43 | 44 | } 45 | 46 | -------------------------------------------------------------------------------- /Example/BlinkingLabel/Base.lproj/Main.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 | -------------------------------------------------------------------------------- /Example/BlinkingLabel/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // BlinkingLabel 4 | // 5 | // Created by Andy Obusek on 06/29/2015. 6 | // Copyright (c) 06/29/2015 Andy Obusek. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 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 | func applicationDidBecomeActive(application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_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 | Copyright (c) 2015 Andy Obusek <andyo@aweber.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | BlinkingLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Andy Obusek <andyo@aweber.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | BlinkingLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BlinkingLabel_Tests-BlinkingLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BlinkingLabel_Example-BlinkingLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | local source="${BUILT_PRODUCTS_DIR}/Pods-BlinkingLabel_Tests/$1" 12 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | 14 | if [ -L "${source}" ]; then 15 | echo "Symlinked..." 16 | source=$(readlink "${source}") 17 | fi 18 | 19 | # use filter instead of exclude so missing patterns dont' throw errors 20 | echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" 21 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" 22 | # Resign the code if required by the build settings to avoid unstable apps 23 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 24 | code_sign "${destination}/$1" 25 | fi 26 | 27 | # Embed linked Swift runtime libraries 28 | local basename 29 | basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) 30 | local swift_runtime_libs 31 | swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/$1/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 32 | for lib in $swift_runtime_libs; do 33 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 34 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 35 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 36 | code_sign "${destination}/${lib}" 37 | fi 38 | done 39 | } 40 | 41 | # Signs a framework with the provided identity 42 | code_sign() { 43 | # Use the current code_sign_identitiy 44 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 45 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" 46 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 47 | } 48 | 49 | 50 | if [[ "$CONFIGURATION" == "Debug" ]]; then 51 | install_framework 'BlinkingLabel.framework' 52 | fi 53 | if [[ "$CONFIGURATION" == "Release" ]]; then 54 | install_framework 'BlinkingLabel.framework' 55 | fi 56 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | local source="${BUILT_PRODUCTS_DIR}/Pods-BlinkingLabel_Example/$1" 12 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | 14 | if [ -L "${source}" ]; then 15 | echo "Symlinked..." 16 | source=$(readlink "${source}") 17 | fi 18 | 19 | # use filter instead of exclude so missing patterns dont' throw errors 20 | echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" 21 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" 22 | # Resign the code if required by the build settings to avoid unstable apps 23 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 24 | code_sign "${destination}/$1" 25 | fi 26 | 27 | # Embed linked Swift runtime libraries 28 | local basename 29 | basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) 30 | local swift_runtime_libs 31 | swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/$1/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 32 | for lib in $swift_runtime_libs; do 33 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 34 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 35 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 36 | code_sign "${destination}/${lib}" 37 | fi 38 | done 39 | } 40 | 41 | # Signs a framework with the provided identity 42 | code_sign() { 43 | # Use the current code_sign_identitiy 44 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 45 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" 46 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 47 | } 48 | 49 | 50 | if [[ "$CONFIGURATION" == "Debug" ]]; then 51 | install_framework 'BlinkingLabel.framework' 52 | fi 53 | if [[ "$CONFIGURATION" == "Release" ]]; then 54 | install_framework 'BlinkingLabel.framework' 55 | fi 56 | -------------------------------------------------------------------------------- /Example/BlinkingLabel/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-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 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | if [[ "${ACTION}" == "install" ]]; then 63 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 64 | fi 65 | rm -f "$RESOURCES_TO_COPY" 66 | 67 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 68 | then 69 | case "${TARGETED_DEVICE_FAMILY}" in 70 | 1,2) 71 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 72 | ;; 73 | 1) 74 | TARGET_DEVICE_ARGS="--target-device iphone" 75 | ;; 76 | 2) 77 | TARGET_DEVICE_ARGS="--target-device ipad" 78 | ;; 79 | *) 80 | TARGET_DEVICE_ARGS="--target-device mac" 81 | ;; 82 | esac 83 | 84 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 85 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 86 | while read line; do 87 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 88 | XCASSET_FILES+=("$line") 89 | fi 90 | done <<<"$OTHER_XCASSETS" 91 | 92 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun 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}" 93 | fi 94 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_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 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | if [[ "${ACTION}" == "install" ]]; then 63 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 64 | fi 65 | rm -f "$RESOURCES_TO_COPY" 66 | 67 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 68 | then 69 | case "${TARGETED_DEVICE_FAMILY}" in 70 | 1,2) 71 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 72 | ;; 73 | 1) 74 | TARGET_DEVICE_ARGS="--target-device iphone" 75 | ;; 76 | 2) 77 | TARGET_DEVICE_ARGS="--target-device ipad" 78 | ;; 79 | *) 80 | TARGET_DEVICE_ARGS="--target-device mac" 81 | ;; 82 | esac 83 | 84 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 85 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 86 | while read line; do 87 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 88 | XCASSET_FILES+=("$line") 89 | fi 90 | done <<<"$OTHER_XCASSETS" 91 | 92 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun 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}" 93 | fi 94 | -------------------------------------------------------------------------------- /Example/BlinkingLabel.xcodeproj/xcshareddata/xcschemes/BlinkingLabel-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /Example/BlinkingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 15D676F10DF69BB98F3AF564 /* Pods_BlinkingLabel_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBFC577B02A654B67871C36E /* Pods_BlinkingLabel_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | ECFCFE917F94E3E24AAA5BF2 /* Pods_BlinkingLabel_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE03612B9C86746708A46D91 /* Pods_BlinkingLabel_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = BlinkingLabel; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 32204DAA5A0155CCB4186362 /* Pods-BlinkingLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.release.xcconfig"; sourceTree = ""; }; 32 | 38B0EAAFC86C41F59D7B6851 /* Pods-BlinkingLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.release.xcconfig"; sourceTree = ""; }; 33 | 607FACD01AFB9204008FA782 /* BlinkingLabel_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlinkingLabel_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 35 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 36 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 37 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 38 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 39 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 40 | 607FACE51AFB9204008FA782 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = Tests.xctest; path = BlinkingLabel_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 43 | 7C7AEDED0F0575C8B80D9D9B /* Pods-BlinkingLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 44 | 91A9CE8527C9E89B9B996A58 /* Pods-BlinkingLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.debug.xcconfig"; sourceTree = ""; }; 45 | CBFC577B02A654B67871C36E /* Pods_BlinkingLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BlinkingLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | D9409B420BF9EAD739F066F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 47 | E364D2D887EE56D38CE5915C /* BlinkingLabel.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = BlinkingLabel.podspec; path = ../BlinkingLabel.podspec; sourceTree = ""; }; 48 | E929836E5888BF3B07F1DD32 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 49 | EE03612B9C86746708A46D91 /* Pods_BlinkingLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BlinkingLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | ECFCFE917F94E3E24AAA5BF2 /* Pods_BlinkingLabel_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 15D676F10DF69BB98F3AF564 /* Pods_BlinkingLabel_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 3F43747AD6C83506906866EA /* Pods */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 91A9CE8527C9E89B9B996A58 /* Pods-BlinkingLabel_Example.debug.xcconfig */, 76 | 32204DAA5A0155CCB4186362 /* Pods-BlinkingLabel_Example.release.xcconfig */, 77 | 7C7AEDED0F0575C8B80D9D9B /* Pods-BlinkingLabel_Tests.debug.xcconfig */, 78 | 38B0EAAFC86C41F59D7B6851 /* Pods-BlinkingLabel_Tests.release.xcconfig */, 79 | ); 80 | name = Pods; 81 | sourceTree = ""; 82 | }; 83 | 607FACC71AFB9204008FA782 = { 84 | isa = PBXGroup; 85 | children = ( 86 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 87 | 607FACD21AFB9204008FA782 /* Example for BlinkingLabel */, 88 | 607FACE81AFB9204008FA782 /* Tests */, 89 | 607FACD11AFB9204008FA782 /* Products */, 90 | 3F43747AD6C83506906866EA /* Pods */, 91 | DD5A0005A4867FDABB5ACD08 /* Frameworks */, 92 | ); 93 | sourceTree = ""; 94 | }; 95 | 607FACD11AFB9204008FA782 /* Products */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD01AFB9204008FA782 /* BlinkingLabel_Example.app */, 99 | 607FACE51AFB9204008FA782 /* Tests.xctest */, 100 | ); 101 | name = Products; 102 | sourceTree = ""; 103 | }; 104 | 607FACD21AFB9204008FA782 /* Example for BlinkingLabel */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 108 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 109 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 110 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 111 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 112 | 607FACD31AFB9204008FA782 /* Supporting Files */, 113 | ); 114 | name = "Example for BlinkingLabel"; 115 | path = BlinkingLabel; 116 | sourceTree = ""; 117 | }; 118 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 607FACD41AFB9204008FA782 /* Info.plist */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | 607FACE81AFB9204008FA782 /* Tests */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 130 | 607FACE91AFB9204008FA782 /* Supporting Files */, 131 | ); 132 | path = Tests; 133 | sourceTree = ""; 134 | }; 135 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 607FACEA1AFB9204008FA782 /* Info.plist */, 139 | ); 140 | name = "Supporting Files"; 141 | sourceTree = ""; 142 | }; 143 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | E364D2D887EE56D38CE5915C /* BlinkingLabel.podspec */, 147 | E929836E5888BF3B07F1DD32 /* README.md */, 148 | D9409B420BF9EAD739F066F0 /* LICENSE */, 149 | ); 150 | name = "Podspec Metadata"; 151 | sourceTree = ""; 152 | }; 153 | DD5A0005A4867FDABB5ACD08 /* Frameworks */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | EE03612B9C86746708A46D91 /* Pods_BlinkingLabel_Example.framework */, 157 | CBFC577B02A654B67871C36E /* Pods_BlinkingLabel_Tests.framework */, 158 | ); 159 | name = Frameworks; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* BlinkingLabel_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BlinkingLabel_Example" */; 168 | buildPhases = ( 169 | 6AF0C9036DDF05867F28C8BB /* Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 1152EDA409AAB56D5F8571AB /* Embed Pods Frameworks */, 174 | 95C14324796F83A955C7C673 /* Copy Pods Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = BlinkingLabel_Example; 181 | productName = BlinkingLabel; 182 | productReference = 607FACD01AFB9204008FA782 /* BlinkingLabel_Example.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | 607FACE41AFB9204008FA782 /* BlinkingLabel_Tests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BlinkingLabel_Tests" */; 188 | buildPhases = ( 189 | EBA53BCDEC63CD9E0D298AAE /* Check Pods Manifest.lock */, 190 | 607FACE11AFB9204008FA782 /* Sources */, 191 | 607FACE21AFB9204008FA782 /* Frameworks */, 192 | 607FACE31AFB9204008FA782 /* Resources */, 193 | 9D70E9CC1371014F2D3CACFB /* Embed Pods Frameworks */, 194 | 092ADD401B5E275FE404B75C /* Copy Pods Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = BlinkingLabel_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastUpgradeCheck = 0630; 213 | ORGANIZATIONNAME = CocoaPods; 214 | TargetAttributes = { 215 | 607FACCF1AFB9204008FA782 = { 216 | CreatedOnToolsVersion = 6.3.1; 217 | }; 218 | 607FACE41AFB9204008FA782 = { 219 | CreatedOnToolsVersion = 6.3.1; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "BlinkingLabel" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | en, 230 | Base, 231 | ); 232 | mainGroup = 607FACC71AFB9204008FA782; 233 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 234 | projectDirPath = ""; 235 | projectRoot = ""; 236 | targets = ( 237 | 607FACCF1AFB9204008FA782 /* BlinkingLabel_Example */, 238 | 607FACE41AFB9204008FA782 /* BlinkingLabel_Tests */, 239 | ); 240 | }; 241 | /* End PBXProject section */ 242 | 243 | /* Begin PBXResourcesBuildPhase section */ 244 | 607FACCE1AFB9204008FA782 /* Resources */ = { 245 | isa = PBXResourcesBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 249 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 250 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 251 | ); 252 | runOnlyForDeploymentPostprocessing = 0; 253 | }; 254 | 607FACE31AFB9204008FA782 /* Resources */ = { 255 | isa = PBXResourcesBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXResourcesBuildPhase section */ 262 | 263 | /* Begin PBXShellScriptBuildPhase section */ 264 | 092ADD401B5E275FE404B75C /* Copy Pods Resources */ = { 265 | isa = PBXShellScriptBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | ); 269 | inputPaths = ( 270 | ); 271 | name = "Copy Pods Resources"; 272 | outputPaths = ( 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | shellPath = /bin/sh; 276 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-resources.sh\"\n"; 277 | showEnvVarsInLog = 0; 278 | }; 279 | 1152EDA409AAB56D5F8571AB /* Embed Pods Frameworks */ = { 280 | isa = PBXShellScriptBuildPhase; 281 | buildActionMask = 2147483647; 282 | files = ( 283 | ); 284 | inputPaths = ( 285 | ); 286 | name = "Embed Pods Frameworks"; 287 | outputPaths = ( 288 | ); 289 | runOnlyForDeploymentPostprocessing = 0; 290 | shellPath = /bin/sh; 291 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-frameworks.sh\"\n"; 292 | showEnvVarsInLog = 0; 293 | }; 294 | 6AF0C9036DDF05867F28C8BB /* Check Pods Manifest.lock */ = { 295 | isa = PBXShellScriptBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | ); 299 | inputPaths = ( 300 | ); 301 | name = "Check Pods Manifest.lock"; 302 | outputPaths = ( 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | shellPath = /bin/sh; 306 | 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"; 307 | showEnvVarsInLog = 0; 308 | }; 309 | 95C14324796F83A955C7C673 /* Copy Pods Resources */ = { 310 | isa = PBXShellScriptBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | ); 314 | inputPaths = ( 315 | ); 316 | name = "Copy Pods Resources"; 317 | outputPaths = ( 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | shellPath = /bin/sh; 321 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example-resources.sh\"\n"; 322 | showEnvVarsInLog = 0; 323 | }; 324 | 9D70E9CC1371014F2D3CACFB /* Embed Pods Frameworks */ = { 325 | isa = PBXShellScriptBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | ); 329 | inputPaths = ( 330 | ); 331 | name = "Embed Pods Frameworks"; 332 | outputPaths = ( 333 | ); 334 | runOnlyForDeploymentPostprocessing = 0; 335 | shellPath = /bin/sh; 336 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests-frameworks.sh\"\n"; 337 | showEnvVarsInLog = 0; 338 | }; 339 | EBA53BCDEC63CD9E0D298AAE /* Check Pods Manifest.lock */ = { 340 | isa = PBXShellScriptBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | ); 344 | inputPaths = ( 345 | ); 346 | name = "Check Pods Manifest.lock"; 347 | outputPaths = ( 348 | ); 349 | runOnlyForDeploymentPostprocessing = 0; 350 | shellPath = /bin/sh; 351 | 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"; 352 | showEnvVarsInLog = 0; 353 | }; 354 | /* End PBXShellScriptBuildPhase section */ 355 | 356 | /* Begin PBXSourcesBuildPhase section */ 357 | 607FACCC1AFB9204008FA782 /* Sources */ = { 358 | isa = PBXSourcesBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 362 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 363 | ); 364 | runOnlyForDeploymentPostprocessing = 0; 365 | }; 366 | 607FACE11AFB9204008FA782 /* Sources */ = { 367 | isa = PBXSourcesBuildPhase; 368 | buildActionMask = 2147483647; 369 | files = ( 370 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 371 | ); 372 | runOnlyForDeploymentPostprocessing = 0; 373 | }; 374 | /* End PBXSourcesBuildPhase section */ 375 | 376 | /* Begin PBXTargetDependency section */ 377 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 378 | isa = PBXTargetDependency; 379 | target = 607FACCF1AFB9204008FA782 /* BlinkingLabel_Example */; 380 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 381 | }; 382 | /* End PBXTargetDependency section */ 383 | 384 | /* Begin PBXVariantGroup section */ 385 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 386 | isa = PBXVariantGroup; 387 | children = ( 388 | 607FACDA1AFB9204008FA782 /* Base */, 389 | ); 390 | name = Main.storyboard; 391 | sourceTree = ""; 392 | }; 393 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 394 | isa = PBXVariantGroup; 395 | children = ( 396 | 607FACDF1AFB9204008FA782 /* Base */, 397 | ); 398 | name = LaunchScreen.xib; 399 | sourceTree = ""; 400 | }; 401 | /* End PBXVariantGroup section */ 402 | 403 | /* Begin XCBuildConfiguration section */ 404 | 607FACED1AFB9204008FA782 /* Debug */ = { 405 | isa = XCBuildConfiguration; 406 | buildSettings = { 407 | ALWAYS_SEARCH_USER_PATHS = NO; 408 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 409 | CLANG_CXX_LIBRARY = "libc++"; 410 | CLANG_ENABLE_MODULES = YES; 411 | CLANG_ENABLE_OBJC_ARC = YES; 412 | CLANG_WARN_BOOL_CONVERSION = YES; 413 | CLANG_WARN_CONSTANT_CONVERSION = YES; 414 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 415 | CLANG_WARN_EMPTY_BODY = YES; 416 | CLANG_WARN_ENUM_CONVERSION = YES; 417 | CLANG_WARN_INT_CONVERSION = YES; 418 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 419 | CLANG_WARN_UNREACHABLE_CODE = YES; 420 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 421 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 422 | COPY_PHASE_STRIP = NO; 423 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 424 | ENABLE_STRICT_OBJC_MSGSEND = YES; 425 | GCC_C_LANGUAGE_STANDARD = gnu99; 426 | GCC_DYNAMIC_NO_PIC = NO; 427 | GCC_NO_COMMON_BLOCKS = YES; 428 | GCC_OPTIMIZATION_LEVEL = 0; 429 | GCC_PREPROCESSOR_DEFINITIONS = ( 430 | "DEBUG=1", 431 | "$(inherited)", 432 | ); 433 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 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 = 8.3; 441 | MTL_ENABLE_DEBUG_INFO = YES; 442 | ONLY_ACTIVE_ARCH = YES; 443 | SDKROOT = iphoneos; 444 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 445 | }; 446 | name = Debug; 447 | }; 448 | 607FACEE1AFB9204008FA782 /* Release */ = { 449 | isa = XCBuildConfiguration; 450 | buildSettings = { 451 | ALWAYS_SEARCH_USER_PATHS = NO; 452 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 453 | CLANG_CXX_LIBRARY = "libc++"; 454 | CLANG_ENABLE_MODULES = YES; 455 | CLANG_ENABLE_OBJC_ARC = YES; 456 | CLANG_WARN_BOOL_CONVERSION = YES; 457 | CLANG_WARN_CONSTANT_CONVERSION = YES; 458 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 459 | CLANG_WARN_EMPTY_BODY = YES; 460 | CLANG_WARN_ENUM_CONVERSION = YES; 461 | CLANG_WARN_INT_CONVERSION = YES; 462 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 463 | CLANG_WARN_UNREACHABLE_CODE = YES; 464 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 465 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 466 | COPY_PHASE_STRIP = NO; 467 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 468 | ENABLE_NS_ASSERTIONS = NO; 469 | ENABLE_STRICT_OBJC_MSGSEND = YES; 470 | GCC_C_LANGUAGE_STANDARD = gnu99; 471 | GCC_NO_COMMON_BLOCKS = YES; 472 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 473 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 474 | GCC_WARN_UNDECLARED_SELECTOR = YES; 475 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 476 | GCC_WARN_UNUSED_FUNCTION = YES; 477 | GCC_WARN_UNUSED_VARIABLE = YES; 478 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 479 | MTL_ENABLE_DEBUG_INFO = NO; 480 | SDKROOT = iphoneos; 481 | VALIDATE_PRODUCT = YES; 482 | }; 483 | name = Release; 484 | }; 485 | 607FACF01AFB9204008FA782 /* Debug */ = { 486 | isa = XCBuildConfiguration; 487 | baseConfigurationReference = 91A9CE8527C9E89B9B996A58 /* Pods-BlinkingLabel_Example.debug.xcconfig */; 488 | buildSettings = { 489 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 490 | INFOPLIST_FILE = BlinkingLabel/Info.plist; 491 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 492 | MODULE_NAME = ExampleApp; 493 | PRODUCT_NAME = "$(TARGET_NAME)"; 494 | }; 495 | name = Debug; 496 | }; 497 | 607FACF11AFB9204008FA782 /* Release */ = { 498 | isa = XCBuildConfiguration; 499 | baseConfigurationReference = 32204DAA5A0155CCB4186362 /* Pods-BlinkingLabel_Example.release.xcconfig */; 500 | buildSettings = { 501 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 502 | INFOPLIST_FILE = BlinkingLabel/Info.plist; 503 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 504 | MODULE_NAME = ExampleApp; 505 | PRODUCT_NAME = "$(TARGET_NAME)"; 506 | }; 507 | name = Release; 508 | }; 509 | 607FACF31AFB9204008FA782 /* Debug */ = { 510 | isa = XCBuildConfiguration; 511 | baseConfigurationReference = 7C7AEDED0F0575C8B80D9D9B /* Pods-BlinkingLabel_Tests.debug.xcconfig */; 512 | buildSettings = { 513 | BUNDLE_LOADER = "$(TEST_HOST)"; 514 | FRAMEWORK_SEARCH_PATHS = ( 515 | "$(SDKROOT)/Developer/Library/Frameworks", 516 | "$(inherited)", 517 | ); 518 | GCC_PREPROCESSOR_DEFINITIONS = ( 519 | "DEBUG=1", 520 | "$(inherited)", 521 | ); 522 | INFOPLIST_FILE = Tests/Info.plist; 523 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 524 | PRODUCT_NAME = "$(TARGET_NAME)"; 525 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BlinkingLabel_Example.app/BlinkingLabel_Example"; 526 | }; 527 | name = Debug; 528 | }; 529 | 607FACF41AFB9204008FA782 /* Release */ = { 530 | isa = XCBuildConfiguration; 531 | baseConfigurationReference = 38B0EAAFC86C41F59D7B6851 /* Pods-BlinkingLabel_Tests.release.xcconfig */; 532 | buildSettings = { 533 | BUNDLE_LOADER = "$(TEST_HOST)"; 534 | FRAMEWORK_SEARCH_PATHS = ( 535 | "$(SDKROOT)/Developer/Library/Frameworks", 536 | "$(inherited)", 537 | ); 538 | INFOPLIST_FILE = Tests/Info.plist; 539 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 540 | PRODUCT_NAME = "$(TARGET_NAME)"; 541 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BlinkingLabel_Example.app/BlinkingLabel_Example"; 542 | }; 543 | name = Release; 544 | }; 545 | /* End XCBuildConfiguration section */ 546 | 547 | /* Begin XCConfigurationList section */ 548 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "BlinkingLabel" */ = { 549 | isa = XCConfigurationList; 550 | buildConfigurations = ( 551 | 607FACED1AFB9204008FA782 /* Debug */, 552 | 607FACEE1AFB9204008FA782 /* Release */, 553 | ); 554 | defaultConfigurationIsVisible = 0; 555 | defaultConfigurationName = Release; 556 | }; 557 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BlinkingLabel_Example" */ = { 558 | isa = XCConfigurationList; 559 | buildConfigurations = ( 560 | 607FACF01AFB9204008FA782 /* Debug */, 561 | 607FACF11AFB9204008FA782 /* Release */, 562 | ); 563 | defaultConfigurationIsVisible = 0; 564 | defaultConfigurationName = Release; 565 | }; 566 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "BlinkingLabel_Tests" */ = { 567 | isa = XCConfigurationList; 568 | buildConfigurations = ( 569 | 607FACF31AFB9204008FA782 /* Debug */, 570 | 607FACF41AFB9204008FA782 /* Release */, 571 | ); 572 | defaultConfigurationIsVisible = 0; 573 | defaultConfigurationName = Release; 574 | }; 575 | /* End XCConfigurationList section */ 576 | }; 577 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 578 | } 579 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 317A3EDC5793819B2A898340 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61FCAC417645E07618DD8349 /* Foundation.framework */; }; 11 | 34744563582FECF11AABE271 /* BlinkingLabel.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7831A7D9C7F376921D8545A3 /* BlinkingLabel.bundle */; }; 12 | 4A8445B54F542A8C47F823EA /* BlinkingLabel.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9E354476C078876915906FBF /* BlinkingLabel.bundle */; }; 13 | 4B33B065544186727A2FAC0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61FCAC417645E07618DD8349 /* Foundation.framework */; }; 14 | 5ABC904AB46471B779CEB730 /* BlinkingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF989D98079D9EECC56B6B8C /* BlinkingLabel.swift */; }; 15 | 674AEADFE3A066F467067A65 /* Pods-BlinkingLabel_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4988D489BBABADBF0D65F6FE /* Pods-BlinkingLabel_Example-dummy.m */; }; 16 | 7137D287F7B9ACA3AD9BB530 /* Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38BE8865DE5F05581058D2FA /* Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m */; }; 17 | 88727EDD0514A93C97A5896D /* Pods-BlinkingLabel_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 20E8540A97DED3C02AC5F389 /* Pods-BlinkingLabel_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | 96504C64617AFB17888ACE26 /* Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 239FC94ECC90BF0F3AD99509 /* Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | A511934422ED5354A988F328 /* Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA64275619075DAB69B9C16 /* Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m */; }; 20 | A55A29D05B57047BAC816572 /* BlinkingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF989D98079D9EECC56B6B8C /* BlinkingLabel.swift */; }; 21 | B3504F855096805F5BDDBD59 /* Pods-BlinkingLabel_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B489A2102260DAF1206495A /* Pods-BlinkingLabel_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | BC9059E902044584AE650AC7 /* Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 672AF09A9768E0A4D8C207D0 /* Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | CFD9B1CE585A07F142D13FCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61FCAC417645E07618DD8349 /* Foundation.framework */; }; 24 | E1A0732921963E974D87CA6E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61FCAC417645E07618DD8349 /* Foundation.framework */; }; 25 | FEBCEFB003407BE6442BC8D1 /* Pods-BlinkingLabel_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94E254661BFDC68ECC34FF4F /* Pods-BlinkingLabel_Tests-dummy.m */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 0F64D16CD6836EA60FF0229B /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 0AD685150129A0F1C84515A4 /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 58E3A072D97757C424E21E0E; 34 | remoteInfo = "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel"; 35 | }; 36 | 13BC38BF6365E2FB1787C54F /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = 0AD685150129A0F1C84515A4 /* Project object */; 39 | proxyType = 1; 40 | remoteGlobalIDString = C0535F4EDC4CC1D1C249669D; 41 | remoteInfo = "Pods-BlinkingLabel_Example-BlinkingLabel"; 42 | }; 43 | 7B22D1065E43D4F3EE6F25FC /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = 0AD685150129A0F1C84515A4 /* Project object */; 46 | proxyType = 1; 47 | remoteGlobalIDString = 9FF121B1335B0D4E30B93D13; 48 | remoteInfo = "Pods-BlinkingLabel_Tests-BlinkingLabel"; 49 | }; 50 | CA1B6092FFE87C7225E9F2D3 /* PBXContainerItemProxy */ = { 51 | isa = PBXContainerItemProxy; 52 | containerPortal = 0AD685150129A0F1C84515A4 /* Project object */; 53 | proxyType = 1; 54 | remoteGlobalIDString = F68B07971F139302FB665789; 55 | remoteInfo = "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel"; 56 | }; 57 | /* End PBXContainerItemProxy section */ 58 | 59 | /* Begin PBXFileReference section */ 60 | 0272C19510F4644DB0DDE18F /* Pods-BlinkingLabel_Example-BlinkingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BlinkingLabel_Example-BlinkingLabel.modulemap"; sourceTree = ""; }; 61 | 035DE1E638AB768637F3296D /* Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch"; sourceTree = ""; }; 62 | 0889B72C3A11A4B96E6B2D86 /* Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch"; sourceTree = ""; }; 63 | 0D1CDB829C6C677AD17521A5 /* Pods-BlinkingLabel_Example-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Example-environment.h"; sourceTree = ""; }; 64 | 1631D409D3BE7F59B0EC2DB0 /* Pods-BlinkingLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Tests.release.xcconfig"; sourceTree = ""; }; 65 | 20E8540A97DED3C02AC5F389 /* Pods-BlinkingLabel_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Example-umbrella.h"; sourceTree = ""; }; 66 | 239FC94ECC90BF0F3AD99509 /* Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h"; sourceTree = ""; }; 67 | 3297EBB3035853261C74DB59 /* Pods-BlinkingLabel_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BlinkingLabel_Example.modulemap"; sourceTree = ""; }; 68 | 32D71951C789F6DF2DFFDC3D /* Pods-BlinkingLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Example.release.xcconfig"; sourceTree = ""; }; 69 | 38BE8865DE5F05581058D2FA /* Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m"; sourceTree = ""; }; 70 | 488D38A8E267E407047C3FF6 /* Pods-BlinkingLabel_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BlinkingLabel_Example-acknowledgements.markdown"; sourceTree = ""; }; 71 | 4988D489BBABADBF0D65F6FE /* Pods-BlinkingLabel_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BlinkingLabel_Example-dummy.m"; sourceTree = ""; }; 72 | 4FA64275619075DAB69B9C16 /* Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m"; sourceTree = ""; }; 73 | 5F36F321D493467891247410 /* Pods-BlinkingLabel_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BlinkingLabel_Example-acknowledgements.plist"; sourceTree = ""; }; 74 | 6035016EFDB28914221A373D /* Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig"; sourceTree = ""; }; 75 | 61FCAC417645E07618DD8349 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 76 | 64DB9706588DCCB5FCF696D9 /* Pods-BlinkingLabel_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BlinkingLabel_Tests.modulemap"; sourceTree = ""; }; 77 | 658C070B3647CC1E126A7277 /* Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap"; sourceTree = ""; }; 78 | 661C10A685BE7D4F56D39969 /* Pods-BlinkingLabel_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BlinkingLabel_Tests-resources.sh"; sourceTree = ""; }; 79 | 66D2F2F8C3EF9822B48E539F /* Pods-BlinkingLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Example.debug.xcconfig"; sourceTree = ""; }; 80 | 672AF09A9768E0A4D8C207D0 /* Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h"; sourceTree = ""; }; 81 | 70FDB109AA5A9D9A60DCB02D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 82 | 7694FA4D9F0F920284881DB7 /* BlinkingLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BlinkingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 83 | 7831A7D9C7F376921D8545A3 /* BlinkingLabel.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BlinkingLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 84 | 7A8087016C7DF5F8FDA019BE /* BlinkingLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BlinkingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 85 | 7B489A2102260DAF1206495A /* Pods-BlinkingLabel_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Tests-umbrella.h"; sourceTree = ""; }; 86 | 7C7390C13E4C5E05D3CD81EA /* Pods-BlinkingLabel_Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BlinkingLabel_Tests-environment.h"; sourceTree = ""; }; 87 | 906D2D4E260093020BA00E55 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 88 | 94E254661BFDC68ECC34FF4F /* Pods-BlinkingLabel_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BlinkingLabel_Tests-dummy.m"; sourceTree = ""; }; 89 | 9D5AFB11D7482CFC7BA437C4 /* Pods-BlinkingLabel_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BlinkingLabel_Tests-acknowledgements.markdown"; sourceTree = ""; }; 90 | 9E354476C078876915906FBF /* BlinkingLabel.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BlinkingLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 91 | AAF9CA25166912543C368287 /* Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig"; sourceTree = ""; }; 92 | AC3769D9964BFD88CE6AC7C9 /* Pods-BlinkingLabel_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BlinkingLabel_Example-frameworks.sh"; sourceTree = ""; }; 93 | B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig"; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig"; sourceTree = ""; }; 94 | BF989D98079D9EECC56B6B8C /* BlinkingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BlinkingLabel.swift; sourceTree = ""; }; 95 | C1AFC9086432C70CD35F3674 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 96 | C8D15128FA0B0CF546B0AA6E /* Pods_BlinkingLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BlinkingLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 97 | C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig"; sourceTree = ""; }; 98 | D8F3637AEAA5542CB9B68DC5 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 99 | DAA3BB09EF41CBB345E65150 /* Pods-BlinkingLabel_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BlinkingLabel_Example-resources.sh"; sourceTree = ""; }; 100 | E13886226039C722D86B29B6 /* Pods_BlinkingLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BlinkingLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 101 | E4F95DFF947B029C036D5756 /* Pods-BlinkingLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BlinkingLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 102 | EE4035A83F12C6F3B6581AF1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Pods-BlinkingLabel_Tests-BlinkingLabel/Info.plist"; sourceTree = ""; }; 103 | F429FDF363C1D7C69B77791A /* Pods-BlinkingLabel_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BlinkingLabel_Tests-frameworks.sh"; sourceTree = ""; }; 104 | FAA3BA546C6F6E51CDE059DA /* Pods-BlinkingLabel_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BlinkingLabel_Tests-acknowledgements.plist"; sourceTree = ""; }; 105 | /* End PBXFileReference section */ 106 | 107 | /* Begin PBXFrameworksBuildPhase section */ 108 | 19CCD9DC4C41A414840E18D5 /* Frameworks */ = { 109 | isa = PBXFrameworksBuildPhase; 110 | buildActionMask = 2147483647; 111 | files = ( 112 | 4B33B065544186727A2FAC0E /* Foundation.framework in Frameworks */, 113 | ); 114 | runOnlyForDeploymentPostprocessing = 0; 115 | }; 116 | 23B2154A05808913FF68D825 /* Frameworks */ = { 117 | isa = PBXFrameworksBuildPhase; 118 | buildActionMask = 2147483647; 119 | files = ( 120 | E1A0732921963E974D87CA6E /* Foundation.framework in Frameworks */, 121 | ); 122 | runOnlyForDeploymentPostprocessing = 0; 123 | }; 124 | 4E3B98C3F7B3159391EE14DE /* Frameworks */ = { 125 | isa = PBXFrameworksBuildPhase; 126 | buildActionMask = 2147483647; 127 | files = ( 128 | CFD9B1CE585A07F142D13FCE /* Foundation.framework in Frameworks */, 129 | ); 130 | runOnlyForDeploymentPostprocessing = 0; 131 | }; 132 | 6FBDB540599091712FBADA5F /* Frameworks */ = { 133 | isa = PBXFrameworksBuildPhase; 134 | buildActionMask = 2147483647; 135 | files = ( 136 | ); 137 | runOnlyForDeploymentPostprocessing = 0; 138 | }; 139 | DAEA69B5773A09060D01498A /* Frameworks */ = { 140 | isa = PBXFrameworksBuildPhase; 141 | buildActionMask = 2147483647; 142 | files = ( 143 | 317A3EDC5793819B2A898340 /* Foundation.framework in Frameworks */, 144 | ); 145 | runOnlyForDeploymentPostprocessing = 0; 146 | }; 147 | E2978C6D8CDB11C5BA0B96DC /* Frameworks */ = { 148 | isa = PBXFrameworksBuildPhase; 149 | buildActionMask = 2147483647; 150 | files = ( 151 | ); 152 | runOnlyForDeploymentPostprocessing = 0; 153 | }; 154 | /* End PBXFrameworksBuildPhase section */ 155 | 156 | /* Begin PBXGroup section */ 157 | 19698525E18242EBD9415453 /* Classes */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | BF989D98079D9EECC56B6B8C /* BlinkingLabel.swift */, 161 | ); 162 | path = Classes; 163 | sourceTree = ""; 164 | }; 165 | 22454B410CA7385DB3B447D2 /* Pods-BlinkingLabel_Tests */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 70FDB109AA5A9D9A60DCB02D /* Info.plist */, 169 | 64DB9706588DCCB5FCF696D9 /* Pods-BlinkingLabel_Tests.modulemap */, 170 | 9D5AFB11D7482CFC7BA437C4 /* Pods-BlinkingLabel_Tests-acknowledgements.markdown */, 171 | FAA3BA546C6F6E51CDE059DA /* Pods-BlinkingLabel_Tests-acknowledgements.plist */, 172 | 94E254661BFDC68ECC34FF4F /* Pods-BlinkingLabel_Tests-dummy.m */, 173 | 7C7390C13E4C5E05D3CD81EA /* Pods-BlinkingLabel_Tests-environment.h */, 174 | F429FDF363C1D7C69B77791A /* Pods-BlinkingLabel_Tests-frameworks.sh */, 175 | 661C10A685BE7D4F56D39969 /* Pods-BlinkingLabel_Tests-resources.sh */, 176 | 7B489A2102260DAF1206495A /* Pods-BlinkingLabel_Tests-umbrella.h */, 177 | E4F95DFF947B029C036D5756 /* Pods-BlinkingLabel_Tests.debug.xcconfig */, 178 | 1631D409D3BE7F59B0EC2DB0 /* Pods-BlinkingLabel_Tests.release.xcconfig */, 179 | ); 180 | name = "Pods-BlinkingLabel_Tests"; 181 | path = "Target Support Files/Pods-BlinkingLabel_Tests"; 182 | sourceTree = ""; 183 | }; 184 | 2C61E99BBE3E33677DFBE874 /* Targets Support Files */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | C79570D8BCCC0D369D587484 /* Pods-BlinkingLabel_Example */, 188 | 22454B410CA7385DB3B447D2 /* Pods-BlinkingLabel_Tests */, 189 | ); 190 | name = "Targets Support Files"; 191 | sourceTree = ""; 192 | }; 193 | 41C647C28A6B1E83417AF68B /* iOS */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | 61FCAC417645E07618DD8349 /* Foundation.framework */, 197 | ); 198 | name = iOS; 199 | sourceTree = ""; 200 | }; 201 | 41E3112F900969F730DC482D /* Products */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | 9E354476C078876915906FBF /* BlinkingLabel.bundle */, 205 | 7831A7D9C7F376921D8545A3 /* BlinkingLabel.bundle */, 206 | 7694FA4D9F0F920284881DB7 /* BlinkingLabel.framework */, 207 | 7A8087016C7DF5F8FDA019BE /* BlinkingLabel.framework */, 208 | C8D15128FA0B0CF546B0AA6E /* Pods_BlinkingLabel_Example.framework */, 209 | E13886226039C722D86B29B6 /* Pods_BlinkingLabel_Tests.framework */, 210 | ); 211 | name = Products; 212 | sourceTree = ""; 213 | }; 214 | 4D2CE90D7F290A116BBF2A5C /* Development Pods */ = { 215 | isa = PBXGroup; 216 | children = ( 217 | 55C50CB9D47B109D7DFF56C0 /* BlinkingLabel */, 218 | ); 219 | name = "Development Pods"; 220 | sourceTree = ""; 221 | }; 222 | 55C50CB9D47B109D7DFF56C0 /* BlinkingLabel */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | 7AA1CB86044D029E58755CF9 /* Pod */, 226 | FF61CB7B2BF189A1E2124C1B /* Support Files */, 227 | ); 228 | name = BlinkingLabel; 229 | path = ../..; 230 | sourceTree = ""; 231 | }; 232 | 7AA1CB86044D029E58755CF9 /* Pod */ = { 233 | isa = PBXGroup; 234 | children = ( 235 | 19698525E18242EBD9415453 /* Classes */, 236 | ); 237 | path = Pod; 238 | sourceTree = ""; 239 | }; 240 | C79570D8BCCC0D369D587484 /* Pods-BlinkingLabel_Example */ = { 241 | isa = PBXGroup; 242 | children = ( 243 | C1AFC9086432C70CD35F3674 /* Info.plist */, 244 | 3297EBB3035853261C74DB59 /* Pods-BlinkingLabel_Example.modulemap */, 245 | 488D38A8E267E407047C3FF6 /* Pods-BlinkingLabel_Example-acknowledgements.markdown */, 246 | 5F36F321D493467891247410 /* Pods-BlinkingLabel_Example-acknowledgements.plist */, 247 | 4988D489BBABADBF0D65F6FE /* Pods-BlinkingLabel_Example-dummy.m */, 248 | 0D1CDB829C6C677AD17521A5 /* Pods-BlinkingLabel_Example-environment.h */, 249 | AC3769D9964BFD88CE6AC7C9 /* Pods-BlinkingLabel_Example-frameworks.sh */, 250 | DAA3BB09EF41CBB345E65150 /* Pods-BlinkingLabel_Example-resources.sh */, 251 | 20E8540A97DED3C02AC5F389 /* Pods-BlinkingLabel_Example-umbrella.h */, 252 | 66D2F2F8C3EF9822B48E539F /* Pods-BlinkingLabel_Example.debug.xcconfig */, 253 | 32D71951C789F6DF2DFFDC3D /* Pods-BlinkingLabel_Example.release.xcconfig */, 254 | ); 255 | name = "Pods-BlinkingLabel_Example"; 256 | path = "Target Support Files/Pods-BlinkingLabel_Example"; 257 | sourceTree = ""; 258 | }; 259 | EDF204CFBE53BD6C16DCA088 /* Frameworks */ = { 260 | isa = PBXGroup; 261 | children = ( 262 | 41C647C28A6B1E83417AF68B /* iOS */, 263 | ); 264 | name = Frameworks; 265 | sourceTree = ""; 266 | }; 267 | FE619336338BB9E7C36C7CD5 = { 268 | isa = PBXGroup; 269 | children = ( 270 | D8F3637AEAA5542CB9B68DC5 /* Podfile */, 271 | 4D2CE90D7F290A116BBF2A5C /* Development Pods */, 272 | EDF204CFBE53BD6C16DCA088 /* Frameworks */, 273 | 41E3112F900969F730DC482D /* Products */, 274 | 2C61E99BBE3E33677DFBE874 /* Targets Support Files */, 275 | ); 276 | sourceTree = ""; 277 | }; 278 | FF61CB7B2BF189A1E2124C1B /* Support Files */ = { 279 | isa = PBXGroup; 280 | children = ( 281 | 906D2D4E260093020BA00E55 /* Info.plist */, 282 | EE4035A83F12C6F3B6581AF1 /* Info.plist */, 283 | 0272C19510F4644DB0DDE18F /* Pods-BlinkingLabel_Example-BlinkingLabel.modulemap */, 284 | AAF9CA25166912543C368287 /* Pods-BlinkingLabel_Example-BlinkingLabel.xcconfig */, 285 | C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */, 286 | 38BE8865DE5F05581058D2FA /* Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m */, 287 | 035DE1E638AB768637F3296D /* Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch */, 288 | 672AF09A9768E0A4D8C207D0 /* Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h */, 289 | 658C070B3647CC1E126A7277 /* Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap */, 290 | 6035016EFDB28914221A373D /* Pods-BlinkingLabel_Tests-BlinkingLabel.xcconfig */, 291 | B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */, 292 | 4FA64275619075DAB69B9C16 /* Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m */, 293 | 0889B72C3A11A4B96E6B2D86 /* Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch */, 294 | 239FC94ECC90BF0F3AD99509 /* Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h */, 295 | ); 296 | name = "Support Files"; 297 | path = "Example/Pods/Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel"; 298 | sourceTree = ""; 299 | }; 300 | /* End PBXGroup section */ 301 | 302 | /* Begin PBXHeadersBuildPhase section */ 303 | 15D95EA9EC2387FEE1B22087 /* Headers */ = { 304 | isa = PBXHeadersBuildPhase; 305 | buildActionMask = 2147483647; 306 | files = ( 307 | 88727EDD0514A93C97A5896D /* Pods-BlinkingLabel_Example-umbrella.h in Headers */, 308 | ); 309 | runOnlyForDeploymentPostprocessing = 0; 310 | }; 311 | 37C726F9FF05C503B4C76D82 /* Headers */ = { 312 | isa = PBXHeadersBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | 96504C64617AFB17888ACE26 /* Pods-BlinkingLabel_Tests-BlinkingLabel-umbrella.h in Headers */, 316 | ); 317 | runOnlyForDeploymentPostprocessing = 0; 318 | }; 319 | 3824EED6CB32868F4682197A /* Headers */ = { 320 | isa = PBXHeadersBuildPhase; 321 | buildActionMask = 2147483647; 322 | files = ( 323 | BC9059E902044584AE650AC7 /* Pods-BlinkingLabel_Example-BlinkingLabel-umbrella.h in Headers */, 324 | ); 325 | runOnlyForDeploymentPostprocessing = 0; 326 | }; 327 | 4AB41BA4F2249D6311E8F3CD /* Headers */ = { 328 | isa = PBXHeadersBuildPhase; 329 | buildActionMask = 2147483647; 330 | files = ( 331 | B3504F855096805F5BDDBD59 /* Pods-BlinkingLabel_Tests-umbrella.h in Headers */, 332 | ); 333 | runOnlyForDeploymentPostprocessing = 0; 334 | }; 335 | /* End PBXHeadersBuildPhase section */ 336 | 337 | /* Begin PBXNativeTarget section */ 338 | 58E3A072D97757C424E21E0E /* Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel */ = { 339 | isa = PBXNativeTarget; 340 | buildConfigurationList = 931CAE1B030896B981983F15 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel" */; 341 | buildPhases = ( 342 | 083F7DBDB16A561235E96AF9 /* Sources */, 343 | E2978C6D8CDB11C5BA0B96DC /* Frameworks */, 344 | EA1A96FB09B8501C5296B229 /* Resources */, 345 | ); 346 | buildRules = ( 347 | ); 348 | dependencies = ( 349 | ); 350 | name = "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel"; 351 | productName = "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel"; 352 | productReference = 7831A7D9C7F376921D8545A3 /* BlinkingLabel.bundle */; 353 | productType = "com.apple.product-type.bundle"; 354 | }; 355 | 5F859AF01681A4FCCEFA5FB2 /* Pods-BlinkingLabel_Tests */ = { 356 | isa = PBXNativeTarget; 357 | buildConfigurationList = 950296B1BE3B8D18422DC712 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests" */; 358 | buildPhases = ( 359 | 5F40A7B4EFEED6D731CCBD67 /* Sources */, 360 | 23B2154A05808913FF68D825 /* Frameworks */, 361 | 4AB41BA4F2249D6311E8F3CD /* Headers */, 362 | ); 363 | buildRules = ( 364 | ); 365 | dependencies = ( 366 | FA0F080829A305CFB203ABF9 /* PBXTargetDependency */, 367 | ); 368 | name = "Pods-BlinkingLabel_Tests"; 369 | productName = "Pods-BlinkingLabel_Tests"; 370 | productReference = E13886226039C722D86B29B6 /* Pods_BlinkingLabel_Tests.framework */; 371 | productType = "com.apple.product-type.framework"; 372 | }; 373 | 9FF121B1335B0D4E30B93D13 /* Pods-BlinkingLabel_Tests-BlinkingLabel */ = { 374 | isa = PBXNativeTarget; 375 | buildConfigurationList = 4EE6D8E659EAEF0584F0F659 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests-BlinkingLabel" */; 376 | buildPhases = ( 377 | C9691C202A3FDE5812417D2A /* Sources */, 378 | DAEA69B5773A09060D01498A /* Frameworks */, 379 | 874E3A12DC06FD7F050645B0 /* Resources */, 380 | 37C726F9FF05C503B4C76D82 /* Headers */, 381 | ); 382 | buildRules = ( 383 | ); 384 | dependencies = ( 385 | 4A079563F96DE05DE4A9F30F /* PBXTargetDependency */, 386 | ); 387 | name = "Pods-BlinkingLabel_Tests-BlinkingLabel"; 388 | productName = "Pods-BlinkingLabel_Tests-BlinkingLabel"; 389 | productReference = 7A8087016C7DF5F8FDA019BE /* BlinkingLabel.framework */; 390 | productType = "com.apple.product-type.framework"; 391 | }; 392 | B61F4F7F1301D61C73121588 /* Pods-BlinkingLabel_Example */ = { 393 | isa = PBXNativeTarget; 394 | buildConfigurationList = 2C0337C5E32EC72B72C12C77 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example" */; 395 | buildPhases = ( 396 | 3BA15174E699DD8CE8860BCD /* Sources */, 397 | 4E3B98C3F7B3159391EE14DE /* Frameworks */, 398 | 15D95EA9EC2387FEE1B22087 /* Headers */, 399 | ); 400 | buildRules = ( 401 | ); 402 | dependencies = ( 403 | E2C1F59430D560B730E8B2EC /* PBXTargetDependency */, 404 | ); 405 | name = "Pods-BlinkingLabel_Example"; 406 | productName = "Pods-BlinkingLabel_Example"; 407 | productReference = C8D15128FA0B0CF546B0AA6E /* Pods_BlinkingLabel_Example.framework */; 408 | productType = "com.apple.product-type.framework"; 409 | }; 410 | C0535F4EDC4CC1D1C249669D /* Pods-BlinkingLabel_Example-BlinkingLabel */ = { 411 | isa = PBXNativeTarget; 412 | buildConfigurationList = 57EC23A2410962FECAF06636 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example-BlinkingLabel" */; 413 | buildPhases = ( 414 | AF6F91C85F3A10FA4610D8E9 /* Sources */, 415 | 19CCD9DC4C41A414840E18D5 /* Frameworks */, 416 | BBA85226394A9B67ED4C613F /* Resources */, 417 | 3824EED6CB32868F4682197A /* Headers */, 418 | ); 419 | buildRules = ( 420 | ); 421 | dependencies = ( 422 | E7755731D1A88C9F7BB60F03 /* PBXTargetDependency */, 423 | ); 424 | name = "Pods-BlinkingLabel_Example-BlinkingLabel"; 425 | productName = "Pods-BlinkingLabel_Example-BlinkingLabel"; 426 | productReference = 7694FA4D9F0F920284881DB7 /* BlinkingLabel.framework */; 427 | productType = "com.apple.product-type.framework"; 428 | }; 429 | F68B07971F139302FB665789 /* Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel */ = { 430 | isa = PBXNativeTarget; 431 | buildConfigurationList = A87EDD396C0EE559935364A2 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel" */; 432 | buildPhases = ( 433 | AE44FBF573EF1171E20ECF7D /* Sources */, 434 | 6FBDB540599091712FBADA5F /* Frameworks */, 435 | 167B3F054FD970F57B8CA84F /* Resources */, 436 | ); 437 | buildRules = ( 438 | ); 439 | dependencies = ( 440 | ); 441 | name = "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel"; 442 | productName = "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel"; 443 | productReference = 9E354476C078876915906FBF /* BlinkingLabel.bundle */; 444 | productType = "com.apple.product-type.bundle"; 445 | }; 446 | /* End PBXNativeTarget section */ 447 | 448 | /* Begin PBXProject section */ 449 | 0AD685150129A0F1C84515A4 /* Project object */ = { 450 | isa = PBXProject; 451 | attributes = { 452 | LastUpgradeCheck = 0640; 453 | }; 454 | buildConfigurationList = F1C58A1E90E683A0DFA6D5B4 /* Build configuration list for PBXProject "Pods" */; 455 | compatibilityVersion = "Xcode 3.2"; 456 | developmentRegion = English; 457 | hasScannedForEncodings = 0; 458 | knownRegions = ( 459 | en, 460 | ); 461 | mainGroup = FE619336338BB9E7C36C7CD5; 462 | productRefGroup = 41E3112F900969F730DC482D /* Products */; 463 | projectDirPath = ""; 464 | projectRoot = ""; 465 | targets = ( 466 | B61F4F7F1301D61C73121588 /* Pods-BlinkingLabel_Example */, 467 | C0535F4EDC4CC1D1C249669D /* Pods-BlinkingLabel_Example-BlinkingLabel */, 468 | 58E3A072D97757C424E21E0E /* Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel */, 469 | 5F859AF01681A4FCCEFA5FB2 /* Pods-BlinkingLabel_Tests */, 470 | 9FF121B1335B0D4E30B93D13 /* Pods-BlinkingLabel_Tests-BlinkingLabel */, 471 | F68B07971F139302FB665789 /* Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel */, 472 | ); 473 | }; 474 | /* End PBXProject section */ 475 | 476 | /* Begin PBXResourcesBuildPhase section */ 477 | 167B3F054FD970F57B8CA84F /* Resources */ = { 478 | isa = PBXResourcesBuildPhase; 479 | buildActionMask = 2147483647; 480 | files = ( 481 | ); 482 | runOnlyForDeploymentPostprocessing = 0; 483 | }; 484 | 874E3A12DC06FD7F050645B0 /* Resources */ = { 485 | isa = PBXResourcesBuildPhase; 486 | buildActionMask = 2147483647; 487 | files = ( 488 | 4A8445B54F542A8C47F823EA /* BlinkingLabel.bundle in Resources */, 489 | ); 490 | runOnlyForDeploymentPostprocessing = 0; 491 | }; 492 | BBA85226394A9B67ED4C613F /* Resources */ = { 493 | isa = PBXResourcesBuildPhase; 494 | buildActionMask = 2147483647; 495 | files = ( 496 | 34744563582FECF11AABE271 /* BlinkingLabel.bundle in Resources */, 497 | ); 498 | runOnlyForDeploymentPostprocessing = 0; 499 | }; 500 | EA1A96FB09B8501C5296B229 /* Resources */ = { 501 | isa = PBXResourcesBuildPhase; 502 | buildActionMask = 2147483647; 503 | files = ( 504 | ); 505 | runOnlyForDeploymentPostprocessing = 0; 506 | }; 507 | /* End PBXResourcesBuildPhase section */ 508 | 509 | /* Begin PBXSourcesBuildPhase section */ 510 | 083F7DBDB16A561235E96AF9 /* Sources */ = { 511 | isa = PBXSourcesBuildPhase; 512 | buildActionMask = 2147483647; 513 | files = ( 514 | ); 515 | runOnlyForDeploymentPostprocessing = 0; 516 | }; 517 | 3BA15174E699DD8CE8860BCD /* Sources */ = { 518 | isa = PBXSourcesBuildPhase; 519 | buildActionMask = 2147483647; 520 | files = ( 521 | 674AEADFE3A066F467067A65 /* Pods-BlinkingLabel_Example-dummy.m in Sources */, 522 | ); 523 | runOnlyForDeploymentPostprocessing = 0; 524 | }; 525 | 5F40A7B4EFEED6D731CCBD67 /* Sources */ = { 526 | isa = PBXSourcesBuildPhase; 527 | buildActionMask = 2147483647; 528 | files = ( 529 | FEBCEFB003407BE6442BC8D1 /* Pods-BlinkingLabel_Tests-dummy.m in Sources */, 530 | ); 531 | runOnlyForDeploymentPostprocessing = 0; 532 | }; 533 | AE44FBF573EF1171E20ECF7D /* Sources */ = { 534 | isa = PBXSourcesBuildPhase; 535 | buildActionMask = 2147483647; 536 | files = ( 537 | ); 538 | runOnlyForDeploymentPostprocessing = 0; 539 | }; 540 | AF6F91C85F3A10FA4610D8E9 /* Sources */ = { 541 | isa = PBXSourcesBuildPhase; 542 | buildActionMask = 2147483647; 543 | files = ( 544 | 5ABC904AB46471B779CEB730 /* BlinkingLabel.swift in Sources */, 545 | 7137D287F7B9ACA3AD9BB530 /* Pods-BlinkingLabel_Example-BlinkingLabel-dummy.m in Sources */, 546 | ); 547 | runOnlyForDeploymentPostprocessing = 0; 548 | }; 549 | C9691C202A3FDE5812417D2A /* Sources */ = { 550 | isa = PBXSourcesBuildPhase; 551 | buildActionMask = 2147483647; 552 | files = ( 553 | A55A29D05B57047BAC816572 /* BlinkingLabel.swift in Sources */, 554 | A511934422ED5354A988F328 /* Pods-BlinkingLabel_Tests-BlinkingLabel-dummy.m in Sources */, 555 | ); 556 | runOnlyForDeploymentPostprocessing = 0; 557 | }; 558 | /* End PBXSourcesBuildPhase section */ 559 | 560 | /* Begin PBXTargetDependency section */ 561 | 4A079563F96DE05DE4A9F30F /* PBXTargetDependency */ = { 562 | isa = PBXTargetDependency; 563 | name = "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel"; 564 | target = F68B07971F139302FB665789 /* Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel */; 565 | targetProxy = CA1B6092FFE87C7225E9F2D3 /* PBXContainerItemProxy */; 566 | }; 567 | E2C1F59430D560B730E8B2EC /* PBXTargetDependency */ = { 568 | isa = PBXTargetDependency; 569 | name = "Pods-BlinkingLabel_Example-BlinkingLabel"; 570 | target = C0535F4EDC4CC1D1C249669D /* Pods-BlinkingLabel_Example-BlinkingLabel */; 571 | targetProxy = 13BC38BF6365E2FB1787C54F /* PBXContainerItemProxy */; 572 | }; 573 | E7755731D1A88C9F7BB60F03 /* PBXTargetDependency */ = { 574 | isa = PBXTargetDependency; 575 | name = "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel"; 576 | target = 58E3A072D97757C424E21E0E /* Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel */; 577 | targetProxy = 0F64D16CD6836EA60FF0229B /* PBXContainerItemProxy */; 578 | }; 579 | FA0F080829A305CFB203ABF9 /* PBXTargetDependency */ = { 580 | isa = PBXTargetDependency; 581 | name = "Pods-BlinkingLabel_Tests-BlinkingLabel"; 582 | target = 9FF121B1335B0D4E30B93D13 /* Pods-BlinkingLabel_Tests-BlinkingLabel */; 583 | targetProxy = 7B22D1065E43D4F3EE6F25FC /* PBXContainerItemProxy */; 584 | }; 585 | /* End PBXTargetDependency section */ 586 | 587 | /* Begin XCBuildConfiguration section */ 588 | 02720C156CDD36B143DF8C88 /* Debug */ = { 589 | isa = XCBuildConfiguration; 590 | baseConfigurationReference = C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */; 591 | buildSettings = { 592 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Example"; 593 | ENABLE_STRICT_OBJC_MSGSEND = YES; 594 | PRODUCT_NAME = BlinkingLabel; 595 | SDKROOT = iphoneos; 596 | SKIP_INSTALL = YES; 597 | WRAPPER_EXTENSION = bundle; 598 | }; 599 | name = Debug; 600 | }; 601 | 050750A6789C94BD950BFDBE /* Debug */ = { 602 | isa = XCBuildConfiguration; 603 | buildSettings = { 604 | ALWAYS_SEARCH_USER_PATHS = NO; 605 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 606 | CLANG_CXX_LIBRARY = "libc++"; 607 | CLANG_ENABLE_MODULES = YES; 608 | CLANG_ENABLE_OBJC_ARC = YES; 609 | CLANG_WARN_BOOL_CONVERSION = YES; 610 | CLANG_WARN_CONSTANT_CONVERSION = YES; 611 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 612 | CLANG_WARN_EMPTY_BODY = YES; 613 | CLANG_WARN_ENUM_CONVERSION = YES; 614 | CLANG_WARN_INT_CONVERSION = YES; 615 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 616 | CLANG_WARN_UNREACHABLE_CODE = YES; 617 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 618 | COPY_PHASE_STRIP = NO; 619 | GCC_C_LANGUAGE_STANDARD = gnu99; 620 | GCC_DYNAMIC_NO_PIC = NO; 621 | GCC_OPTIMIZATION_LEVEL = 0; 622 | GCC_PREPROCESSOR_DEFINITIONS = ( 623 | "DEBUG=1", 624 | "$(inherited)", 625 | ); 626 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 627 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 628 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 629 | GCC_WARN_UNDECLARED_SELECTOR = YES; 630 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 631 | GCC_WARN_UNUSED_FUNCTION = YES; 632 | GCC_WARN_UNUSED_VARIABLE = YES; 633 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 634 | ONLY_ACTIVE_ARCH = YES; 635 | STRIP_INSTALLED_PRODUCT = NO; 636 | SYMROOT = "${SRCROOT}/../build"; 637 | }; 638 | name = Debug; 639 | }; 640 | 0849B2C345057B335E6F70E2 /* Debug */ = { 641 | isa = XCBuildConfiguration; 642 | baseConfigurationReference = 66D2F2F8C3EF9822B48E539F /* Pods-BlinkingLabel_Example.debug.xcconfig */; 643 | buildSettings = { 644 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 645 | CURRENT_PROJECT_VERSION = 1; 646 | DEFINES_MODULE = YES; 647 | DYLIB_COMPATIBILITY_VERSION = 1; 648 | DYLIB_CURRENT_VERSION = 1; 649 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 650 | ENABLE_STRICT_OBJC_MSGSEND = YES; 651 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Example/Info.plist"; 652 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 653 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 654 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 655 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.modulemap"; 656 | MTL_ENABLE_DEBUG_INFO = YES; 657 | OTHER_LDFLAGS = ""; 658 | OTHER_LIBTOOLFLAGS = ""; 659 | PODS_ROOT = "$(SRCROOT)"; 660 | PRODUCT_NAME = Pods_BlinkingLabel_Example; 661 | SDKROOT = iphoneos; 662 | SKIP_INSTALL = YES; 663 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 664 | TARGETED_DEVICE_FAMILY = "1,2"; 665 | VERSIONING_SYSTEM = "apple-generic"; 666 | VERSION_INFO_PREFIX = ""; 667 | }; 668 | name = Debug; 669 | }; 670 | 41FB3F11FD548AF7135F7BEA /* Release */ = { 671 | isa = XCBuildConfiguration; 672 | baseConfigurationReference = C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */; 673 | buildSettings = { 674 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 675 | CURRENT_PROJECT_VERSION = 1; 676 | DEFINES_MODULE = YES; 677 | DYLIB_COMPATIBILITY_VERSION = 1; 678 | DYLIB_CURRENT_VERSION = 1; 679 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 680 | ENABLE_STRICT_OBJC_MSGSEND = YES; 681 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch"; 682 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Info.plist"; 683 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 684 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 685 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 686 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel.modulemap"; 687 | MTL_ENABLE_DEBUG_INFO = NO; 688 | PRODUCT_NAME = BlinkingLabel; 689 | SDKROOT = iphoneos; 690 | SKIP_INSTALL = YES; 691 | TARGETED_DEVICE_FAMILY = "1,2"; 692 | VERSIONING_SYSTEM = "apple-generic"; 693 | VERSION_INFO_PREFIX = ""; 694 | }; 695 | name = Release; 696 | }; 697 | 4D7D1B4C1EB25BF25CE389AA /* Debug */ = { 698 | isa = XCBuildConfiguration; 699 | baseConfigurationReference = C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */; 700 | buildSettings = { 701 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 702 | CURRENT_PROJECT_VERSION = 1; 703 | DEFINES_MODULE = YES; 704 | DYLIB_COMPATIBILITY_VERSION = 1; 705 | DYLIB_CURRENT_VERSION = 1; 706 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 707 | ENABLE_STRICT_OBJC_MSGSEND = YES; 708 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel-prefix.pch"; 709 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Info.plist"; 710 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 711 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 712 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 713 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Example-BlinkingLabel/Pods-BlinkingLabel_Example-BlinkingLabel.modulemap"; 714 | MTL_ENABLE_DEBUG_INFO = YES; 715 | PRODUCT_NAME = BlinkingLabel; 716 | SDKROOT = iphoneos; 717 | SKIP_INSTALL = YES; 718 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 719 | TARGETED_DEVICE_FAMILY = "1,2"; 720 | VERSIONING_SYSTEM = "apple-generic"; 721 | VERSION_INFO_PREFIX = ""; 722 | }; 723 | name = Debug; 724 | }; 725 | 579FB47B89366B0697328DF0 /* Release */ = { 726 | isa = XCBuildConfiguration; 727 | baseConfigurationReference = 1631D409D3BE7F59B0EC2DB0 /* Pods-BlinkingLabel_Tests.release.xcconfig */; 728 | buildSettings = { 729 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 730 | CURRENT_PROJECT_VERSION = 1; 731 | DEFINES_MODULE = YES; 732 | DYLIB_COMPATIBILITY_VERSION = 1; 733 | DYLIB_CURRENT_VERSION = 1; 734 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 735 | ENABLE_STRICT_OBJC_MSGSEND = YES; 736 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Tests/Info.plist"; 737 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 738 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 739 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 740 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.modulemap"; 741 | MTL_ENABLE_DEBUG_INFO = NO; 742 | OTHER_LDFLAGS = ""; 743 | OTHER_LIBTOOLFLAGS = ""; 744 | PODS_ROOT = "$(SRCROOT)"; 745 | PRODUCT_NAME = Pods_BlinkingLabel_Tests; 746 | SDKROOT = iphoneos; 747 | SKIP_INSTALL = YES; 748 | TARGETED_DEVICE_FAMILY = "1,2"; 749 | VERSIONING_SYSTEM = "apple-generic"; 750 | VERSION_INFO_PREFIX = ""; 751 | }; 752 | name = Release; 753 | }; 754 | 62563AAE74BE7A8E876F409A /* Debug */ = { 755 | isa = XCBuildConfiguration; 756 | baseConfigurationReference = E4F95DFF947B029C036D5756 /* Pods-BlinkingLabel_Tests.debug.xcconfig */; 757 | buildSettings = { 758 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 759 | CURRENT_PROJECT_VERSION = 1; 760 | DEFINES_MODULE = YES; 761 | DYLIB_COMPATIBILITY_VERSION = 1; 762 | DYLIB_CURRENT_VERSION = 1; 763 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 764 | ENABLE_STRICT_OBJC_MSGSEND = YES; 765 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Tests/Info.plist"; 766 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 767 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 768 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 769 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Tests/Pods-BlinkingLabel_Tests.modulemap"; 770 | MTL_ENABLE_DEBUG_INFO = YES; 771 | OTHER_LDFLAGS = ""; 772 | OTHER_LIBTOOLFLAGS = ""; 773 | PODS_ROOT = "$(SRCROOT)"; 774 | PRODUCT_NAME = Pods_BlinkingLabel_Tests; 775 | SDKROOT = iphoneos; 776 | SKIP_INSTALL = YES; 777 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 778 | TARGETED_DEVICE_FAMILY = "1,2"; 779 | VERSIONING_SYSTEM = "apple-generic"; 780 | VERSION_INFO_PREFIX = ""; 781 | }; 782 | name = Debug; 783 | }; 784 | 655D31ABA4A77CC8B152A686 /* Release */ = { 785 | isa = XCBuildConfiguration; 786 | baseConfigurationReference = C9A81F7C45542407B981FE23 /* Pods-BlinkingLabel_Example-BlinkingLabel-Private.xcconfig */; 787 | buildSettings = { 788 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Example"; 789 | ENABLE_STRICT_OBJC_MSGSEND = YES; 790 | PRODUCT_NAME = BlinkingLabel; 791 | SDKROOT = iphoneos; 792 | SKIP_INSTALL = YES; 793 | WRAPPER_EXTENSION = bundle; 794 | }; 795 | name = Release; 796 | }; 797 | 67D0B9B1EC54B6150EB61A19 /* Release */ = { 798 | isa = XCBuildConfiguration; 799 | baseConfigurationReference = B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */; 800 | buildSettings = { 801 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Tests"; 802 | ENABLE_STRICT_OBJC_MSGSEND = YES; 803 | PRODUCT_NAME = BlinkingLabel; 804 | SDKROOT = iphoneos; 805 | SKIP_INSTALL = YES; 806 | WRAPPER_EXTENSION = bundle; 807 | }; 808 | name = Release; 809 | }; 810 | A77E92F4D54C79F3A4CCB5BB /* Release */ = { 811 | isa = XCBuildConfiguration; 812 | buildSettings = { 813 | ALWAYS_SEARCH_USER_PATHS = NO; 814 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 815 | CLANG_CXX_LIBRARY = "libc++"; 816 | CLANG_ENABLE_MODULES = YES; 817 | CLANG_ENABLE_OBJC_ARC = YES; 818 | CLANG_WARN_BOOL_CONVERSION = YES; 819 | CLANG_WARN_CONSTANT_CONVERSION = YES; 820 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 821 | CLANG_WARN_EMPTY_BODY = YES; 822 | CLANG_WARN_ENUM_CONVERSION = YES; 823 | CLANG_WARN_INT_CONVERSION = YES; 824 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 825 | CLANG_WARN_UNREACHABLE_CODE = YES; 826 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 827 | COPY_PHASE_STRIP = YES; 828 | ENABLE_NS_ASSERTIONS = NO; 829 | GCC_C_LANGUAGE_STANDARD = gnu99; 830 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 831 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 832 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 833 | GCC_WARN_UNDECLARED_SELECTOR = YES; 834 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 835 | GCC_WARN_UNUSED_FUNCTION = YES; 836 | GCC_WARN_UNUSED_VARIABLE = YES; 837 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 838 | STRIP_INSTALLED_PRODUCT = NO; 839 | SYMROOT = "${SRCROOT}/../build"; 840 | VALIDATE_PRODUCT = YES; 841 | }; 842 | name = Release; 843 | }; 844 | B5CB0A8D5A055B471BE7C5DA /* Release */ = { 845 | isa = XCBuildConfiguration; 846 | baseConfigurationReference = 32D71951C789F6DF2DFFDC3D /* Pods-BlinkingLabel_Example.release.xcconfig */; 847 | buildSettings = { 848 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 849 | CURRENT_PROJECT_VERSION = 1; 850 | DEFINES_MODULE = YES; 851 | DYLIB_COMPATIBILITY_VERSION = 1; 852 | DYLIB_CURRENT_VERSION = 1; 853 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 854 | ENABLE_STRICT_OBJC_MSGSEND = YES; 855 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Example/Info.plist"; 856 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 857 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 858 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 859 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Example/Pods-BlinkingLabel_Example.modulemap"; 860 | MTL_ENABLE_DEBUG_INFO = NO; 861 | OTHER_LDFLAGS = ""; 862 | OTHER_LIBTOOLFLAGS = ""; 863 | PODS_ROOT = "$(SRCROOT)"; 864 | PRODUCT_NAME = Pods_BlinkingLabel_Example; 865 | SDKROOT = iphoneos; 866 | SKIP_INSTALL = YES; 867 | TARGETED_DEVICE_FAMILY = "1,2"; 868 | VERSIONING_SYSTEM = "apple-generic"; 869 | VERSION_INFO_PREFIX = ""; 870 | }; 871 | name = Release; 872 | }; 873 | B7CBD0283D2CF3117119C38A /* Debug */ = { 874 | isa = XCBuildConfiguration; 875 | baseConfigurationReference = B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */; 876 | buildSettings = { 877 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 878 | CURRENT_PROJECT_VERSION = 1; 879 | DEFINES_MODULE = YES; 880 | DYLIB_COMPATIBILITY_VERSION = 1; 881 | DYLIB_CURRENT_VERSION = 1; 882 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 883 | ENABLE_STRICT_OBJC_MSGSEND = YES; 884 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch"; 885 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Info.plist"; 886 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 887 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 888 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 889 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap"; 890 | MTL_ENABLE_DEBUG_INFO = YES; 891 | PRODUCT_NAME = BlinkingLabel; 892 | SDKROOT = iphoneos; 893 | SKIP_INSTALL = YES; 894 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 895 | TARGETED_DEVICE_FAMILY = "1,2"; 896 | VERSIONING_SYSTEM = "apple-generic"; 897 | VERSION_INFO_PREFIX = ""; 898 | }; 899 | name = Debug; 900 | }; 901 | BCA9EE19F3397D946B36813E /* Debug */ = { 902 | isa = XCBuildConfiguration; 903 | baseConfigurationReference = B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */; 904 | buildSettings = { 905 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BlinkingLabel_Tests"; 906 | ENABLE_STRICT_OBJC_MSGSEND = YES; 907 | PRODUCT_NAME = BlinkingLabel; 908 | SDKROOT = iphoneos; 909 | SKIP_INSTALL = YES; 910 | WRAPPER_EXTENSION = bundle; 911 | }; 912 | name = Debug; 913 | }; 914 | F84DB873958B424638CD36E5 /* Release */ = { 915 | isa = XCBuildConfiguration; 916 | baseConfigurationReference = B0C7AF9CBB35237A0D7E8089 /* Pods-BlinkingLabel_Tests-BlinkingLabel-Private.xcconfig */; 917 | buildSettings = { 918 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 919 | CURRENT_PROJECT_VERSION = 1; 920 | DEFINES_MODULE = YES; 921 | DYLIB_COMPATIBILITY_VERSION = 1; 922 | DYLIB_CURRENT_VERSION = 1; 923 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 924 | ENABLE_STRICT_OBJC_MSGSEND = YES; 925 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel-prefix.pch"; 926 | INFOPLIST_FILE = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Info.plist"; 927 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 928 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 929 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 930 | MODULEMAP_FILE = "Target Support Files/Pods-BlinkingLabel_Tests-BlinkingLabel/Pods-BlinkingLabel_Tests-BlinkingLabel.modulemap"; 931 | MTL_ENABLE_DEBUG_INFO = NO; 932 | PRODUCT_NAME = BlinkingLabel; 933 | SDKROOT = iphoneos; 934 | SKIP_INSTALL = YES; 935 | TARGETED_DEVICE_FAMILY = "1,2"; 936 | VERSIONING_SYSTEM = "apple-generic"; 937 | VERSION_INFO_PREFIX = ""; 938 | }; 939 | name = Release; 940 | }; 941 | /* End XCBuildConfiguration section */ 942 | 943 | /* Begin XCConfigurationList section */ 944 | 2C0337C5E32EC72B72C12C77 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example" */ = { 945 | isa = XCConfigurationList; 946 | buildConfigurations = ( 947 | 0849B2C345057B335E6F70E2 /* Debug */, 948 | B5CB0A8D5A055B471BE7C5DA /* Release */, 949 | ); 950 | defaultConfigurationIsVisible = 0; 951 | defaultConfigurationName = Release; 952 | }; 953 | 4EE6D8E659EAEF0584F0F659 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests-BlinkingLabel" */ = { 954 | isa = XCConfigurationList; 955 | buildConfigurations = ( 956 | B7CBD0283D2CF3117119C38A /* Debug */, 957 | F84DB873958B424638CD36E5 /* Release */, 958 | ); 959 | defaultConfigurationIsVisible = 0; 960 | defaultConfigurationName = Release; 961 | }; 962 | 57EC23A2410962FECAF06636 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example-BlinkingLabel" */ = { 963 | isa = XCConfigurationList; 964 | buildConfigurations = ( 965 | 4D7D1B4C1EB25BF25CE389AA /* Debug */, 966 | 41FB3F11FD548AF7135F7BEA /* Release */, 967 | ); 968 | defaultConfigurationIsVisible = 0; 969 | defaultConfigurationName = Release; 970 | }; 971 | 931CAE1B030896B981983F15 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Example-BlinkingLabel-BlinkingLabel" */ = { 972 | isa = XCConfigurationList; 973 | buildConfigurations = ( 974 | 02720C156CDD36B143DF8C88 /* Debug */, 975 | 655D31ABA4A77CC8B152A686 /* Release */, 976 | ); 977 | defaultConfigurationIsVisible = 0; 978 | defaultConfigurationName = Release; 979 | }; 980 | 950296B1BE3B8D18422DC712 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests" */ = { 981 | isa = XCConfigurationList; 982 | buildConfigurations = ( 983 | 62563AAE74BE7A8E876F409A /* Debug */, 984 | 579FB47B89366B0697328DF0 /* Release */, 985 | ); 986 | defaultConfigurationIsVisible = 0; 987 | defaultConfigurationName = Release; 988 | }; 989 | A87EDD396C0EE559935364A2 /* Build configuration list for PBXNativeTarget "Pods-BlinkingLabel_Tests-BlinkingLabel-BlinkingLabel" */ = { 990 | isa = XCConfigurationList; 991 | buildConfigurations = ( 992 | BCA9EE19F3397D946B36813E /* Debug */, 993 | 67D0B9B1EC54B6150EB61A19 /* Release */, 994 | ); 995 | defaultConfigurationIsVisible = 0; 996 | defaultConfigurationName = Release; 997 | }; 998 | F1C58A1E90E683A0DFA6D5B4 /* Build configuration list for PBXProject "Pods" */ = { 999 | isa = XCConfigurationList; 1000 | buildConfigurations = ( 1001 | 050750A6789C94BD950BFDBE /* Debug */, 1002 | A77E92F4D54C79F3A4CCB5BB /* Release */, 1003 | ); 1004 | defaultConfigurationIsVisible = 0; 1005 | defaultConfigurationName = Release; 1006 | }; 1007 | /* End XCConfigurationList section */ 1008 | }; 1009 | rootObject = 0AD685150129A0F1C84515A4 /* Project object */; 1010 | } 1011 | --------------------------------------------------------------------------------