From bfb055fac9c5c0d1db91378198c09fb8e2d51bbb Mon Sep 17 00:00:00 2001 From: eyrefree Date: Sun, 11 Dec 2016 21:19:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=B0Pod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 154 +--- .travis.yml | 14 + EFCountingLabel.podspec | 42 ++ EFCountingLabel.xcodeproj/project.pbxproj | 340 --------- EFCountingLabel/AppDelegate.swift | 34 - EFCountingLabel/Assets/.gitkeep | 0 .../Base.lproj/LaunchScreen.storyboard | 27 - EFCountingLabel/Classes/.gitkeep | 0 .../{ => Classes}/EFCountingLabel.swift | 0 .../EFCountingLabel.xcodeproj/project.pbxproj | 591 +++++++++++++++ .../contents.xcworkspacedata | 0 .../EFCountingLabel-Example.xcscheme | 115 +++ .../contents.xcworkspacedata | 10 + Example/EFCountingLabel/AppDelegate.swift | 46 ++ .../Base.lproj/LaunchScreen.xib | 46 ++ .../Base.lproj/Main.storyboard | 23 +- .../AppIcon.appiconset/Contents.json | 10 + .../EFCountingLabel}/Info.plist | 4 +- .../EFCountingLabel}/ViewController.swift | 8 + Example/Podfile | 11 + Example/Podfile.lock | 16 + .../EFCountingLabel.podspec.json | 22 + Example/Pods/Manifest.lock | 16 + Example/Pods/Pods.xcodeproj/project.pbxproj | 704 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../EFCountingLabel/EFCountingLabel-dummy.m | 5 + .../EFCountingLabel-prefix.pch | 4 + .../EFCountingLabel-umbrella.h | 6 + .../EFCountingLabel/EFCountingLabel.modulemap | 6 + .../EFCountingLabel/EFCountingLabel.xcconfig | 9 + .../EFCountingLabel/Info.plist | 26 + .../Pods-EFCountingLabel_Example/Info.plist | 26 + ...ingLabel_Example-acknowledgements.markdown | 26 + ...untingLabel_Example-acknowledgements.plist | 56 ++ .../Pods-EFCountingLabel_Example-dummy.m | 5 + ...Pods-EFCountingLabel_Example-frameworks.sh | 91 +++ .../Pods-EFCountingLabel_Example-resources.sh | 102 +++ .../Pods-EFCountingLabel_Example-umbrella.h | 6 + ...ods-EFCountingLabel_Example.debug.xcconfig | 10 + .../Pods-EFCountingLabel_Example.modulemap | 6 + ...s-EFCountingLabel_Example.release.xcconfig | 10 + .../Pods-EFCountingLabel_Tests/Info.plist | 26 + ...ntingLabel_Tests-acknowledgements.markdown | 3 + ...CountingLabel_Tests-acknowledgements.plist | 29 + .../Pods-EFCountingLabel_Tests-dummy.m | 5 + .../Pods-EFCountingLabel_Tests-frameworks.sh | 84 +++ .../Pods-EFCountingLabel_Tests-resources.sh | 102 +++ .../Pods-EFCountingLabel_Tests-umbrella.h | 6 + .../Pods-EFCountingLabel_Tests.debug.xcconfig | 7 + .../Pods-EFCountingLabel_Tests.modulemap | 6 + ...ods-EFCountingLabel_Tests.release.xcconfig | 7 + Example/Tests/Info.plist | 24 + Example/Tests/Tests.swift | 29 + LICENSE | 12 +- README.md | 31 +- _Pods.xcodeproj | 1 + 56 files changed, 2440 insertions(+), 566 deletions(-) create mode 100644 .travis.yml create mode 100644 EFCountingLabel.podspec delete mode 100644 EFCountingLabel.xcodeproj/project.pbxproj delete mode 100644 EFCountingLabel/AppDelegate.swift create mode 100644 EFCountingLabel/Assets/.gitkeep delete mode 100644 EFCountingLabel/Base.lproj/LaunchScreen.storyboard create mode 100644 EFCountingLabel/Classes/.gitkeep rename EFCountingLabel/{ => Classes}/EFCountingLabel.swift (100%) create mode 100644 Example/EFCountingLabel.xcodeproj/project.pbxproj rename {EFCountingLabel.xcodeproj => Example/EFCountingLabel.xcodeproj}/project.xcworkspace/contents.xcworkspacedata (100%) create mode 100644 Example/EFCountingLabel.xcodeproj/xcshareddata/xcschemes/EFCountingLabel-Example.xcscheme create mode 100644 Example/EFCountingLabel.xcworkspace/contents.xcworkspacedata create mode 100644 Example/EFCountingLabel/AppDelegate.swift create mode 100644 Example/EFCountingLabel/Base.lproj/LaunchScreen.xib rename {EFCountingLabel => Example/EFCountingLabel}/Base.lproj/Main.storyboard (71%) rename {EFCountingLabel/Assets.xcassets => Example/EFCountingLabel/Images.xcassets}/AppIcon.appiconset/Contents.json (77%) rename {EFCountingLabel => Example/EFCountingLabel}/Info.plist (92%) rename {EFCountingLabel => Example/EFCountingLabel}/ViewController.swift (95%) create mode 100644 Example/Podfile create mode 100644 Example/Podfile.lock create mode 100644 Example/Pods/Local Podspecs/EFCountingLabel.podspec.json create mode 100644 Example/Pods/Manifest.lock create mode 100644 Example/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-dummy.m create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-umbrella.h create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.modulemap create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.xcconfig create mode 100644 Example/Pods/Target Support Files/EFCountingLabel/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.release.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.release.xcconfig create mode 100644 Example/Tests/Info.plist create mode 100644 Example/Tests/Tests.swift mode change 100755 => 100644 LICENSE create mode 120000 _Pods.xcodeproj diff --git a/.gitignore b/.gitignore index 3b39df8..e7b722d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,46 +1,8 @@ -#BuildConfig -BuildConfig.plist - -# -------------------- -# OSX -# https://github.com/github/gitignore/blob/master/Global/OSX.gitignore - +# OS X .DS_Store -.AppleDouble -.LSOverride - -# Icon must end with two \r -Icon - - -# Thumbnails -._* -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk - - -# -------------------- # Xcode -# https://github.com/github/gitignore/blob/master/Global/Xcode.gitignore - -## Build generated build/ -DerivedData - -## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -49,119 +11,23 @@ DerivedData !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata - -## Other +xcuserdata/ *.xccheckout +profile *.moved-aside -*.xcuserstate - - -# -------------------- -# Swift -# https://github.com/github/gitignore/blob/master/Swift.gitignore - -## Build generated -build/ DerivedData - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata - -## Other -*.xccheckout -*.moved-aside -*.xcuserstate -*.xcscmblueprint - -## Obj-C/Swift specific *.hmap *.ipa -# CocoaPods -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -Pods/ - -# Carthage -# -# Add this line if you want to avoid checking in source code from Carthage dependencies. -# Carthage/Checkouts - -Carthage/Build - -# fastlane -# -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the -# screenshots whenever they are needed. -# For more information about the recommended setup visit: -# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md +# Bundler +.bundle -fastlane/report.xml -fastlane/screenshots - - -# -------------------- -# Objective-C -# https://github.com/github/gitignore/blob/master/Objective-C.gitignore - -## Build generated -build/ -DerivedData - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata - -## Other -*.xccheckout -*.moved-aside -*.xcuserstate -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa - -# CocoaPods -# +Carthage # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# +# Note: if you ignore the Pods directory, make sure to uncomment +# `pod install` in .travis.yml # # Pods/ - -# Carthage -# -# Add this line if you want to avoid checking in source code from Carthage dependencies. -# Carthage/Checkouts - -Carthage/Build - -# fastlane -# -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the -# screenshots whenever they are needed. -# For more information about the recommended setup visit: -# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md - -fastlane/report.xml -fastlane/screenshots diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..852b9a4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# references: +# * http://www.objc.io/issue-6/travis-ci.html +# * https://github.com/supermarin/xcpretty#usage + +osx_image: xcode7.3 +language: objective-c +# cache: cocoapods +# podfile: Example/Podfile +# before_install: +# - gem install cocoapods # Since Travis is not always on latest version +# - pod install --project-directory=Example +script: +- set -o pipefail && xcodebuild test -workspace Example/EFCountingLabel.xcworkspace -scheme EFCountingLabel-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty +- pod lib lint diff --git a/EFCountingLabel.podspec b/EFCountingLabel.podspec new file mode 100644 index 0000000..e57436e --- /dev/null +++ b/EFCountingLabel.podspec @@ -0,0 +1,42 @@ +# +# Be sure to run `pod lib lint EFCountingLabel.podspec' to ensure this is a +# valid spec before submitting. +# +# Any lines starting with a # are optional, but their use is encouraged +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# + +Pod::Spec.new do |s| + s.name = 'EFCountingLabel' + s.version = '1.0.0' + s.summary = 'A label which can show number change animated.' + +# This description is used to generate tags and improve search results. +# * Think: What does it do? Why did you write it? What is the focus? +# * Try to keep it short, snappy and to the point. +# * Write the description between the DESC delimiters below. +# * Finally, don't worry about the indent, CocoaPods strips it! + + s.description = <<-DESC +TODO: Add long description of the pod here. + DESC + + s.homepage = 'https://github.com/EyreFree/EFCountingLabel' + # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'EyreFree' => 'eyrefree@eyrefree.org' } + s.source = { :git => 'https://github.com/EyreFree/EFCountingLabel.git', :tag => s.version.to_s } + s.social_media_url = 'https://twitter.com/EyreFree777' + + s.ios.deployment_target = '8.0' + + s.source_files = 'EFCountingLabel/Classes/**/*' + + # s.resource_bundles = { + # 'EFCountingLabel' => ['EFCountingLabel/Assets/*.png'] + # } + + # s.public_header_files = 'Pod/Classes/**/*.h' + s.frameworks = 'UIKit' + # s.dependency 'AFNetworking', '~> 2.3' +end diff --git a/EFCountingLabel.xcodeproj/project.pbxproj b/EFCountingLabel.xcodeproj/project.pbxproj deleted file mode 100644 index 478afdd..0000000 --- a/EFCountingLabel.xcodeproj/project.pbxproj +++ /dev/null @@ -1,340 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 125E86411DFD2542009BF300 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125E86401DFD2542009BF300 /* AppDelegate.swift */; }; - 125E86431DFD2542009BF300 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125E86421DFD2542009BF300 /* ViewController.swift */; }; - 125E86461DFD2542009BF300 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 125E86441DFD2542009BF300 /* Main.storyboard */; }; - 125E86481DFD2542009BF300 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 125E86471DFD2542009BF300 /* Assets.xcassets */; }; - 125E864B1DFD2542009BF300 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 125E86491DFD2542009BF300 /* LaunchScreen.storyboard */; }; - 125E86531DFD2558009BF300 /* EFCountingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125E86521DFD2558009BF300 /* EFCountingLabel.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 125E863D1DFD2542009BF300 /* EFCountingLabel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EFCountingLabel.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 125E86401DFD2542009BF300 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = EFCountingLabel/AppDelegate.swift; sourceTree = ""; }; - 125E86421DFD2542009BF300 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = EFCountingLabel/ViewController.swift; sourceTree = ""; }; - 125E86451DFD2542009BF300 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 125E86471DFD2542009BF300 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = EFCountingLabel/Assets.xcassets; sourceTree = ""; }; - 125E864A1DFD2542009BF300 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 125E864C1DFD2542009BF300 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = EFCountingLabel/Info.plist; sourceTree = ""; }; - 125E86521DFD2558009BF300 /* EFCountingLabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EFCountingLabel.swift; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 125E863A1DFD2542009BF300 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 125E86341DFD2542009BF300 = { - isa = PBXGroup; - children = ( - 125E863F1DFD2542009BF300 /* EFCountingLabel */, - 125E86541DFD644F009BF300 /* EFCountingLabelDemo */, - 125E863E1DFD2542009BF300 /* Products */, - ); - sourceTree = ""; - }; - 125E863E1DFD2542009BF300 /* Products */ = { - isa = PBXGroup; - children = ( - 125E863D1DFD2542009BF300 /* EFCountingLabel.app */, - ); - name = Products; - sourceTree = ""; - }; - 125E863F1DFD2542009BF300 /* EFCountingLabel */ = { - isa = PBXGroup; - children = ( - 125E86521DFD2558009BF300 /* EFCountingLabel.swift */, - ); - path = EFCountingLabel; - sourceTree = ""; - }; - 125E86541DFD644F009BF300 /* EFCountingLabelDemo */ = { - isa = PBXGroup; - children = ( - 125E86551DFD76D5009BF300 /* Res */, - 125E86401DFD2542009BF300 /* AppDelegate.swift */, - 125E86421DFD2542009BF300 /* ViewController.swift */, - 125E86561DFD76F0009BF300 /* Supporting Files */, - ); - name = EFCountingLabelDemo; - sourceTree = ""; - }; - 125E86551DFD76D5009BF300 /* Res */ = { - isa = PBXGroup; - children = ( - 125E86441DFD2542009BF300 /* Main.storyboard */, - 125E86471DFD2542009BF300 /* Assets.xcassets */, - 125E86491DFD2542009BF300 /* LaunchScreen.storyboard */, - ); - name = Res; - sourceTree = ""; - }; - 125E86561DFD76F0009BF300 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 125E864C1DFD2542009BF300 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 125E863C1DFD2542009BF300 /* EFCountingLabel */ = { - isa = PBXNativeTarget; - buildConfigurationList = 125E864F1DFD2542009BF300 /* Build configuration list for PBXNativeTarget "EFCountingLabel" */; - buildPhases = ( - 125E86391DFD2542009BF300 /* Sources */, - 125E863A1DFD2542009BF300 /* Frameworks */, - 125E863B1DFD2542009BF300 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = EFCountingLabel; - productName = EFCountingLabel; - productReference = 125E863D1DFD2542009BF300 /* EFCountingLabel.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 125E86351DFD2542009BF300 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0810; - LastUpgradeCheck = 0810; - ORGANIZATIONNAME = EyreFree; - TargetAttributes = { - 125E863C1DFD2542009BF300 = { - CreatedOnToolsVersion = 8.1; - DevelopmentTeam = P3X2725LYY; - ProvisioningStyle = Automatic; - }; - }; - }; - buildConfigurationList = 125E86381DFD2542009BF300 /* Build configuration list for PBXProject "EFCountingLabel" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 125E86341DFD2542009BF300; - productRefGroup = 125E863E1DFD2542009BF300 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 125E863C1DFD2542009BF300 /* EFCountingLabel */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 125E863B1DFD2542009BF300 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 125E864B1DFD2542009BF300 /* LaunchScreen.storyboard in Resources */, - 125E86481DFD2542009BF300 /* Assets.xcassets in Resources */, - 125E86461DFD2542009BF300 /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 125E86391DFD2542009BF300 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 125E86431DFD2542009BF300 /* ViewController.swift in Sources */, - 125E86531DFD2558009BF300 /* EFCountingLabel.swift in Sources */, - 125E86411DFD2542009BF300 /* AppDelegate.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 125E86441DFD2542009BF300 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 125E86451DFD2542009BF300 /* Base */, - ); - name = Main.storyboard; - path = EFCountingLabel; - sourceTree = ""; - }; - 125E86491DFD2542009BF300 /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 125E864A1DFD2542009BF300 /* Base */, - ); - name = LaunchScreen.storyboard; - path = EFCountingLabel; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 125E864D1DFD2542009BF300 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVES = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 125E864E1DFD2542009BF300 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVES = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 125E86501DFD2542009BF300 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - DEVELOPMENT_TEAM = P3X2725LYY; - INFOPLIST_FILE = EFCountingLabel/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.EyreFree.EFCountingLabel; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Debug; - }; - 125E86511DFD2542009BF300 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - DEVELOPMENT_TEAM = P3X2725LYY; - INFOPLIST_FILE = EFCountingLabel/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.EyreFree.EFCountingLabel; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 125E86381DFD2542009BF300 /* Build configuration list for PBXProject "EFCountingLabel" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 125E864D1DFD2542009BF300 /* Debug */, - 125E864E1DFD2542009BF300 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 125E864F1DFD2542009BF300 /* Build configuration list for PBXNativeTarget "EFCountingLabel" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 125E86501DFD2542009BF300 /* Debug */, - 125E86511DFD2542009BF300 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 125E86351DFD2542009BF300 /* Project object */; -} diff --git a/EFCountingLabel/AppDelegate.swift b/EFCountingLabel/AppDelegate.swift deleted file mode 100644 index 35a2e3d..0000000 --- a/EFCountingLabel/AppDelegate.swift +++ /dev/null @@ -1,34 +0,0 @@ - -import UIKit - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - - var window: UIWindow? - - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { - return true - } - - func applicationWillResignActive(_ application: UIApplication) { - - } - - func applicationDidEnterBackground(_ application: UIApplication) { - - } - - func applicationWillEnterForeground(_ application: UIApplication) { - - } - - func applicationDidBecomeActive(_ application: UIApplication) { - - } - - func applicationWillTerminate(_ application: UIApplication) { - - } -} - diff --git a/EFCountingLabel/Assets/.gitkeep b/EFCountingLabel/Assets/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/EFCountingLabel/Base.lproj/LaunchScreen.storyboard b/EFCountingLabel/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index fdf3f97..0000000 --- a/EFCountingLabel/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/EFCountingLabel/Classes/.gitkeep b/EFCountingLabel/Classes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/EFCountingLabel/EFCountingLabel.swift b/EFCountingLabel/Classes/EFCountingLabel.swift similarity index 100% rename from EFCountingLabel/EFCountingLabel.swift rename to EFCountingLabel/Classes/EFCountingLabel.swift diff --git a/Example/EFCountingLabel.xcodeproj/project.pbxproj b/Example/EFCountingLabel.xcodeproj/project.pbxproj new file mode 100644 index 0000000..70bc3ce --- /dev/null +++ b/Example/EFCountingLabel.xcodeproj/project.pbxproj @@ -0,0 +1,591 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 5EEE4459477CD89613CC9254 /* Pods_EFCountingLabel_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA8BF1F2807CCE416BEF5C0C /* Pods_EFCountingLabel_Tests.framework */; }; + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; + 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; + 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; + 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; + 88B4CB65271A07819AE9D976 /* Pods_EFCountingLabel_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FF702AD45972585A86A336D5 /* Pods_EFCountingLabel_Example.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 607FACC81AFB9204008FA782 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 607FACCF1AFB9204008FA782; + remoteInfo = EFCountingLabel; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0D6321623D5D5D7DD361D3FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + 276DE02E85C0E7D6ED37EDD4 /* Pods-EFCountingLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EFCountingLabel_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.debug.xcconfig"; sourceTree = ""; }; + 47A0BF93F64203C763BE2E42 /* Pods-EFCountingLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EFCountingLabel_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.release.xcconfig"; sourceTree = ""; }; + 607FACD01AFB9204008FA782 /* EFCountingLabel_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EFCountingLabel_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; + 607FACE51AFB9204008FA782 /* EFCountingLabel_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EFCountingLabel_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; + 80B2BFCC105106F37CED9FA4 /* EFCountingLabel.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = EFCountingLabel.podspec; path = ../EFCountingLabel.podspec; sourceTree = ""; }; + 8BCD51943A3A1640311342F6 /* Pods-EFCountingLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EFCountingLabel_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.debug.xcconfig"; sourceTree = ""; }; + 8FF75F8CFAC9673D3C62BA08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; + A01CDD789E1606BABB71EF13 /* Pods-EFCountingLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EFCountingLabel_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.release.xcconfig"; sourceTree = ""; }; + EA8BF1F2807CCE416BEF5C0C /* Pods_EFCountingLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_EFCountingLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FF702AD45972585A86A336D5 /* Pods_EFCountingLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_EFCountingLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 607FACCD1AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 88B4CB65271A07819AE9D976 /* Pods_EFCountingLabel_Example.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE21AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5EEE4459477CD89613CC9254 /* Pods_EFCountingLabel_Tests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 607FACC71AFB9204008FA782 = { + isa = PBXGroup; + children = ( + 607FACF51AFB993E008FA782 /* Podspec Metadata */, + 607FACD21AFB9204008FA782 /* Example for EFCountingLabel */, + 607FACE81AFB9204008FA782 /* Tests */, + 607FACD11AFB9204008FA782 /* Products */, + C4EC0D76B0D5BA3BFD5682EE /* Pods */, + A7CA133B4A0DCCD8F0D16197 /* Frameworks */, + ); + sourceTree = ""; + }; + 607FACD11AFB9204008FA782 /* Products */ = { + isa = PBXGroup; + children = ( + 607FACD01AFB9204008FA782 /* EFCountingLabel_Example.app */, + 607FACE51AFB9204008FA782 /* EFCountingLabel_Tests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 607FACD21AFB9204008FA782 /* Example for EFCountingLabel */ = { + isa = PBXGroup; + children = ( + 607FACD51AFB9204008FA782 /* AppDelegate.swift */, + 607FACD71AFB9204008FA782 /* ViewController.swift */, + 607FACD91AFB9204008FA782 /* Main.storyboard */, + 607FACDC1AFB9204008FA782 /* Images.xcassets */, + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, + 607FACD31AFB9204008FA782 /* Supporting Files */, + ); + name = "Example for EFCountingLabel"; + path = EFCountingLabel; + sourceTree = ""; + }; + 607FACD31AFB9204008FA782 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 607FACD41AFB9204008FA782 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 607FACE81AFB9204008FA782 /* Tests */ = { + isa = PBXGroup; + children = ( + 607FACEB1AFB9204008FA782 /* Tests.swift */, + 607FACE91AFB9204008FA782 /* Supporting Files */, + ); + path = Tests; + sourceTree = ""; + }; + 607FACE91AFB9204008FA782 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 607FACEA1AFB9204008FA782 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { + isa = PBXGroup; + children = ( + 80B2BFCC105106F37CED9FA4 /* EFCountingLabel.podspec */, + 8FF75F8CFAC9673D3C62BA08 /* README.md */, + 0D6321623D5D5D7DD361D3FA /* LICENSE */, + ); + name = "Podspec Metadata"; + sourceTree = ""; + }; + A7CA133B4A0DCCD8F0D16197 /* Frameworks */ = { + isa = PBXGroup; + children = ( + FF702AD45972585A86A336D5 /* Pods_EFCountingLabel_Example.framework */, + EA8BF1F2807CCE416BEF5C0C /* Pods_EFCountingLabel_Tests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C4EC0D76B0D5BA3BFD5682EE /* Pods */ = { + isa = PBXGroup; + children = ( + 276DE02E85C0E7D6ED37EDD4 /* Pods-EFCountingLabel_Example.debug.xcconfig */, + A01CDD789E1606BABB71EF13 /* Pods-EFCountingLabel_Example.release.xcconfig */, + 8BCD51943A3A1640311342F6 /* Pods-EFCountingLabel_Tests.debug.xcconfig */, + 47A0BF93F64203C763BE2E42 /* Pods-EFCountingLabel_Tests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 607FACCF1AFB9204008FA782 /* EFCountingLabel_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "EFCountingLabel_Example" */; + buildPhases = ( + 0A40F974EE8CB74E06C4C12A /* [CP] Check Pods Manifest.lock */, + 607FACCC1AFB9204008FA782 /* Sources */, + 607FACCD1AFB9204008FA782 /* Frameworks */, + 607FACCE1AFB9204008FA782 /* Resources */, + 2363C73C7C0F4F0FBA152599 /* [CP] Embed Pods Frameworks */, + C71742F2128CF550358AA153 /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = EFCountingLabel_Example; + productName = EFCountingLabel; + productReference = 607FACD01AFB9204008FA782 /* EFCountingLabel_Example.app */; + productType = "com.apple.product-type.application"; + }; + 607FACE41AFB9204008FA782 /* EFCountingLabel_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "EFCountingLabel_Tests" */; + buildPhases = ( + E5E81E386983D648FA46AD94 /* [CP] Check Pods Manifest.lock */, + 607FACE11AFB9204008FA782 /* Sources */, + 607FACE21AFB9204008FA782 /* Frameworks */, + 607FACE31AFB9204008FA782 /* Resources */, + 52F6EEAC6504D771C0BFC213 /* [CP] Embed Pods Frameworks */, + 6AB7BDF143E1C94BFD6E58AF /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + 607FACE71AFB9204008FA782 /* PBXTargetDependency */, + ); + name = EFCountingLabel_Tests; + productName = Tests; + productReference = 607FACE51AFB9204008FA782 /* EFCountingLabel_Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 607FACC81AFB9204008FA782 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0720; + LastUpgradeCheck = 0720; + ORGANIZATIONNAME = CocoaPods; + TargetAttributes = { + 607FACCF1AFB9204008FA782 = { + CreatedOnToolsVersion = 6.3.1; + DevelopmentTeam = P3X2725LYY; + LastSwiftMigration = 0810; + }; + 607FACE41AFB9204008FA782 = { + CreatedOnToolsVersion = 6.3.1; + LastSwiftMigration = 0810; + TestTargetID = 607FACCF1AFB9204008FA782; + }; + }; + }; + buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "EFCountingLabel" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 607FACC71AFB9204008FA782; + productRefGroup = 607FACD11AFB9204008FA782 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 607FACCF1AFB9204008FA782 /* EFCountingLabel_Example */, + 607FACE41AFB9204008FA782 /* EFCountingLabel_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 607FACCE1AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE31AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 0A40F974EE8CB74E06C4C12A /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; + 2363C73C7C0F4F0FBA152599 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 52F6EEAC6504D771C0BFC213 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 6AB7BDF143E1C94BFD6E58AF /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + C71742F2128CF550358AA153 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + E5E81E386983D648FA46AD94 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 607FACCC1AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE11AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 607FACCF1AFB9204008FA782 /* EFCountingLabel_Example */; + targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 607FACD91AFB9204008FA782 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 607FACDA1AFB9204008FA782 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { + isa = PBXVariantGroup; + children = ( + 607FACDF1AFB9204008FA782 /* Base */, + ); + name = LaunchScreen.xib; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 607FACED1AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 607FACEE1AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 607FACF01AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 276DE02E85C0E7D6ED37EDD4 /* Pods-EFCountingLabel_Example.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = P3X2725LYY; + INFOPLIST_FILE = EFCountingLabel/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + }; + name = Debug; + }; + 607FACF11AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A01CDD789E1606BABB71EF13 /* Pods-EFCountingLabel_Example.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = P3X2725LYY; + INFOPLIST_FILE = EFCountingLabel/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + }; + name = Release; + }; + 607FACF31AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8BCD51943A3A1640311342F6 /* Pods-EFCountingLabel_Tests.debug.xcconfig */; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + ); + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + }; + name = Debug; + }; + 607FACF41AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 47A0BF93F64203C763BE2E42 /* Pods-EFCountingLabel_Tests.release.xcconfig */; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + ); + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "EFCountingLabel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACED1AFB9204008FA782 /* Debug */, + 607FACEE1AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "EFCountingLabel_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF01AFB9204008FA782 /* Debug */, + 607FACF11AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "EFCountingLabel_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF31AFB9204008FA782 /* Debug */, + 607FACF41AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 607FACC81AFB9204008FA782 /* Project object */; +} diff --git a/EFCountingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/EFCountingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from EFCountingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Example/EFCountingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/Example/EFCountingLabel.xcodeproj/xcshareddata/xcschemes/EFCountingLabel-Example.xcscheme b/Example/EFCountingLabel.xcodeproj/xcshareddata/xcschemes/EFCountingLabel-Example.xcscheme new file mode 100644 index 0000000..c463fa4 --- /dev/null +++ b/Example/EFCountingLabel.xcodeproj/xcshareddata/xcschemes/EFCountingLabel-Example.xcscheme @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/EFCountingLabel.xcworkspace/contents.xcworkspacedata b/Example/EFCountingLabel.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..217b4f0 --- /dev/null +++ b/Example/EFCountingLabel.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example/EFCountingLabel/AppDelegate.swift b/Example/EFCountingLabel/AppDelegate.swift new file mode 100644 index 0000000..6c1746e --- /dev/null +++ b/Example/EFCountingLabel/AppDelegate.swift @@ -0,0 +1,46 @@ +// +// AppDelegate.swift +// EFCountingLabel +// +// Created by eyrefree on 12/11/2016. +// Copyright (c) 2016 eyrefree. All rights reserved. +// + +import UIKit + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + func applicationWillResignActive(_ application: UIApplication) { + // 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. + // 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. + } + + func applicationDidEnterBackground(_ application: UIApplication) { + // 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. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. + } + + func applicationWillEnterForeground(_ application: UIApplication) { + // 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. + } + + func applicationDidBecomeActive(_ application: UIApplication) { + // 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. + } + + func applicationWillTerminate(_ application: UIApplication) { + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. + } + + +} + diff --git a/Example/EFCountingLabel/Base.lproj/LaunchScreen.xib b/Example/EFCountingLabel/Base.lproj/LaunchScreen.xib new file mode 100644 index 0000000..c1613e9 --- /dev/null +++ b/Example/EFCountingLabel/Base.lproj/LaunchScreen.xib @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/EFCountingLabel/Base.lproj/Main.storyboard b/Example/EFCountingLabel/Base.lproj/Main.storyboard similarity index 71% rename from EFCountingLabel/Base.lproj/Main.storyboard rename to Example/EFCountingLabel/Base.lproj/Main.storyboard index 7de952b..51299a7 100644 --- a/EFCountingLabel/Base.lproj/Main.storyboard +++ b/Example/EFCountingLabel/Base.lproj/Main.storyboard @@ -1,5 +1,5 @@ - + @@ -10,18 +10,18 @@ - + - + - - + + - + - - - + + - + - + + diff --git a/EFCountingLabel/Assets.xcassets/AppIcon.appiconset/Contents.json b/Example/EFCountingLabel/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 77% rename from EFCountingLabel/Assets.xcassets/AppIcon.appiconset/Contents.json rename to Example/EFCountingLabel/Images.xcassets/AppIcon.appiconset/Contents.json index 118c98f..b8236c6 100644 --- a/EFCountingLabel/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/Example/EFCountingLabel/Images.xcassets/AppIcon.appiconset/Contents.json @@ -1,5 +1,15 @@ { "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, { "idiom" : "iphone", "size" : "29x29", diff --git a/EFCountingLabel/Info.plist b/Example/EFCountingLabel/Info.plist similarity index 92% rename from EFCountingLabel/Info.plist rename to Example/EFCountingLabel/Info.plist index 1f0abc7..f207db8 100644 --- a/EFCountingLabel/Info.plist +++ b/Example/EFCountingLabel/Info.plist @@ -16,8 +16,10 @@ APPL CFBundleShortVersionString 1.0.0 + CFBundleSignature + ???? CFBundleVersion - 1.0.0 + 1.0.0.0 LSRequiresIPhoneOS UILaunchStoryboardName diff --git a/EFCountingLabel/ViewController.swift b/Example/EFCountingLabel/ViewController.swift similarity index 95% rename from EFCountingLabel/ViewController.swift rename to Example/EFCountingLabel/ViewController.swift index c07ce53..f827518 100644 --- a/EFCountingLabel/ViewController.swift +++ b/Example/EFCountingLabel/ViewController.swift @@ -1,5 +1,13 @@ +// +// ViewController.swift +// EFCountingLabel +// +// Created by eyrefree on 12/11/2016. +// Copyright (c) 2016 eyrefree. All rights reserved. +// import UIKit +import EFCountingLabel class ViewController: UIViewController { diff --git a/Example/Podfile b/Example/Podfile new file mode 100644 index 0000000..a0428d6 --- /dev/null +++ b/Example/Podfile @@ -0,0 +1,11 @@ +use_frameworks! + +target 'EFCountingLabel_Example' do + pod 'EFCountingLabel', :path => '../' + + target 'EFCountingLabel_Tests' do + inherit! :search_paths + + + end +end diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..5204351 --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - EFCountingLabel (0.1.0) + +DEPENDENCIES: + - EFCountingLabel (from `../`) + +EXTERNAL SOURCES: + EFCountingLabel: + :path: ../ + +SPEC CHECKSUMS: + EFCountingLabel: 33b1ec89c167cf2939fafc4e4cfd240cee49f777 + +PODFILE CHECKSUM: cb71815bd093149775eebeffb99e17f933d089fa + +COCOAPODS: 1.0.1 diff --git a/Example/Pods/Local Podspecs/EFCountingLabel.podspec.json b/Example/Pods/Local Podspecs/EFCountingLabel.podspec.json new file mode 100644 index 0000000..9b8c5b6 --- /dev/null +++ b/Example/Pods/Local Podspecs/EFCountingLabel.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "EFCountingLabel", + "version": "0.1.0", + "summary": "A short description of EFCountingLabel.", + "description": "TODO: Add long description of the pod here.", + "homepage": "https://github.com//EFCountingLabel", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "eyrefree": "eyrefree@163.com" + }, + "source": { + "git": "https://github.com//EFCountingLabel.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "8.0" + }, + "source_files": "EFCountingLabel/Classes/**/*" +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..5204351 --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - EFCountingLabel (0.1.0) + +DEPENDENCIES: + - EFCountingLabel (from `../`) + +EXTERNAL SOURCES: + EFCountingLabel: + :path: ../ + +SPEC CHECKSUMS: + EFCountingLabel: 33b1ec89c167cf2939fafc4e4cfd240cee49f777 + +PODFILE CHECKSUM: cb71815bd093149775eebeffb99e17f933d089fa + +COCOAPODS: 1.0.1 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..4c004f8 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,704 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 22376D4A639806F448E989EB3E5A4D4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + 308B25ED5786CF0D0004B4F2AB1DD56F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + 59630B7A82F21776131A99DBBD989CCC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + 61F475074157BB765046EFC9C87A8C80 /* Pods-EFCountingLabel_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FC4F9776E6C005623FF2BDFD972697 /* Pods-EFCountingLabel_Example-dummy.m */; }; + 6E300AEDB979F7521AA4F95BC614D4C5 /* EFCountingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D881A7136BE84FFDFBD4C7DCA720F4D3 /* EFCountingLabel.swift */; }; + 7725304568D74EC44568DFEBB0A4AEB6 /* Pods-EFCountingLabel_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E5AE1455F2F7A7FA7027DE2FA7FD4078 /* Pods-EFCountingLabel_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81561D46325D11DE370164467A2BD1D1 /* EFCountingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE67ECB78C6F5E1A60C7CD0D6C81CF91 /* EFCountingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 97C6757878B948588E508B5223EC5F70 /* Pods-EFCountingLabel_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2B01F64CECECECE5421DF6496551473 /* Pods-EFCountingLabel_Tests-dummy.m */; }; + BDF24E125E3289F5FBD41ECD792A9342 /* Pods-EFCountingLabel_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7203028A3BC52BF8BA41868936A38371 /* Pods-EFCountingLabel_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E31E6D238F4DD51FF120AD9086BD93F6 /* EFCountingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9982E6C43B49255921ABDF98C591D72D /* EFCountingLabel-dummy.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + AC0232353B7AA5FDF420D99F7365D948 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 23C8E538C88BE39F8B9729343DAE9F07; + remoteInfo = EFCountingLabel; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0245E5D817BEB1C178577B411CB6804E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 127B8EB4241BE24BBF5AED5D2DB1DA8D /* Pods_EFCountingLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_EFCountingLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 14D7E7B29AEEC38DAA5777E036FD127D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 16814753EF830DD31395129FE719F3C8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 18D5DFF72F5853705A59BB40DF5A05BD /* Pods-EFCountingLabel_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-EFCountingLabel_Example-acknowledgements.markdown"; sourceTree = ""; }; + 1B528FBC5ED1DA821ED4AB03A009B5E9 /* Pods-EFCountingLabel_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EFCountingLabel_Example-resources.sh"; sourceTree = ""; }; + 2D5CDC63BC596D6F6E424594DB47A0D0 /* Pods_EFCountingLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_EFCountingLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3C551EE3CB50DD353AF56B92807F2CA7 /* Pods-EFCountingLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EFCountingLabel_Example.release.xcconfig"; sourceTree = ""; }; + 46F5A89368B8F8BE1BA7B8ACD2075C42 /* EFCountingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = EFCountingLabel.modulemap; sourceTree = ""; }; + 49550CE5E9B91E25569EB242DAEAAF27 /* EFCountingLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EFCountingLabel.xcconfig; sourceTree = ""; }; + 6B3FE35794ED170883E538A8D03EA013 /* Pods-EFCountingLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EFCountingLabel_Tests.debug.xcconfig"; sourceTree = ""; }; + 7203028A3BC52BF8BA41868936A38371 /* Pods-EFCountingLabel_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-EFCountingLabel_Tests-umbrella.h"; sourceTree = ""; }; + 750C64F7CFC47F48B78BA19E097F9B7D /* Pods-EFCountingLabel_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-EFCountingLabel_Tests-acknowledgements.markdown"; sourceTree = ""; }; + 79B1B958DCDC39F6CB83C66A978458B3 /* EFCountingLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = EFCountingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7E6B2B178FCAD50B3F5D95202992DDAA /* Pods-EFCountingLabel_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-EFCountingLabel_Example.modulemap"; sourceTree = ""; }; + 7F9F6834BEA5CC7FCB0C67BE19B744DB /* Pods-EFCountingLabel_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EFCountingLabel_Tests-frameworks.sh"; sourceTree = ""; }; + 91F65BB77FE68B4F0A4FC12A7735FA3B /* Pods-EFCountingLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EFCountingLabel_Tests.release.xcconfig"; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9982E6C43B49255921ABDF98C591D72D /* EFCountingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EFCountingLabel-dummy.m"; sourceTree = ""; }; + B050F0A81DF905C38099E90061C33326 /* Pods-EFCountingLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EFCountingLabel_Example.debug.xcconfig"; sourceTree = ""; }; + BE67ECB78C6F5E1A60C7CD0D6C81CF91 /* EFCountingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EFCountingLabel-umbrella.h"; sourceTree = ""; }; + C07AC578576C0D1080B939F8BFE4A21E /* EFCountingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EFCountingLabel-prefix.pch"; sourceTree = ""; }; + C11CAF9A033B9C9B19513D2EC14106CB /* Pods-EFCountingLabel_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EFCountingLabel_Tests-resources.sh"; sourceTree = ""; }; + C2FC4F9776E6C005623FF2BDFD972697 /* Pods-EFCountingLabel_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EFCountingLabel_Example-dummy.m"; sourceTree = ""; }; + CB0AB497998B520674C2E9CA66E1D823 /* Pods-EFCountingLabel_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EFCountingLabel_Example-frameworks.sh"; sourceTree = ""; }; + CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + D881A7136BE84FFDFBD4C7DCA720F4D3 /* EFCountingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = EFCountingLabel.swift; sourceTree = ""; }; + E2B01F64CECECECE5421DF6496551473 /* Pods-EFCountingLabel_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EFCountingLabel_Tests-dummy.m"; sourceTree = ""; }; + E5AE1455F2F7A7FA7027DE2FA7FD4078 /* Pods-EFCountingLabel_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-EFCountingLabel_Example-umbrella.h"; sourceTree = ""; }; + EBCC6FC4438A8753CE6CC06D3C44808B /* Pods-EFCountingLabel_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EFCountingLabel_Example-acknowledgements.plist"; sourceTree = ""; }; + EE598F210F32FEE3DBD663AC86EAEB29 /* Pods-EFCountingLabel_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EFCountingLabel_Tests-acknowledgements.plist"; sourceTree = ""; }; + F0D9C5BACDD36212F24413CEAD15FC44 /* Pods-EFCountingLabel_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-EFCountingLabel_Tests.modulemap"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 1102D03001A01286CCC70E42D537C4DC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 308B25ED5786CF0D0004B4F2AB1DD56F /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9F4DA3E4A4F65F6AF32B3818FFB63B68 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 59630B7A82F21776131A99DBBD989CCC /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E9B2AC28105281366339574CD66CD453 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 22376D4A639806F448E989EB3E5A4D4B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 2406C20EAD1C9FC83E170D2B836EDBC4 /* Products */ = { + isa = PBXGroup; + children = ( + 79B1B958DCDC39F6CB83C66A978458B3 /* EFCountingLabel.framework */, + 2D5CDC63BC596D6F6E424594DB47A0D0 /* Pods_EFCountingLabel_Example.framework */, + 127B8EB4241BE24BBF5AED5D2DB1DA8D /* Pods_EFCountingLabel_Tests.framework */, + ); + name = Products; + sourceTree = ""; + }; + 2F67B20511CB49B9E453CA9FFD33D57C /* Pods-EFCountingLabel_Example */ = { + isa = PBXGroup; + children = ( + 16814753EF830DD31395129FE719F3C8 /* Info.plist */, + 7E6B2B178FCAD50B3F5D95202992DDAA /* Pods-EFCountingLabel_Example.modulemap */, + 18D5DFF72F5853705A59BB40DF5A05BD /* Pods-EFCountingLabel_Example-acknowledgements.markdown */, + EBCC6FC4438A8753CE6CC06D3C44808B /* Pods-EFCountingLabel_Example-acknowledgements.plist */, + C2FC4F9776E6C005623FF2BDFD972697 /* Pods-EFCountingLabel_Example-dummy.m */, + CB0AB497998B520674C2E9CA66E1D823 /* Pods-EFCountingLabel_Example-frameworks.sh */, + 1B528FBC5ED1DA821ED4AB03A009B5E9 /* Pods-EFCountingLabel_Example-resources.sh */, + E5AE1455F2F7A7FA7027DE2FA7FD4078 /* Pods-EFCountingLabel_Example-umbrella.h */, + B050F0A81DF905C38099E90061C33326 /* Pods-EFCountingLabel_Example.debug.xcconfig */, + 3C551EE3CB50DD353AF56B92807F2CA7 /* Pods-EFCountingLabel_Example.release.xcconfig */, + ); + name = "Pods-EFCountingLabel_Example"; + path = "Target Support Files/Pods-EFCountingLabel_Example"; + sourceTree = ""; + }; + 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = { + isa = PBXGroup; + children = ( + CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 43AD1D75DE8F250E3D7B05D031D93536 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 2F67B20511CB49B9E453CA9FFD33D57C /* Pods-EFCountingLabel_Example */, + 4933CFC7065DF6B6A224B8A1E5DD6414 /* Pods-EFCountingLabel_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 4933CFC7065DF6B6A224B8A1E5DD6414 /* Pods-EFCountingLabel_Tests */ = { + isa = PBXGroup; + children = ( + 0245E5D817BEB1C178577B411CB6804E /* Info.plist */, + F0D9C5BACDD36212F24413CEAD15FC44 /* Pods-EFCountingLabel_Tests.modulemap */, + 750C64F7CFC47F48B78BA19E097F9B7D /* Pods-EFCountingLabel_Tests-acknowledgements.markdown */, + EE598F210F32FEE3DBD663AC86EAEB29 /* Pods-EFCountingLabel_Tests-acknowledgements.plist */, + E2B01F64CECECECE5421DF6496551473 /* Pods-EFCountingLabel_Tests-dummy.m */, + 7F9F6834BEA5CC7FCB0C67BE19B744DB /* Pods-EFCountingLabel_Tests-frameworks.sh */, + C11CAF9A033B9C9B19513D2EC14106CB /* Pods-EFCountingLabel_Tests-resources.sh */, + 7203028A3BC52BF8BA41868936A38371 /* Pods-EFCountingLabel_Tests-umbrella.h */, + 6B3FE35794ED170883E538A8D03EA013 /* Pods-EFCountingLabel_Tests.debug.xcconfig */, + 91F65BB77FE68B4F0A4FC12A7735FA3B /* Pods-EFCountingLabel_Tests.release.xcconfig */, + ); + name = "Pods-EFCountingLabel_Tests"; + path = "Target Support Files/Pods-EFCountingLabel_Tests"; + sourceTree = ""; + }; + 55CF57891284CF1DFFDF079F1E2B9F1A /* EFCountingLabel */ = { + isa = PBXGroup; + children = ( + 594829CCC851530D2E12E43835E0943B /* Classes */, + ); + path = EFCountingLabel; + sourceTree = ""; + }; + 594829CCC851530D2E12E43835E0943B /* Classes */ = { + isa = PBXGroup; + children = ( + D881A7136BE84FFDFBD4C7DCA720F4D3 /* EFCountingLabel.swift */, + ); + path = Classes; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + BB56A91167F1CC01052F24DDDF1F48D6 /* Development Pods */, + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, + 2406C20EAD1C9FC83E170D2B836EDBC4 /* Products */, + 43AD1D75DE8F250E3D7B05D031D93536 /* Targets Support Files */, + ); + sourceTree = ""; + }; + BB56A91167F1CC01052F24DDDF1F48D6 /* Development Pods */ = { + isa = PBXGroup; + children = ( + FB92CBD483C8CD097A2F65777326655F /* EFCountingLabel */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D210C8C5DB9A42C91B5C9221754A632A /* Support Files */ = { + isa = PBXGroup; + children = ( + 46F5A89368B8F8BE1BA7B8ACD2075C42 /* EFCountingLabel.modulemap */, + 49550CE5E9B91E25569EB242DAEAAF27 /* EFCountingLabel.xcconfig */, + 9982E6C43B49255921ABDF98C591D72D /* EFCountingLabel-dummy.m */, + C07AC578576C0D1080B939F8BFE4A21E /* EFCountingLabel-prefix.pch */, + BE67ECB78C6F5E1A60C7CD0D6C81CF91 /* EFCountingLabel-umbrella.h */, + 14D7E7B29AEEC38DAA5777E036FD127D /* Info.plist */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/EFCountingLabel"; + sourceTree = ""; + }; + FB92CBD483C8CD097A2F65777326655F /* EFCountingLabel */ = { + isa = PBXGroup; + children = ( + 55CF57891284CF1DFFDF079F1E2B9F1A /* EFCountingLabel */, + D210C8C5DB9A42C91B5C9221754A632A /* Support Files */, + ); + name = EFCountingLabel; + path = ../..; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 37A5D37FF94A8D72617E8E08F5BEADE0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7725304568D74EC44568DFEBB0A4AEB6 /* Pods-EFCountingLabel_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3B355E3D40864F2B426DA69672424CE0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BDF24E125E3289F5FBD41ECD792A9342 /* Pods-EFCountingLabel_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 90F8848CFDD373BD8C177B7E8C24BC06 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 81561D46325D11DE370164467A2BD1D1 /* EFCountingLabel-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 23C8E538C88BE39F8B9729343DAE9F07 /* EFCountingLabel */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6BF44A6AE78649903A5DFBCBB73F0968 /* Build configuration list for PBXNativeTarget "EFCountingLabel" */; + buildPhases = ( + EE4F8E537B95A177FE9D6F9D731A9B4A /* Sources */, + 1102D03001A01286CCC70E42D537C4DC /* Frameworks */, + 90F8848CFDD373BD8C177B7E8C24BC06 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = EFCountingLabel; + productName = EFCountingLabel; + productReference = 79B1B958DCDC39F6CB83C66A978458B3 /* EFCountingLabel.framework */; + productType = "com.apple.product-type.framework"; + }; + 7E1839E99E9786046CAE20C2CB27E48A /* Pods-EFCountingLabel_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 69EDA1FB4EC38D29191FAAFFDDFA48C4 /* Build configuration list for PBXNativeTarget "Pods-EFCountingLabel_Example" */; + buildPhases = ( + 6724D042F6A8C3A34575F2F1323600B3 /* Sources */, + E9B2AC28105281366339574CD66CD453 /* Frameworks */, + 37A5D37FF94A8D72617E8E08F5BEADE0 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 815101471D75C456E29C3AE07B9C8025 /* PBXTargetDependency */, + ); + name = "Pods-EFCountingLabel_Example"; + productName = "Pods-EFCountingLabel_Example"; + productReference = 2D5CDC63BC596D6F6E424594DB47A0D0 /* Pods_EFCountingLabel_Example.framework */; + productType = "com.apple.product-type.framework"; + }; + 8498E2F48E48B55E19F564C2B40B0506 /* Pods-EFCountingLabel_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = BF47D45CB1191263145C4C4FD75FADA8 /* Build configuration list for PBXNativeTarget "Pods-EFCountingLabel_Tests" */; + buildPhases = ( + 0784E2C4520F23099C6E62D870785F3E /* Sources */, + 9F4DA3E4A4F65F6AF32B3818FFB63B68 /* Frameworks */, + 3B355E3D40864F2B426DA69672424CE0 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-EFCountingLabel_Tests"; + productName = "Pods-EFCountingLabel_Tests"; + productReference = 127B8EB4241BE24BBF5AED5D2DB1DA8D /* Pods_EFCountingLabel_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0730; + LastUpgradeCheck = 0700; + TargetAttributes = { + 23C8E538C88BE39F8B9729343DAE9F07 = { + LastSwiftMigration = 0810; + }; + 7E1839E99E9786046CAE20C2CB27E48A = { + LastSwiftMigration = 0810; + }; + 8498E2F48E48B55E19F564C2B40B0506 = { + LastSwiftMigration = 0810; + }; + }; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = 2406C20EAD1C9FC83E170D2B836EDBC4 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 23C8E538C88BE39F8B9729343DAE9F07 /* EFCountingLabel */, + 7E1839E99E9786046CAE20C2CB27E48A /* Pods-EFCountingLabel_Example */, + 8498E2F48E48B55E19F564C2B40B0506 /* Pods-EFCountingLabel_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 0784E2C4520F23099C6E62D870785F3E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C6757878B948588E508B5223EC5F70 /* Pods-EFCountingLabel_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6724D042F6A8C3A34575F2F1323600B3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 61F475074157BB765046EFC9C87A8C80 /* Pods-EFCountingLabel_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EE4F8E537B95A177FE9D6F9D731A9B4A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E31E6D238F4DD51FF120AD9086BD93F6 /* EFCountingLabel-dummy.m in Sources */, + 6E300AEDB979F7521AA4F95BC614D4C5 /* EFCountingLabel.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 815101471D75C456E29C3AE07B9C8025 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EFCountingLabel; + target = 23C8E538C88BE39F8B9729343DAE9F07 /* EFCountingLabel */; + targetProxy = AC0232353B7AA5FDF420D99F7365D948 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 072D8B6FF29377BCEEB31352994F153B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B050F0A81DF905C38099E90061C33326 /* Pods-EFCountingLabel_Example.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-EFCountingLabel_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_EFCountingLabel_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3D25D3E5A3337CD73766125D728ABDE5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91F65BB77FE68B4F0A4FC12A7735FA3B /* Pods-EFCountingLabel_Tests.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-EFCountingLabel_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_EFCountingLabel_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 58B21F4C0852BF4262800A87FCCD7209 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 49550CE5E9B91E25569EB242DAEAAF27 /* EFCountingLabel.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/EFCountingLabel/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/EFCountingLabel/EFCountingLabel.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = EFCountingLabel; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 9517E76BE4B26618CB7C478085EFF368 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6B3FE35794ED170883E538A8D03EA013 /* Pods-EFCountingLabel_Tests.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-EFCountingLabel_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_EFCountingLabel_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + AC0EFD62E4236C0A3AF344A307B2D76B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 49550CE5E9B91E25569EB242DAEAAF27 /* EFCountingLabel.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/EFCountingLabel/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/EFCountingLabel/EFCountingLabel.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = EFCountingLabel; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + ONLY_ACTIVE_ARCH = YES; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + EC7E2B90D2C4D7AF7F5EDC0E2186EA34 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3C551EE3CB50DD353AF56B92807F2CA7 /* Pods-EFCountingLabel_Example.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-EFCountingLabel_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_EFCountingLabel_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */, + 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 69EDA1FB4EC38D29191FAAFFDDFA48C4 /* Build configuration list for PBXNativeTarget "Pods-EFCountingLabel_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 072D8B6FF29377BCEEB31352994F153B /* Debug */, + EC7E2B90D2C4D7AF7F5EDC0E2186EA34 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6BF44A6AE78649903A5DFBCBB73F0968 /* Build configuration list for PBXNativeTarget "EFCountingLabel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AC0EFD62E4236C0A3AF344A307B2D76B /* Debug */, + 58B21F4C0852BF4262800A87FCCD7209 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BF47D45CB1191263145C4C4FD75FADA8 /* Build configuration list for PBXNativeTarget "Pods-EFCountingLabel_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9517E76BE4B26618CB7C478085EFF368 /* Debug */, + 3D25D3E5A3337CD73766125D728ABDE5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-dummy.m b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-dummy.m new file mode 100644 index 0000000..060c4ef --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EFCountingLabel : NSObject +@end +@implementation PodsDummy_EFCountingLabel +@end diff --git a/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch new file mode 100644 index 0000000..aa992a4 --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ +#import +#endif + diff --git a/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-umbrella.h b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-umbrella.h new file mode 100644 index 0000000..e99ba66 --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double EFCountingLabelVersionNumber; +FOUNDATION_EXPORT const unsigned char EFCountingLabelVersionString[]; + diff --git a/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.modulemap b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.modulemap new file mode 100644 index 0000000..770f624 --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.modulemap @@ -0,0 +1,6 @@ +framework module EFCountingLabel { + umbrella header "EFCountingLabel-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.xcconfig b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.xcconfig new file mode 100644 index 0000000..041de75 --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/EFCountingLabel.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Example/Pods/Target Support Files/EFCountingLabel/Info.plist b/Example/Pods/Target Support Files/EFCountingLabel/Info.plist new file mode 100644 index 0000000..c94bde4 --- /dev/null +++ b/Example/Pods/Target Support Files/EFCountingLabel/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Info.plist b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.markdown new file mode 100644 index 0000000..9a5a85d --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## EFCountingLabel + +Copyright (c) 2016 eyrefree + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.plist new file mode 100644 index 0000000..c0554ab --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-acknowledgements.plist @@ -0,0 +1,56 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016 eyrefree <eyrefree@eyrefree.org> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + Title + EFCountingLabel + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-dummy.m b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-dummy.m new file mode 100644 index 0000000..c61832d --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_EFCountingLabel_Example : NSObject +@end +@implementation PodsDummy_Pods_EFCountingLabel_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-frameworks.sh new file mode 100755 index 0000000..09c3edb --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-frameworks.sh @@ -0,0 +1,91 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/EFCountingLabel/EFCountingLabel.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/EFCountingLabel/EFCountingLabel.framework" +fi diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-resources.sh b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-resources.sh new file mode 100755 index 0000000..0a15615 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +realpath() { + DIRECTORY="$(cd "${1%/*}" && pwd)" + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-umbrella.h new file mode 100644 index 0000000..b05cf27 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_EFCountingLabel_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_EFCountingLabel_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.debug.xcconfig new file mode 100644 index 0000000..dd44317 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.debug.xcconfig @@ -0,0 +1,10 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel/EFCountingLabel.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "EFCountingLabel" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap new file mode 100644 index 0000000..6599eaa --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_EFCountingLabel_Example { + umbrella header "Pods-EFCountingLabel_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.release.xcconfig new file mode 100644 index 0000000..dd44317 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Example/Pods-EFCountingLabel_Example.release.xcconfig @@ -0,0 +1,10 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel/EFCountingLabel.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "EFCountingLabel" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-dummy.m new file mode 100644 index 0000000..2177139 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_EFCountingLabel_Tests : NSObject +@end +@implementation PodsDummy_Pods_EFCountingLabel_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-frameworks.sh new file mode 100755 index 0000000..893c16a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-frameworks.sh @@ -0,0 +1,84 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-resources.sh new file mode 100755 index 0000000..0a15615 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +realpath() { + DIRECTORY="$(cd "${1%/*}" && pwd)" + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-umbrella.h new file mode 100644 index 0000000..4647a6a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_EFCountingLabel_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_EFCountingLabel_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.debug.xcconfig new file mode 100644 index 0000000..1cc3b52 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.debug.xcconfig @@ -0,0 +1,7 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel/EFCountingLabel.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap new file mode 100644 index 0000000..63fd63c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_EFCountingLabel_Tests { + umbrella header "Pods-EFCountingLabel_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.release.xcconfig new file mode 100644 index 0000000..1cc3b52 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-EFCountingLabel_Tests/Pods-EFCountingLabel_Tests.release.xcconfig @@ -0,0 +1,7 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/EFCountingLabel/EFCountingLabel.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Tests/Info.plist b/Example/Tests/Info.plist new file mode 100644 index 0000000..ba72822 --- /dev/null +++ b/Example/Tests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/Example/Tests/Tests.swift b/Example/Tests/Tests.swift new file mode 100644 index 0000000..3c32e95 --- /dev/null +++ b/Example/Tests/Tests.swift @@ -0,0 +1,29 @@ +import UIKit +import XCTest +import EFCountingLabel + +class Tests: XCTestCase { + + override func setUp() { + super.setUp() + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDown() { + // Put teardown code here. This method is called after the invocation of each test method in the class. + super.tearDown() + } + + func testExample() { + // This is an example of a functional test case. + XCTAssert(true, "Pass") + } + + func testPerformanceExample() { + // This is an example of a performance test case. + self.measure() { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 index 0e2b86f..9d5d1cf --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,4 @@ -MIT License - -Copyright (c) 2016 EyreFree +Copyright (c) 2016 eyrefree Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -9,13 +7,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 6d65070..1a49628 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ -# UICountingLabel -UICountingLabel, Swift, NSTimer: A Label count from Number_1 to Number_2; +# EFCountingLabel + +[![CI Status](http://img.shields.io/travis/eyrefree/EFCountingLabel.svg?style=flat)](https://travis-ci.org/eyrefree/EFCountingLabel) +[![Version](https://img.shields.io/cocoapods/v/EFCountingLabel.svg?style=flat)](http://cocoapods.org/pods/EFCountingLabel) +[![License](https://img.shields.io/cocoapods/l/EFCountingLabel.svg?style=flat)](http://cocoapods.org/pods/EFCountingLabel) +[![Platform](https://img.shields.io/cocoapods/p/EFCountingLabel.svg?style=flat)](http://cocoapods.org/pods/EFCountingLabel) + +## Example + +To run the example project, clone the repo, and run `pod install` from the Example directory first. + +## Requirements + +## Installation + +EFCountingLabel is available through [CocoaPods](http://cocoapods.org). To install +it, simply add the following line to your Podfile: + +```ruby +pod "EFCountingLabel" +``` + +## Author + +eyrefree, eyrefree@eyrefree.org + +## License + +EFCountingLabel is available under the MIT license. See the LICENSE file for more info. diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj new file mode 120000 index 0000000..3c5a8e7 --- /dev/null +++ b/_Pods.xcodeproj @@ -0,0 +1 @@ +Example/Pods/Pods.xcodeproj \ No newline at end of file