├── .swift-version ├── ArabicTimeAgo ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ArTimeAgo.swift ├── _Pods.xcodeproj ├── art └── ArabicTimeAgo_demo.png ├── ArabicTimeAgoExample ├── Pods │ ├── Target Support Files │ │ ├── ArabicTimeAgo │ │ │ ├── ArabicTimeAgo.modulemap │ │ │ ├── ArabicTimeAgo-dummy.m │ │ │ ├── ArabicTimeAgo-prefix.pch │ │ │ ├── ArabicTimeAgo-umbrella.h │ │ │ ├── ArabicTimeAgo.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-ArabicTimeAgoExample │ │ │ ├── Pods-ArabicTimeAgoExample.modulemap │ │ │ ├── Pods-ArabicTimeAgoExample-dummy.m │ │ │ ├── Pods-ArabicTimeAgoExample-umbrella.h │ │ │ ├── Pods-ArabicTimeAgoExample.debug.xcconfig │ │ │ ├── Pods-ArabicTimeAgoExample.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-ArabicTimeAgoExample-acknowledgements.markdown │ │ │ ├── Pods-ArabicTimeAgoExample-acknowledgements.plist │ │ │ ├── Pods-ArabicTimeAgoExample-frameworks.sh │ │ │ └── Pods-ArabicTimeAgoExample-resources.sh │ │ ├── Pods-ArabicTimeAgoExampleTests │ │ │ ├── Pods-ArabicTimeAgoExampleTests-acknowledgements.markdown │ │ │ ├── Pods-ArabicTimeAgoExampleTests.modulemap │ │ │ ├── Pods-ArabicTimeAgoExampleTests-dummy.m │ │ │ ├── Pods-ArabicTimeAgoExampleTests-umbrella.h │ │ │ ├── Pods-ArabicTimeAgoExampleTests.debug.xcconfig │ │ │ ├── Pods-ArabicTimeAgoExampleTests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-ArabicTimeAgoExampleTests-acknowledgements.plist │ │ │ ├── Pods-ArabicTimeAgoExampleTests-frameworks.sh │ │ │ └── Pods-ArabicTimeAgoExampleTests-resources.sh │ │ └── Pods-ArabicTimeAgoExampleUITests │ │ │ ├── Pods-ArabicTimeAgoExampleUITests-acknowledgements.markdown │ │ │ ├── Pods-ArabicTimeAgoExampleUITests.modulemap │ │ │ ├── Pods-ArabicTimeAgoExampleUITests-dummy.m │ │ │ ├── Pods-ArabicTimeAgoExampleUITests-umbrella.h │ │ │ ├── Pods-ArabicTimeAgoExampleUITests.debug.xcconfig │ │ │ ├── Pods-ArabicTimeAgoExampleUITests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-ArabicTimeAgoExampleUITests-acknowledgements.plist │ │ │ ├── Pods-ArabicTimeAgoExampleUITests-frameworks.sh │ │ │ └── Pods-ArabicTimeAgoExampleUITests-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── ArabicTimeAgo.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── ArabicTimeAgoExample.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── ArabicTimeAgoExample.xcworkspace │ └── contents.xcworkspacedata ├── Podfile.lock ├── Podfile ├── ArabicTimeAgoExampleTests │ ├── Info.plist │ └── ArabicTimeAgoExampleTests.swift ├── ArabicTimeAgoExampleUITests │ ├── Info.plist │ └── ArabicTimeAgoExampleUITests.swift └── ArabicTimeAgoExample │ ├── ViewController.swift │ ├── Info.plist │ ├── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.storyboard │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ └── AppDelegate.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── README.md └── ArabicTimeAgo.podspec /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /ArabicTimeAgo/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ArabicTimeAgo/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /art/ArabicTimeAgo_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemix/ArabicTimeAgo/HEAD/art/ArabicTimeAgo_demo.png -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/ArabicTimeAgo.modulemap: -------------------------------------------------------------------------------- 1 | framework module ArabicTimeAgo { 2 | umbrella header "ArabicTimeAgo-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/ArabicTimeAgo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ArabicTimeAgo : NSObject 3 | @end 4 | @implementation PodsDummy_ArabicTimeAgo 5 | @end 6 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ArabicTimeAgoExample { 2 | umbrella header "Pods-ArabicTimeAgoExample-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ArabicTimeAgoExample : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ArabicTimeAgoExample 5 | @end 6 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ArabicTimeAgoExampleTests { 2 | umbrella header "Pods-ArabicTimeAgoExampleTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ArabicTimeAgoExampleTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ArabicTimeAgoExampleTests 5 | @end 6 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ArabicTimeAgoExampleUITests { 2 | umbrella header "Pods-ArabicTimeAgoExampleUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ArabicTimeAgoExampleUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ArabicTimeAgoExampleUITests 5 | @end 6 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/ArabicTimeAgo-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ArabicTimeAgo (0.1.1) 3 | 4 | DEPENDENCIES: 5 | - ArabicTimeAgo (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ArabicTimeAgo: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ArabicTimeAgo: 258b9937230d7122fd5e1c25ebb31d307dd878fc 13 | 14 | PODFILE CHECKSUM: 06b1996efc6c68ed7a29d7b6f2425c05c0770153 15 | 16 | COCOAPODS: 1.2.0.beta.3 17 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ArabicTimeAgo (0.1.1) 3 | 4 | DEPENDENCIES: 5 | - ArabicTimeAgo (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ArabicTimeAgo: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ArabicTimeAgo: 258b9937230d7122fd5e1c25ebb31d307dd878fc 13 | 14 | PODFILE CHECKSUM: 06b1996efc6c68ed7a29d7b6f2425c05c0770153 15 | 16 | COCOAPODS: 1.2.0.beta.3 17 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/ArabicTimeAgo-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ArabicTimeAgoVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ArabicTimeAgoVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ArabicTimeAgoExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ArabicTimeAgoExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ArabicTimeAgoExampleTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ArabicTimeAgoExampleTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ArabicTimeAgoExampleUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ArabicTimeAgoExampleUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/ArabicTimeAgo.xcworkspace -scheme ArabicTimeAgo-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | platform :ios, '9.0' 3 | 4 | target 'ArabicTimeAgoExample' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for ArabicTimeAgoExample 9 | pod "ArabicTimeAgo", :path => '../' 10 | target 'ArabicTimeAgoExampleTests' do 11 | inherit! :search_paths 12 | # Pods for testing 13 | end 14 | 15 | target 'ArabicTimeAgoExampleUITests' do 16 | inherit! :search_paths 17 | # Pods for testing 18 | end 19 | 20 | end 21 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/ArabicTimeAgo.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Local Podspecs/ArabicTimeAgo.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ArabicTimeAgo", 3 | "version": "0.1.1", 4 | "summary": "Arabic and English time ago in Swift", 5 | "description": "2017-01-19 09:12:07 to '12 hours ago' or 'قبل 13 ساعة'", 6 | "homepage": "https://github.com/bluemix/ArabicTimeAgo", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Abdulmomen Kadum عبدالمؤمن كاظم": "a.bluemix@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/bluemix/ArabicTimeAgo.git", 16 | "tag": "0.1.1" 17 | }, 18 | "social_media_url": "https://twitter.com/bluemix2", 19 | "platforms": { 20 | "ios": "8.0" 21 | }, 22 | "source_files": "ArabicTimeAgo/Classes/**/*" 23 | } 24 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "ArabicTimeAgo" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/ArabicTimeAgo/ArabicTimeAgo.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "ArabicTimeAgo" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExampleUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ArabicTimeAgoExample 4 | // 5 | // Created by blueMix on 12/4/17. 6 | // Copyright © 2017 Fomalhaut.io. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import ArabicTimeAgo 11 | 12 | class ViewController: UIViewController { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | let itemDateStr = "2017-01-19 09:12:07" 17 | let formatter = DateFormatter() 18 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss" 19 | 20 | if let date = formatter.date(from: itemDateStr) { 21 | print(TimeAgo.calculate(date: date, isAr: true)) // قبل 13 ساعة 22 | print(TimeAgo.calculate(date: date, isAr: false)) // 13 hours ago 23 | } 24 | } 25 | 26 | override func didReceiveMemoryWarning() { 27 | super.didReceiveMemoryWarning() 28 | // Dispose of any resources that can be recreated. 29 | } 30 | 31 | 32 | } 33 | 34 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Abdulmomen Kadum عبدالمؤمن كاظم 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExampleTests/ArabicTimeAgoExampleTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ArabicTimeAgoExampleTests.swift 3 | // ArabicTimeAgoExampleTests 4 | // 5 | // Created by blueMix on 12/4/17. 6 | // Copyright © 2017 Fomalhaut.io. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import ArabicTimeAgoExample 11 | 12 | class ArabicTimeAgoExampleTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | } 18 | 19 | override func tearDown() { 20 | // Put teardown code here. This method is called after the invocation of each test method in the class. 21 | super.tearDown() 22 | } 23 | 24 | func testExample() { 25 | // This is an example of a functional test case. 26 | // Use XCTAssert and related functions to verify your tests produce the correct results. 27 | } 28 | 29 | func testPerformanceExample() { 30 | // This is an example of a performance test case. 31 | self.measure { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ArabicTimeAgo 5 | 6 | Copyright (c) 2017 Abdulmomen Kadum عبدالمؤمن كاظم 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExampleUITests/ArabicTimeAgoExampleUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ArabicTimeAgoExampleUITests.swift 3 | // ArabicTimeAgoExampleUITests 4 | // 5 | // Created by blueMix on 12/4/17. 6 | // Copyright © 2017 Fomalhaut.io. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class ArabicTimeAgoExampleUITests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | 18 | // In UI tests it is usually best to stop immediately when a failure occurs. 19 | continueAfterFailure = false 20 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 21 | XCUIApplication().launch() 22 | 23 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 24 | } 25 | 26 | override func tearDown() { 27 | // Put teardown code here. This method is called after the invocation of each test method in the class. 28 | super.tearDown() 29 | } 30 | 31 | func testExample() { 32 | // Use recording to get started writing UI tests. 33 | // Use XCTAssert and related functions to verify your tests produce the correct results. 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ArabicTimeAgo 2 | 3 | [![CI Status](http://img.shields.io/travis/Abdulmomen Kadum عبدالمؤمن كاظم/ArabicTimeAgo.svg?style=flat)](https://travis-ci.org/Abdulmomen Kadum عبدالمؤمن كاظم/ArabicTimeAgo) 4 | [![Version](https://img.shields.io/cocoapods/v/ArabicTimeAgo.svg?style=flat)](http://cocoapods.org/pods/ArabicTimeAgo) 5 | [![License](https://img.shields.io/cocoapods/l/ArabicTimeAgo.svg?style=flat)](http://cocoapods.org/pods/ArabicTimeAgo) 6 | [![Platform](https://img.shields.io/cocoapods/p/ArabicTimeAgo.svg?style=flat)](http://cocoapods.org/pods/ArabicTimeAgo) 7 | 8 | 9 | 10 | [![Screenshot](art/ArabicTimeAgo_demo.png)](http://cocoapods.org/pods/ArabicTimeAgo) 11 | 12 | 13 | 14 | ## Usage 15 | 16 | ```swift 17 | import ArabicTimeAgo 18 | ... 19 | 20 | let itemDateStr = "2017-01-19 09:12:07" 21 | let formatter = DateFormatter() 22 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss" 23 | 24 | if let date = formatter.date(from: itemDateStr) { 25 | print(TimeAgo.calculate(date: date, isAr: true)) // قبل 13 ساعة 26 | print(TimeAgo.calculate(date: date, isAr: false)) // 13 hours ago 27 | } 28 | 29 | ``` 30 | 31 | ## Requirements 32 | Swift 3 33 | 34 | 35 | ## Installation 36 | 37 | ArabicTimeAgo is available through [CocoaPods](http://cocoapods.org). To install 38 | it, simply add the following line to your Podfile: 39 | 40 | ```ruby 41 | pod "ArabicTimeAgo" 42 | ``` 43 | 44 | ## Author 45 | 46 | Abdulmomen Kadum عبدالمؤمن كاظم, a.bluemix@gmail.com 47 | 48 | ## License 49 | 50 | ArabicTimeAgo is available under the MIT license. See the LICENSE file for more info. 51 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ArabicTimeAgo.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ArabicTimeAgo.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'ArabicTimeAgo' 11 | s.version = '0.1.1' 12 | s.summary = 'Arabic and English time ago in Swift' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = "2017-01-19 09:12:07 to '12 hours ago' or 'قبل 13 ساعة'" 21 | 22 | s.homepage = 'https://github.com/bluemix/ArabicTimeAgo' 23 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 24 | s.license = { :type => 'MIT', :file => 'LICENSE' } 25 | s.author = { 'Abdulmomen Kadum عبدالمؤمن كاظم' => 'a.bluemix@gmail.com' } 26 | s.source = { :git => 'https://github.com/bluemix/ArabicTimeAgo.git', :tag => s.version.to_s } 27 | s.social_media_url = 'https://twitter.com/bluemix2' 28 | 29 | s.ios.deployment_target = '8.0' 30 | 31 | s.source_files = 'ArabicTimeAgo/Classes/**/*' 32 | 33 | # s.resource_bundles = { 34 | # 'ArabicTimeAgo' => ['ArabicTimeAgo/Assets/*.png'] 35 | # } 36 | 37 | # s.public_header_files = 'Pod/Classes/**/*.h' 38 | # s.frameworks = 'UIKit', 'MapKit' 39 | # s.dependency 'AFNetworking', '~> 2.3' 40 | end 41 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | } 88 | ], 89 | "info" : { 90 | "version" : 1, 91 | "author" : "xcode" 92 | } 93 | } -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // ArabicTimeAgoExample 4 | // 5 | // Created by blueMix on 12/4/17. 6 | // Copyright © 2017 Fomalhaut.io. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 Abdulmomen Kadum عبدالمؤمن كاظم <a.bluemix@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | ArabicTimeAgo 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/ArabicTimeAgo/ArabicTimeAgo.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/ArabicTimeAgo/ArabicTimeAgo.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /ArabicTimeAgo/Classes/ArTimeAgo.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ArTimeAgo.swift 3 | // 4 | // 5 | // Created by blueMix on 1/19/17. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | public class TimeAgo { 12 | 13 | enum Times: String { 14 | case about, now 15 | case second, twoSeconds, seconds 16 | case minute, twoMinutes, minutes 17 | case hour, twoHours, hours 18 | case dayAgo, day, twoDays, days 19 | case week, twoWeeks, weeks 20 | case month, twoMonths, months 21 | case yearAgo, year, twoYears, years 22 | 23 | 24 | func str(isAr: Bool) -> String { 25 | switch self { 26 | case .about: return isAr ? "قبل" : "ago" 27 | case .now: return isAr ? "الآن" : "now" 28 | 29 | case .second: return isAr ? "ثانية" : "second" 30 | case .twoSeconds: return isAr ? "ثانيتين" : "seconds" 31 | case .seconds: return isAr ? "ثواني" : "seconds" 32 | 33 | case .minute: return isAr ? "دقيقة" : "minute" 34 | case .twoMinutes: return isAr ? "دقيقتين" : "minutes" 35 | case .minutes: return isAr ? "دقائق" : "minutes" 36 | 37 | case .hour: return isAr ? "ساعة" : "hour" 38 | case .twoHours: return isAr ? "ساعتين" : "hours" 39 | case .hours: return isAr ? "ساعات" : "hours" 40 | 41 | case .dayAgo: return isAr ? "الامس" : "Yesterday" 42 | case .day: return isAr ? "يوم" : "day" 43 | case .twoDays: return isAr ? "يومين" : "days" 44 | case .days: return isAr ? "أيام" : "days" 45 | 46 | case .week: return isAr ? "أسبوع" : "week" 47 | case .twoWeeks: return isAr ? "أسبوعين" : "weeks" 48 | case .weeks: return isAr ? "أسابيع" : "weeks" 49 | 50 | case .month: return isAr ? "شهر" : "month" 51 | case .twoMonths: return isAr ? "شهرين" : "months" 52 | case .months: return isAr ? "أشهر" : "months" 53 | 54 | case .yearAgo: return isAr ? "العام" : "a year" 55 | case .year: return isAr ? "سنة" : "year" 56 | case .twoYears: return isAr ? "سنتين" : "years" 57 | case .years: return isAr ? "سنوات" : "years" 58 | } 59 | } 60 | 61 | } 62 | 63 | 64 | private static func orderDirection(isAr: Bool = true, period: Int, time: String) -> String { 65 | let timeStr = ((period == 1 || period == 2) && isAr ? "": "\(period) ") + time 66 | 67 | if isAr { 68 | return Times.about.str(isAr: isAr) + " " + timeStr 69 | } else { 70 | return timeStr + " " + Times.about.str(isAr: isAr) 71 | } 72 | } 73 | 74 | 75 | private static func explainTime(isAr: Bool, 76 | period: Int, 77 | agoDesc: String = "", 78 | singleDesc: String, 79 | twoDesc: String, 80 | manyDesc: String) -> String { 81 | 82 | if period == 1 && agoDesc != "" { 83 | return isAr ? agoDesc : agoDesc + " " + Times.about.str(isAr: isAr) 84 | } 85 | 86 | else if period > 2 && period < 11 { return orderDirection(isAr: isAr, period: period, time: manyDesc) } 87 | else if period == 2 { return orderDirection(isAr: isAr, period: period, time: twoDesc) } 88 | else if period == 1 { return orderDirection(isAr: isAr, period: period, time: singleDesc) } 89 | return orderDirection(isAr: isAr, period: period, time: isAr ? singleDesc : manyDesc) 90 | } 91 | 92 | public static func calculate(date: Date, isAr: Bool = true) -> String { 93 | 94 | var calendar: Calendar { return .current } 95 | var components: DateComponents { 96 | 97 | let unitFlags = Set([.second,.minute,.hour,.day,.weekOfYear,.month,.year]) 98 | let now = Date() 99 | return calendar.dateComponents(unitFlags, from: date, to: now) 100 | } 101 | 102 | // year 103 | if let year = components.year, year > 0 { 104 | return explainTime(isAr: isAr, 105 | period: year, 106 | agoDesc: Times.yearAgo.str(isAr: isAr), 107 | singleDesc: Times.year.str(isAr: isAr), 108 | twoDesc: Times.twoYears.str(isAr: isAr), 109 | manyDesc: Times.years.str(isAr: isAr)) 110 | } 111 | 112 | // month 113 | if let month = components.month, month > 0 { 114 | return explainTime(isAr: isAr, 115 | period: month, 116 | singleDesc: Times.month.str(isAr: isAr), 117 | twoDesc: Times.twoMonths.str(isAr: isAr), 118 | manyDesc: Times.months.str(isAr: isAr)) 119 | } 120 | 121 | // week 122 | if let week = components.weekOfYear, week > 0 { 123 | return explainTime(isAr: isAr, 124 | period: week, 125 | singleDesc: Times.week.str(isAr: isAr), 126 | twoDesc: Times.twoWeeks.str(isAr: isAr), 127 | manyDesc: Times.weeks.str(isAr: isAr)) 128 | } 129 | 130 | // day 131 | if let day = components.day, day > 0 { 132 | return explainTime(isAr: isAr, 133 | period: day, 134 | agoDesc: Times.dayAgo.str(isAr: isAr), 135 | singleDesc: Times.day.str(isAr: isAr), 136 | twoDesc: Times.twoDays.str(isAr: isAr), 137 | manyDesc: Times.days.str(isAr: isAr)) 138 | } 139 | 140 | // hour 141 | if let hour = components.hour, hour > 0 { 142 | return explainTime(isAr: isAr, 143 | period: hour, 144 | singleDesc: Times.hour.str(isAr: isAr), 145 | twoDesc: Times.twoHours.str(isAr: isAr), 146 | manyDesc: Times.hours.str(isAr: isAr)) 147 | } 148 | 149 | // minute 150 | if let minute = components.minute, minute > 0 { 151 | return explainTime(isAr: isAr, 152 | period: minute, 153 | singleDesc: Times.minute.str(isAr: isAr), 154 | twoDesc: Times.twoMinutes.str(isAr: isAr), 155 | manyDesc: Times.minutes.str(isAr: isAr)) 156 | } 157 | 158 | // second 159 | if let second = components.second, second > 0 { 160 | return explainTime(isAr: isAr, 161 | period: second, 162 | singleDesc: Times.second.str(isAr: isAr), 163 | twoDesc: Times.twoSeconds.str(isAr: isAr), 164 | manyDesc: Times.seconds.str(isAr: isAr)) 165 | } 166 | 167 | 168 | return Times.now.str(isAr: isAr) 169 | } 170 | 171 | } 172 | 173 | //let itemDateStr = "2017-01-19 09:12:07" 174 | //let formatter = DateFormatter() 175 | //formatter.dateFormat = "yyyy-MM-dd HH:mm:ss" 176 | // 177 | //if let date = formatter.date(from: itemDateStr) { 178 | // 179 | // print(TimeAgo.calculate(date: date, isAr: false)) 180 | //} 181 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/ArabicTimeAgoExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 48; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0B273B5127A3240792EBC731 /* Pods_ArabicTimeAgoExampleTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2B708C2A776C60369C35E87 /* Pods_ArabicTimeAgoExampleTests.framework */; }; 11 | 278A6C731FD5A5F4001CD6DC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278A6C721FD5A5F4001CD6DC /* AppDelegate.swift */; }; 12 | 278A6C751FD5A5F4001CD6DC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278A6C741FD5A5F4001CD6DC /* ViewController.swift */; }; 13 | 278A6C781FD5A5F4001CD6DC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 278A6C761FD5A5F4001CD6DC /* Main.storyboard */; }; 14 | 278A6C7A1FD5A5F5001CD6DC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 278A6C791FD5A5F5001CD6DC /* Assets.xcassets */; }; 15 | 278A6C7D1FD5A5F5001CD6DC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 278A6C7B1FD5A5F5001CD6DC /* LaunchScreen.storyboard */; }; 16 | 278A6C881FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278A6C871FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.swift */; }; 17 | 278A6C931FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278A6C921FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.swift */; }; 18 | 4DBF622D75C92C304D275F95 /* Pods_ArabicTimeAgoExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C7C759318E19E51E0EA5885 /* Pods_ArabicTimeAgoExample.framework */; }; 19 | A5B095BA7A0B5BE6C43CEF29 /* Pods_ArabicTimeAgoExampleUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60061B2457BF166E1263A718 /* Pods_ArabicTimeAgoExampleUITests.framework */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 278A6C841FD5A5F5001CD6DC /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = 278A6C671FD5A5F4001CD6DC /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 278A6C6E1FD5A5F4001CD6DC; 28 | remoteInfo = ArabicTimeAgoExample; 29 | }; 30 | 278A6C8F1FD5A5F5001CD6DC /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 278A6C671FD5A5F4001CD6DC /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 278A6C6E1FD5A5F4001CD6DC; 35 | remoteInfo = ArabicTimeAgoExample; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 278A6C6F1FD5A5F4001CD6DC /* ArabicTimeAgoExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ArabicTimeAgoExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 278A6C721FD5A5F4001CD6DC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 42 | 278A6C741FD5A5F4001CD6DC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 43 | 278A6C771FD5A5F4001CD6DC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 44 | 278A6C791FD5A5F5001CD6DC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 45 | 278A6C7C1FD5A5F5001CD6DC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 46 | 278A6C7E1FD5A5F5001CD6DC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 278A6C831FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ArabicTimeAgoExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 278A6C871FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ArabicTimeAgoExampleTests.swift; sourceTree = ""; }; 49 | 278A6C891FD5A5F5001CD6DC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 50 | 278A6C8E1FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ArabicTimeAgoExampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 278A6C921FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ArabicTimeAgoExampleUITests.swift; sourceTree = ""; }; 52 | 278A6C941FD5A5F5001CD6DC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | 4C19C459D0593FA80BE888F5 /* Pods-ArabicTimeAgoExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.debug.xcconfig"; sourceTree = ""; }; 54 | 60061B2457BF166E1263A718 /* Pods_ArabicTimeAgoExampleUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 7C7C759318E19E51E0EA5885 /* Pods_ArabicTimeAgoExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 8409265E5EDC473ED7E2FC72 /* Pods-ArabicTimeAgoExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.release.xcconfig"; sourceTree = ""; }; 57 | B2B708C2A776C60369C35E87 /* Pods_ArabicTimeAgoExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | C9B1AB855EC3175E4B4D365F /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExampleTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.debug.xcconfig"; sourceTree = ""; }; 59 | D8DEEE4C4C2AE656B06430AF /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExampleUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.debug.xcconfig"; sourceTree = ""; }; 60 | DDBCD9CB25AF5603B92C7D3E /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExampleTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.release.xcconfig"; sourceTree = ""; }; 61 | E6C3DC330C317FC019BA367E /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ArabicTimeAgoExampleUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.release.xcconfig"; sourceTree = ""; }; 62 | /* End PBXFileReference section */ 63 | 64 | /* Begin PBXFrameworksBuildPhase section */ 65 | 278A6C6C1FD5A5F4001CD6DC /* Frameworks */ = { 66 | isa = PBXFrameworksBuildPhase; 67 | buildActionMask = 2147483647; 68 | files = ( 69 | 4DBF622D75C92C304D275F95 /* Pods_ArabicTimeAgoExample.framework in Frameworks */, 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | 278A6C801FD5A5F5001CD6DC /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 0B273B5127A3240792EBC731 /* Pods_ArabicTimeAgoExampleTests.framework in Frameworks */, 78 | ); 79 | runOnlyForDeploymentPostprocessing = 0; 80 | }; 81 | 278A6C8B1FD5A5F5001CD6DC /* Frameworks */ = { 82 | isa = PBXFrameworksBuildPhase; 83 | buildActionMask = 2147483647; 84 | files = ( 85 | A5B095BA7A0B5BE6C43CEF29 /* Pods_ArabicTimeAgoExampleUITests.framework in Frameworks */, 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | /* End PBXFrameworksBuildPhase section */ 90 | 91 | /* Begin PBXGroup section */ 92 | 056DEB6CB542140B12D9361F /* Pods */ = { 93 | isa = PBXGroup; 94 | children = ( 95 | 4C19C459D0593FA80BE888F5 /* Pods-ArabicTimeAgoExample.debug.xcconfig */, 96 | 8409265E5EDC473ED7E2FC72 /* Pods-ArabicTimeAgoExample.release.xcconfig */, 97 | C9B1AB855EC3175E4B4D365F /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */, 98 | DDBCD9CB25AF5603B92C7D3E /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */, 99 | D8DEEE4C4C2AE656B06430AF /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */, 100 | E6C3DC330C317FC019BA367E /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */, 101 | ); 102 | name = Pods; 103 | sourceTree = ""; 104 | }; 105 | 278A6C661FD5A5F4001CD6DC = { 106 | isa = PBXGroup; 107 | children = ( 108 | 278A6C711FD5A5F4001CD6DC /* ArabicTimeAgoExample */, 109 | 278A6C861FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests */, 110 | 278A6C911FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests */, 111 | 278A6C701FD5A5F4001CD6DC /* Products */, 112 | 056DEB6CB542140B12D9361F /* Pods */, 113 | 6815C1F113CBBA3C67046253 /* Frameworks */, 114 | ); 115 | sourceTree = ""; 116 | }; 117 | 278A6C701FD5A5F4001CD6DC /* Products */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 278A6C6F1FD5A5F4001CD6DC /* ArabicTimeAgoExample.app */, 121 | 278A6C831FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.xctest */, 122 | 278A6C8E1FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.xctest */, 123 | ); 124 | name = Products; 125 | sourceTree = ""; 126 | }; 127 | 278A6C711FD5A5F4001CD6DC /* ArabicTimeAgoExample */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 278A6C721FD5A5F4001CD6DC /* AppDelegate.swift */, 131 | 278A6C741FD5A5F4001CD6DC /* ViewController.swift */, 132 | 278A6C761FD5A5F4001CD6DC /* Main.storyboard */, 133 | 278A6C791FD5A5F5001CD6DC /* Assets.xcassets */, 134 | 278A6C7B1FD5A5F5001CD6DC /* LaunchScreen.storyboard */, 135 | 278A6C7E1FD5A5F5001CD6DC /* Info.plist */, 136 | ); 137 | path = ArabicTimeAgoExample; 138 | sourceTree = ""; 139 | }; 140 | 278A6C861FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 278A6C871FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.swift */, 144 | 278A6C891FD5A5F5001CD6DC /* Info.plist */, 145 | ); 146 | path = ArabicTimeAgoExampleTests; 147 | sourceTree = ""; 148 | }; 149 | 278A6C911FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 278A6C921FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.swift */, 153 | 278A6C941FD5A5F5001CD6DC /* Info.plist */, 154 | ); 155 | path = ArabicTimeAgoExampleUITests; 156 | sourceTree = ""; 157 | }; 158 | 6815C1F113CBBA3C67046253 /* Frameworks */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | 7C7C759318E19E51E0EA5885 /* Pods_ArabicTimeAgoExample.framework */, 162 | B2B708C2A776C60369C35E87 /* Pods_ArabicTimeAgoExampleTests.framework */, 163 | 60061B2457BF166E1263A718 /* Pods_ArabicTimeAgoExampleUITests.framework */, 164 | ); 165 | name = Frameworks; 166 | sourceTree = ""; 167 | }; 168 | /* End PBXGroup section */ 169 | 170 | /* Begin PBXNativeTarget section */ 171 | 278A6C6E1FD5A5F4001CD6DC /* ArabicTimeAgoExample */ = { 172 | isa = PBXNativeTarget; 173 | buildConfigurationList = 278A6C971FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExample" */; 174 | buildPhases = ( 175 | 8651668158B76CDB1762BEA0 /* [CP] Check Pods Manifest.lock */, 176 | 278A6C6B1FD5A5F4001CD6DC /* Sources */, 177 | 278A6C6C1FD5A5F4001CD6DC /* Frameworks */, 178 | 278A6C6D1FD5A5F4001CD6DC /* Resources */, 179 | F802F6C6A8A515EAC242D17F /* [CP] Embed Pods Frameworks */, 180 | EC7E412801B45AB629BB2588 /* [CP] Copy Pods Resources */, 181 | ); 182 | buildRules = ( 183 | ); 184 | dependencies = ( 185 | ); 186 | name = ArabicTimeAgoExample; 187 | productName = ArabicTimeAgoExample; 188 | productReference = 278A6C6F1FD5A5F4001CD6DC /* ArabicTimeAgoExample.app */; 189 | productType = "com.apple.product-type.application"; 190 | }; 191 | 278A6C821FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests */ = { 192 | isa = PBXNativeTarget; 193 | buildConfigurationList = 278A6C9A1FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExampleTests" */; 194 | buildPhases = ( 195 | CE03BF758F319332BAC56EFB /* [CP] Check Pods Manifest.lock */, 196 | 278A6C7F1FD5A5F5001CD6DC /* Sources */, 197 | 278A6C801FD5A5F5001CD6DC /* Frameworks */, 198 | 278A6C811FD5A5F5001CD6DC /* Resources */, 199 | F2284FC64DC0606DEF171FEA /* [CP] Embed Pods Frameworks */, 200 | DB9E1CC5F1BF8F65CD71E087 /* [CP] Copy Pods Resources */, 201 | ); 202 | buildRules = ( 203 | ); 204 | dependencies = ( 205 | 278A6C851FD5A5F5001CD6DC /* PBXTargetDependency */, 206 | ); 207 | name = ArabicTimeAgoExampleTests; 208 | productName = ArabicTimeAgoExampleTests; 209 | productReference = 278A6C831FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.xctest */; 210 | productType = "com.apple.product-type.bundle.unit-test"; 211 | }; 212 | 278A6C8D1FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests */ = { 213 | isa = PBXNativeTarget; 214 | buildConfigurationList = 278A6C9D1FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExampleUITests" */; 215 | buildPhases = ( 216 | 0B4E870219034FB88C78F94F /* [CP] Check Pods Manifest.lock */, 217 | 278A6C8A1FD5A5F5001CD6DC /* Sources */, 218 | 278A6C8B1FD5A5F5001CD6DC /* Frameworks */, 219 | 278A6C8C1FD5A5F5001CD6DC /* Resources */, 220 | B6E11D1CA6F8E00F8FFE2545 /* [CP] Embed Pods Frameworks */, 221 | C541787C9ED3F5027F04AB38 /* [CP] Copy Pods Resources */, 222 | ); 223 | buildRules = ( 224 | ); 225 | dependencies = ( 226 | 278A6C901FD5A5F5001CD6DC /* PBXTargetDependency */, 227 | ); 228 | name = ArabicTimeAgoExampleUITests; 229 | productName = ArabicTimeAgoExampleUITests; 230 | productReference = 278A6C8E1FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.xctest */; 231 | productType = "com.apple.product-type.bundle.ui-testing"; 232 | }; 233 | /* End PBXNativeTarget section */ 234 | 235 | /* Begin PBXProject section */ 236 | 278A6C671FD5A5F4001CD6DC /* Project object */ = { 237 | isa = PBXProject; 238 | attributes = { 239 | LastSwiftUpdateCheck = 0910; 240 | LastUpgradeCheck = 0910; 241 | ORGANIZATIONNAME = Fomalhaut.io; 242 | TargetAttributes = { 243 | 278A6C6E1FD5A5F4001CD6DC = { 244 | CreatedOnToolsVersion = 9.1; 245 | ProvisioningStyle = Automatic; 246 | }; 247 | 278A6C821FD5A5F5001CD6DC = { 248 | CreatedOnToolsVersion = 9.1; 249 | ProvisioningStyle = Automatic; 250 | TestTargetID = 278A6C6E1FD5A5F4001CD6DC; 251 | }; 252 | 278A6C8D1FD5A5F5001CD6DC = { 253 | CreatedOnToolsVersion = 9.1; 254 | ProvisioningStyle = Automatic; 255 | TestTargetID = 278A6C6E1FD5A5F4001CD6DC; 256 | }; 257 | }; 258 | }; 259 | buildConfigurationList = 278A6C6A1FD5A5F4001CD6DC /* Build configuration list for PBXProject "ArabicTimeAgoExample" */; 260 | compatibilityVersion = "Xcode 8.0"; 261 | developmentRegion = en; 262 | hasScannedForEncodings = 0; 263 | knownRegions = ( 264 | en, 265 | Base, 266 | ); 267 | mainGroup = 278A6C661FD5A5F4001CD6DC; 268 | productRefGroup = 278A6C701FD5A5F4001CD6DC /* Products */; 269 | projectDirPath = ""; 270 | projectRoot = ""; 271 | targets = ( 272 | 278A6C6E1FD5A5F4001CD6DC /* ArabicTimeAgoExample */, 273 | 278A6C821FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests */, 274 | 278A6C8D1FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests */, 275 | ); 276 | }; 277 | /* End PBXProject section */ 278 | 279 | /* Begin PBXResourcesBuildPhase section */ 280 | 278A6C6D1FD5A5F4001CD6DC /* Resources */ = { 281 | isa = PBXResourcesBuildPhase; 282 | buildActionMask = 2147483647; 283 | files = ( 284 | 278A6C7D1FD5A5F5001CD6DC /* LaunchScreen.storyboard in Resources */, 285 | 278A6C7A1FD5A5F5001CD6DC /* Assets.xcassets in Resources */, 286 | 278A6C781FD5A5F4001CD6DC /* Main.storyboard in Resources */, 287 | ); 288 | runOnlyForDeploymentPostprocessing = 0; 289 | }; 290 | 278A6C811FD5A5F5001CD6DC /* Resources */ = { 291 | isa = PBXResourcesBuildPhase; 292 | buildActionMask = 2147483647; 293 | files = ( 294 | ); 295 | runOnlyForDeploymentPostprocessing = 0; 296 | }; 297 | 278A6C8C1FD5A5F5001CD6DC /* Resources */ = { 298 | isa = PBXResourcesBuildPhase; 299 | buildActionMask = 2147483647; 300 | files = ( 301 | ); 302 | runOnlyForDeploymentPostprocessing = 0; 303 | }; 304 | /* End PBXResourcesBuildPhase section */ 305 | 306 | /* Begin PBXShellScriptBuildPhase section */ 307 | 0B4E870219034FB88C78F94F /* [CP] Check Pods Manifest.lock */ = { 308 | isa = PBXShellScriptBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | ); 312 | inputPaths = ( 313 | ); 314 | name = "[CP] Check Pods Manifest.lock"; 315 | outputPaths = ( 316 | ); 317 | runOnlyForDeploymentPostprocessing = 0; 318 | shellPath = /bin/sh; 319 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 320 | showEnvVarsInLog = 0; 321 | }; 322 | 8651668158B76CDB1762BEA0 /* [CP] Check Pods Manifest.lock */ = { 323 | isa = PBXShellScriptBuildPhase; 324 | buildActionMask = 2147483647; 325 | files = ( 326 | ); 327 | inputPaths = ( 328 | ); 329 | name = "[CP] Check Pods Manifest.lock"; 330 | outputPaths = ( 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | shellPath = /bin/sh; 334 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 335 | showEnvVarsInLog = 0; 336 | }; 337 | B6E11D1CA6F8E00F8FFE2545 /* [CP] Embed Pods Frameworks */ = { 338 | isa = PBXShellScriptBuildPhase; 339 | buildActionMask = 2147483647; 340 | files = ( 341 | ); 342 | inputPaths = ( 343 | ); 344 | name = "[CP] Embed Pods Frameworks"; 345 | outputPaths = ( 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | shellPath = /bin/sh; 349 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-frameworks.sh\"\n"; 350 | showEnvVarsInLog = 0; 351 | }; 352 | C541787C9ED3F5027F04AB38 /* [CP] Copy Pods Resources */ = { 353 | isa = PBXShellScriptBuildPhase; 354 | buildActionMask = 2147483647; 355 | files = ( 356 | ); 357 | inputPaths = ( 358 | ); 359 | name = "[CP] Copy Pods Resources"; 360 | outputPaths = ( 361 | ); 362 | runOnlyForDeploymentPostprocessing = 0; 363 | shellPath = /bin/sh; 364 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests-resources.sh\"\n"; 365 | showEnvVarsInLog = 0; 366 | }; 367 | CE03BF758F319332BAC56EFB /* [CP] Check Pods Manifest.lock */ = { 368 | isa = PBXShellScriptBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | ); 372 | inputPaths = ( 373 | ); 374 | name = "[CP] Check Pods Manifest.lock"; 375 | outputPaths = ( 376 | ); 377 | runOnlyForDeploymentPostprocessing = 0; 378 | shellPath = /bin/sh; 379 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 380 | showEnvVarsInLog = 0; 381 | }; 382 | DB9E1CC5F1BF8F65CD71E087 /* [CP] Copy Pods Resources */ = { 383 | isa = PBXShellScriptBuildPhase; 384 | buildActionMask = 2147483647; 385 | files = ( 386 | ); 387 | inputPaths = ( 388 | ); 389 | name = "[CP] Copy Pods Resources"; 390 | outputPaths = ( 391 | ); 392 | runOnlyForDeploymentPostprocessing = 0; 393 | shellPath = /bin/sh; 394 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-resources.sh\"\n"; 395 | showEnvVarsInLog = 0; 396 | }; 397 | EC7E412801B45AB629BB2588 /* [CP] Copy Pods Resources */ = { 398 | isa = PBXShellScriptBuildPhase; 399 | buildActionMask = 2147483647; 400 | files = ( 401 | ); 402 | inputPaths = ( 403 | ); 404 | name = "[CP] Copy Pods Resources"; 405 | outputPaths = ( 406 | ); 407 | runOnlyForDeploymentPostprocessing = 0; 408 | shellPath = /bin/sh; 409 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-resources.sh\"\n"; 410 | showEnvVarsInLog = 0; 411 | }; 412 | F2284FC64DC0606DEF171FEA /* [CP] Embed Pods Frameworks */ = { 413 | isa = PBXShellScriptBuildPhase; 414 | buildActionMask = 2147483647; 415 | files = ( 416 | ); 417 | inputPaths = ( 418 | ); 419 | name = "[CP] Embed Pods Frameworks"; 420 | outputPaths = ( 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | shellPath = /bin/sh; 424 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests-frameworks.sh\"\n"; 425 | showEnvVarsInLog = 0; 426 | }; 427 | F802F6C6A8A515EAC242D17F /* [CP] Embed Pods Frameworks */ = { 428 | isa = PBXShellScriptBuildPhase; 429 | buildActionMask = 2147483647; 430 | files = ( 431 | ); 432 | inputPaths = ( 433 | ); 434 | name = "[CP] Embed Pods Frameworks"; 435 | outputPaths = ( 436 | ); 437 | runOnlyForDeploymentPostprocessing = 0; 438 | shellPath = /bin/sh; 439 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample-frameworks.sh\"\n"; 440 | showEnvVarsInLog = 0; 441 | }; 442 | /* End PBXShellScriptBuildPhase section */ 443 | 444 | /* Begin PBXSourcesBuildPhase section */ 445 | 278A6C6B1FD5A5F4001CD6DC /* Sources */ = { 446 | isa = PBXSourcesBuildPhase; 447 | buildActionMask = 2147483647; 448 | files = ( 449 | 278A6C751FD5A5F4001CD6DC /* ViewController.swift in Sources */, 450 | 278A6C731FD5A5F4001CD6DC /* AppDelegate.swift in Sources */, 451 | ); 452 | runOnlyForDeploymentPostprocessing = 0; 453 | }; 454 | 278A6C7F1FD5A5F5001CD6DC /* Sources */ = { 455 | isa = PBXSourcesBuildPhase; 456 | buildActionMask = 2147483647; 457 | files = ( 458 | 278A6C881FD5A5F5001CD6DC /* ArabicTimeAgoExampleTests.swift in Sources */, 459 | ); 460 | runOnlyForDeploymentPostprocessing = 0; 461 | }; 462 | 278A6C8A1FD5A5F5001CD6DC /* Sources */ = { 463 | isa = PBXSourcesBuildPhase; 464 | buildActionMask = 2147483647; 465 | files = ( 466 | 278A6C931FD5A5F5001CD6DC /* ArabicTimeAgoExampleUITests.swift in Sources */, 467 | ); 468 | runOnlyForDeploymentPostprocessing = 0; 469 | }; 470 | /* End PBXSourcesBuildPhase section */ 471 | 472 | /* Begin PBXTargetDependency section */ 473 | 278A6C851FD5A5F5001CD6DC /* PBXTargetDependency */ = { 474 | isa = PBXTargetDependency; 475 | target = 278A6C6E1FD5A5F4001CD6DC /* ArabicTimeAgoExample */; 476 | targetProxy = 278A6C841FD5A5F5001CD6DC /* PBXContainerItemProxy */; 477 | }; 478 | 278A6C901FD5A5F5001CD6DC /* PBXTargetDependency */ = { 479 | isa = PBXTargetDependency; 480 | target = 278A6C6E1FD5A5F4001CD6DC /* ArabicTimeAgoExample */; 481 | targetProxy = 278A6C8F1FD5A5F5001CD6DC /* PBXContainerItemProxy */; 482 | }; 483 | /* End PBXTargetDependency section */ 484 | 485 | /* Begin PBXVariantGroup section */ 486 | 278A6C761FD5A5F4001CD6DC /* Main.storyboard */ = { 487 | isa = PBXVariantGroup; 488 | children = ( 489 | 278A6C771FD5A5F4001CD6DC /* Base */, 490 | ); 491 | name = Main.storyboard; 492 | sourceTree = ""; 493 | }; 494 | 278A6C7B1FD5A5F5001CD6DC /* LaunchScreen.storyboard */ = { 495 | isa = PBXVariantGroup; 496 | children = ( 497 | 278A6C7C1FD5A5F5001CD6DC /* Base */, 498 | ); 499 | name = LaunchScreen.storyboard; 500 | sourceTree = ""; 501 | }; 502 | /* End PBXVariantGroup section */ 503 | 504 | /* Begin XCBuildConfiguration section */ 505 | 278A6C951FD5A5F5001CD6DC /* Debug */ = { 506 | isa = XCBuildConfiguration; 507 | buildSettings = { 508 | ALWAYS_SEARCH_USER_PATHS = NO; 509 | CLANG_ANALYZER_NONNULL = YES; 510 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 511 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 512 | CLANG_CXX_LIBRARY = "libc++"; 513 | CLANG_ENABLE_MODULES = YES; 514 | CLANG_ENABLE_OBJC_ARC = YES; 515 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 516 | CLANG_WARN_BOOL_CONVERSION = YES; 517 | CLANG_WARN_COMMA = YES; 518 | CLANG_WARN_CONSTANT_CONVERSION = YES; 519 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 520 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 521 | CLANG_WARN_EMPTY_BODY = YES; 522 | CLANG_WARN_ENUM_CONVERSION = YES; 523 | CLANG_WARN_INFINITE_RECURSION = YES; 524 | CLANG_WARN_INT_CONVERSION = YES; 525 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 526 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 527 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 528 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 529 | CLANG_WARN_STRICT_PROTOTYPES = YES; 530 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 531 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 532 | CLANG_WARN_UNREACHABLE_CODE = YES; 533 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 534 | CODE_SIGN_IDENTITY = "iPhone Developer"; 535 | COPY_PHASE_STRIP = NO; 536 | DEBUG_INFORMATION_FORMAT = dwarf; 537 | ENABLE_STRICT_OBJC_MSGSEND = YES; 538 | ENABLE_TESTABILITY = YES; 539 | GCC_C_LANGUAGE_STANDARD = gnu11; 540 | GCC_DYNAMIC_NO_PIC = NO; 541 | GCC_NO_COMMON_BLOCKS = YES; 542 | GCC_OPTIMIZATION_LEVEL = 0; 543 | GCC_PREPROCESSOR_DEFINITIONS = ( 544 | "DEBUG=1", 545 | "$(inherited)", 546 | ); 547 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 548 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 549 | GCC_WARN_UNDECLARED_SELECTOR = YES; 550 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 551 | GCC_WARN_UNUSED_FUNCTION = YES; 552 | GCC_WARN_UNUSED_VARIABLE = YES; 553 | IPHONEOS_DEPLOYMENT_TARGET = 11.1; 554 | MTL_ENABLE_DEBUG_INFO = YES; 555 | ONLY_ACTIVE_ARCH = YES; 556 | SDKROOT = iphoneos; 557 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 558 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 559 | }; 560 | name = Debug; 561 | }; 562 | 278A6C961FD5A5F5001CD6DC /* Release */ = { 563 | isa = XCBuildConfiguration; 564 | buildSettings = { 565 | ALWAYS_SEARCH_USER_PATHS = NO; 566 | CLANG_ANALYZER_NONNULL = YES; 567 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 568 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 569 | CLANG_CXX_LIBRARY = "libc++"; 570 | CLANG_ENABLE_MODULES = YES; 571 | CLANG_ENABLE_OBJC_ARC = YES; 572 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 573 | CLANG_WARN_BOOL_CONVERSION = YES; 574 | CLANG_WARN_COMMA = YES; 575 | CLANG_WARN_CONSTANT_CONVERSION = YES; 576 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 577 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 578 | CLANG_WARN_EMPTY_BODY = YES; 579 | CLANG_WARN_ENUM_CONVERSION = YES; 580 | CLANG_WARN_INFINITE_RECURSION = YES; 581 | CLANG_WARN_INT_CONVERSION = YES; 582 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 583 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 584 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 585 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 586 | CLANG_WARN_STRICT_PROTOTYPES = YES; 587 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 588 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 589 | CLANG_WARN_UNREACHABLE_CODE = YES; 590 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 591 | CODE_SIGN_IDENTITY = "iPhone Developer"; 592 | COPY_PHASE_STRIP = NO; 593 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 594 | ENABLE_NS_ASSERTIONS = NO; 595 | ENABLE_STRICT_OBJC_MSGSEND = YES; 596 | GCC_C_LANGUAGE_STANDARD = gnu11; 597 | GCC_NO_COMMON_BLOCKS = YES; 598 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 599 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 600 | GCC_WARN_UNDECLARED_SELECTOR = YES; 601 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 602 | GCC_WARN_UNUSED_FUNCTION = YES; 603 | GCC_WARN_UNUSED_VARIABLE = YES; 604 | IPHONEOS_DEPLOYMENT_TARGET = 11.1; 605 | MTL_ENABLE_DEBUG_INFO = NO; 606 | SDKROOT = iphoneos; 607 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 608 | VALIDATE_PRODUCT = YES; 609 | }; 610 | name = Release; 611 | }; 612 | 278A6C981FD5A5F5001CD6DC /* Debug */ = { 613 | isa = XCBuildConfiguration; 614 | baseConfigurationReference = 4C19C459D0593FA80BE888F5 /* Pods-ArabicTimeAgoExample.debug.xcconfig */; 615 | buildSettings = { 616 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 617 | CODE_SIGN_STYLE = Automatic; 618 | INFOPLIST_FILE = ArabicTimeAgoExample/Info.plist; 619 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 620 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExample; 621 | PRODUCT_NAME = "$(TARGET_NAME)"; 622 | SWIFT_VERSION = 4.0; 623 | TARGETED_DEVICE_FAMILY = "1,2"; 624 | }; 625 | name = Debug; 626 | }; 627 | 278A6C991FD5A5F5001CD6DC /* Release */ = { 628 | isa = XCBuildConfiguration; 629 | baseConfigurationReference = 8409265E5EDC473ED7E2FC72 /* Pods-ArabicTimeAgoExample.release.xcconfig */; 630 | buildSettings = { 631 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 632 | CODE_SIGN_STYLE = Automatic; 633 | INFOPLIST_FILE = ArabicTimeAgoExample/Info.plist; 634 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 635 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExample; 636 | PRODUCT_NAME = "$(TARGET_NAME)"; 637 | SWIFT_VERSION = 4.0; 638 | TARGETED_DEVICE_FAMILY = "1,2"; 639 | }; 640 | name = Release; 641 | }; 642 | 278A6C9B1FD5A5F5001CD6DC /* Debug */ = { 643 | isa = XCBuildConfiguration; 644 | baseConfigurationReference = C9B1AB855EC3175E4B4D365F /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */; 645 | buildSettings = { 646 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 647 | BUNDLE_LOADER = "$(TEST_HOST)"; 648 | CODE_SIGN_STYLE = Automatic; 649 | INFOPLIST_FILE = ArabicTimeAgoExampleTests/Info.plist; 650 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 651 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExampleTests; 652 | PRODUCT_NAME = "$(TARGET_NAME)"; 653 | SWIFT_VERSION = 4.0; 654 | TARGETED_DEVICE_FAMILY = "1,2"; 655 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ArabicTimeAgoExample.app/ArabicTimeAgoExample"; 656 | }; 657 | name = Debug; 658 | }; 659 | 278A6C9C1FD5A5F5001CD6DC /* Release */ = { 660 | isa = XCBuildConfiguration; 661 | baseConfigurationReference = DDBCD9CB25AF5603B92C7D3E /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */; 662 | buildSettings = { 663 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 664 | BUNDLE_LOADER = "$(TEST_HOST)"; 665 | CODE_SIGN_STYLE = Automatic; 666 | INFOPLIST_FILE = ArabicTimeAgoExampleTests/Info.plist; 667 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 668 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExampleTests; 669 | PRODUCT_NAME = "$(TARGET_NAME)"; 670 | SWIFT_VERSION = 4.0; 671 | TARGETED_DEVICE_FAMILY = "1,2"; 672 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ArabicTimeAgoExample.app/ArabicTimeAgoExample"; 673 | }; 674 | name = Release; 675 | }; 676 | 278A6C9E1FD5A5F5001CD6DC /* Debug */ = { 677 | isa = XCBuildConfiguration; 678 | baseConfigurationReference = D8DEEE4C4C2AE656B06430AF /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */; 679 | buildSettings = { 680 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 681 | CODE_SIGN_STYLE = Automatic; 682 | INFOPLIST_FILE = ArabicTimeAgoExampleUITests/Info.plist; 683 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 684 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExampleUITests; 685 | PRODUCT_NAME = "$(TARGET_NAME)"; 686 | SWIFT_VERSION = 4.0; 687 | TARGETED_DEVICE_FAMILY = "1,2"; 688 | TEST_TARGET_NAME = ArabicTimeAgoExample; 689 | }; 690 | name = Debug; 691 | }; 692 | 278A6C9F1FD5A5F5001CD6DC /* Release */ = { 693 | isa = XCBuildConfiguration; 694 | baseConfigurationReference = E6C3DC330C317FC019BA367E /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */; 695 | buildSettings = { 696 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 697 | CODE_SIGN_STYLE = Automatic; 698 | INFOPLIST_FILE = ArabicTimeAgoExampleUITests/Info.plist; 699 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 700 | PRODUCT_BUNDLE_IDENTIFIER = fomalhaut.ArabicTimeAgoExampleUITests; 701 | PRODUCT_NAME = "$(TARGET_NAME)"; 702 | SWIFT_VERSION = 4.0; 703 | TARGETED_DEVICE_FAMILY = "1,2"; 704 | TEST_TARGET_NAME = ArabicTimeAgoExample; 705 | }; 706 | name = Release; 707 | }; 708 | /* End XCBuildConfiguration section */ 709 | 710 | /* Begin XCConfigurationList section */ 711 | 278A6C6A1FD5A5F4001CD6DC /* Build configuration list for PBXProject "ArabicTimeAgoExample" */ = { 712 | isa = XCConfigurationList; 713 | buildConfigurations = ( 714 | 278A6C951FD5A5F5001CD6DC /* Debug */, 715 | 278A6C961FD5A5F5001CD6DC /* Release */, 716 | ); 717 | defaultConfigurationIsVisible = 0; 718 | defaultConfigurationName = Release; 719 | }; 720 | 278A6C971FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExample" */ = { 721 | isa = XCConfigurationList; 722 | buildConfigurations = ( 723 | 278A6C981FD5A5F5001CD6DC /* Debug */, 724 | 278A6C991FD5A5F5001CD6DC /* Release */, 725 | ); 726 | defaultConfigurationIsVisible = 0; 727 | defaultConfigurationName = Release; 728 | }; 729 | 278A6C9A1FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExampleTests" */ = { 730 | isa = XCConfigurationList; 731 | buildConfigurations = ( 732 | 278A6C9B1FD5A5F5001CD6DC /* Debug */, 733 | 278A6C9C1FD5A5F5001CD6DC /* Release */, 734 | ); 735 | defaultConfigurationIsVisible = 0; 736 | defaultConfigurationName = Release; 737 | }; 738 | 278A6C9D1FD5A5F5001CD6DC /* Build configuration list for PBXNativeTarget "ArabicTimeAgoExampleUITests" */ = { 739 | isa = XCConfigurationList; 740 | buildConfigurations = ( 741 | 278A6C9E1FD5A5F5001CD6DC /* Debug */, 742 | 278A6C9F1FD5A5F5001CD6DC /* Release */, 743 | ); 744 | defaultConfigurationIsVisible = 0; 745 | defaultConfigurationName = Release; 746 | }; 747 | /* End XCConfigurationList section */ 748 | }; 749 | rootObject = 278A6C671FD5A5F4001CD6DC /* Project object */; 750 | } 751 | -------------------------------------------------------------------------------- /ArabicTimeAgoExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00CBEE96DB0825252156061ADD3BEE77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 11 | 043B54CECC1E6795E5EE47BC09650BB1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 12 | 048DB3BEEE7C5C6EB3C12D068ECDEDCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 13 | 0FD4189A407769B305C07D2DE1CC7DBC /* ArabicTimeAgo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1100F4C2121ED6F76C26522B35866AE /* ArabicTimeAgo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 271F6ABC1F7E41AF3CB168D37583EE33 /* Pods-ArabicTimeAgoExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2292B652015C44012B1025F631596F2C /* Pods-ArabicTimeAgoExampleUITests-dummy.m */; }; 15 | 2DC51A1D67A3A2D482E701CC4ED1C20D /* Pods-ArabicTimeAgoExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED07306C2AA4B78D068C25B3D5E229 /* Pods-ArabicTimeAgoExampleTests-dummy.m */; }; 16 | 3220248F45D1C4EE57440FEE1216A25D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 17 | 5592E14AB2DABB88B38BDF32ABC8BB6E /* ArTimeAgo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5671DA41E711A94A5A3D3B77C8406D4 /* ArTimeAgo.swift */; }; 18 | 66B526269D75FBA8F7F0854ED09D982D /* Pods-ArabicTimeAgoExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D14EC6E68F8D1F6F3648A8B65DAEFD /* Pods-ArabicTimeAgoExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | 69D2437E84C410E72694398FC7062821 /* Pods-ArabicTimeAgoExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE53B468782C09906937DE6B60DF94B9 /* Pods-ArabicTimeAgoExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | B01D86D7B83DD00048FD8397FFF74CEC /* Pods-ArabicTimeAgoExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6D1154AC1AB645241242B9D70CD132F /* Pods-ArabicTimeAgoExample-dummy.m */; }; 21 | C5F0259E178223387F8C3B378CB256EB /* ArabicTimeAgo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9727C95B730A5338B0E9C856217484B9 /* ArabicTimeAgo-dummy.m */; }; 22 | E21594728018208AD1CE642ADDFB65A5 /* Pods-ArabicTimeAgoExampleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 406CAAB11D73EBFAF15017809AFA701D /* Pods-ArabicTimeAgoExampleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | D84BA68540F67C3B30F9861F4038EF52 /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = 0A594756267997CAEA4770AF195D213F; 31 | remoteInfo = ArabicTimeAgo; 32 | }; 33 | /* End PBXContainerItemProxy section */ 34 | 35 | /* Begin PBXFileReference section */ 36 | 007DEBE28B2F99D5813C797E8620C002 /* Pods-ArabicTimeAgoExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ArabicTimeAgoExampleUITests.modulemap"; sourceTree = ""; }; 37 | 0CA6BB8705E7D291D0360AD7F3DE00F0 /* Pods-ArabicTimeAgoExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExample.debug.xcconfig"; sourceTree = ""; }; 38 | 194D7A461499889E8F4AD085009E13B4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 39 | 1B48ACF156584F2A751F1E8EE6471152 /* Pods-ArabicTimeAgoExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ArabicTimeAgoExampleUITests-acknowledgements.plist"; sourceTree = ""; }; 40 | 1BAF484C2E8B9BABE7BE2C2AED4C263F /* Pods-ArabicTimeAgoExampleUITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExampleUITests-frameworks.sh"; sourceTree = ""; }; 41 | 203630CB1A95A53AA9079FD9114B74E7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | 2292B652015C44012B1025F631596F2C /* Pods-ArabicTimeAgoExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ArabicTimeAgoExampleUITests-dummy.m"; sourceTree = ""; }; 43 | 2D7AEEA30C4A0E67371061365F4C8B50 /* Pods-ArabicTimeAgoExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExample-resources.sh"; sourceTree = ""; }; 44 | 35F3B89E98DC32FD59F2AD05CFE45106 /* Pods-ArabicTimeAgoExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ArabicTimeAgoExampleTests-acknowledgements.markdown"; sourceTree = ""; }; 45 | 37ABCC7EB75181FFB508556DB73EF398 /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExampleUITests.release.xcconfig"; sourceTree = ""; }; 46 | 38FC4DB3B41C2E90F009E68591C1B80F /* ArabicTimeAgo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ArabicTimeAgo.xcconfig; sourceTree = ""; }; 47 | 406CAAB11D73EBFAF15017809AFA701D /* Pods-ArabicTimeAgoExampleTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ArabicTimeAgoExampleTests-umbrella.h"; sourceTree = ""; }; 48 | 4DC57ED0171206FB812BCC124960E311 /* Pods_ArabicTimeAgoExampleUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 6E28ABC719F62A777F437A5D7AAAAC0B /* Pods-ArabicTimeAgoExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ArabicTimeAgoExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; 50 | 70ED07306C2AA4B78D068C25B3D5E229 /* Pods-ArabicTimeAgoExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ArabicTimeAgoExampleTests-dummy.m"; sourceTree = ""; }; 51 | 71E24C16293429C466827C8C7D8B7A19 /* ArabicTimeAgo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ArabicTimeAgo-prefix.pch"; sourceTree = ""; }; 52 | 757A69E720A1161701AE9886298C2B9C /* Pods-ArabicTimeAgoExample-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExample-frameworks.sh"; sourceTree = ""; }; 53 | 7985BF6D5FAFA17FD83A92063356A113 /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExampleTests.release.xcconfig"; sourceTree = ""; }; 54 | 7A930F7B0CDF395E85B850E0B358FB2A /* Pods-ArabicTimeAgoExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ArabicTimeAgoExample-acknowledgements.plist"; sourceTree = ""; }; 55 | 8863230606104955F4500B820276F718 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | 920AEA258E0DF6DF4BD9DFB38041F7CF /* Pods-ArabicTimeAgoExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ArabicTimeAgoExample.modulemap"; sourceTree = ""; }; 57 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58 | 9727C95B730A5338B0E9C856217484B9 /* ArabicTimeAgo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ArabicTimeAgo-dummy.m"; sourceTree = ""; }; 59 | 9D0262E3143B9F6CADAFE40B6474BCF3 /* Pods-ArabicTimeAgoExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ArabicTimeAgoExampleTests-acknowledgements.plist"; sourceTree = ""; }; 60 | 9E5D634F45500D3E5E7B86E855B1ACDC /* Pods-ArabicTimeAgoExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExample.release.xcconfig"; sourceTree = ""; }; 61 | A074A921A673FFD873AB116F450796E8 /* ArabicTimeAgo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ArabicTimeAgo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | A09FFF7B67EAF03E962632556B5C6AF3 /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExampleTests.debug.xcconfig"; sourceTree = ""; }; 63 | A6D1154AC1AB645241242B9D70CD132F /* Pods-ArabicTimeAgoExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ArabicTimeAgoExample-dummy.m"; sourceTree = ""; }; 64 | B6D3A07888756774C54F134F5E19E3D1 /* ArabicTimeAgo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = ArabicTimeAgo.modulemap; sourceTree = ""; }; 65 | BC68D09043DFC6D55F29E340B51D3AC7 /* Pods-ArabicTimeAgoExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ArabicTimeAgoExample-acknowledgements.markdown"; sourceTree = ""; }; 66 | C1100F4C2121ED6F76C26522B35866AE /* ArabicTimeAgo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ArabicTimeAgo-umbrella.h"; sourceTree = ""; }; 67 | C4FE122CF30F25E59E7C510722293D5B /* Pods-ArabicTimeAgoExampleTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExampleTests-resources.sh"; sourceTree = ""; }; 68 | C88573672511A3F2AF37CAF1B5F7DB66 /* Pods_ArabicTimeAgoExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 70 | CFAAFFBBAE1AF0D7F54CF88AB17902C1 /* Pods-ArabicTimeAgoExampleTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExampleTests-frameworks.sh"; sourceTree = ""; }; 71 | DC9134DAFE1B2DD92F5DC6E915A1BE5D /* Pods-ArabicTimeAgoExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ArabicTimeAgoExampleUITests-resources.sh"; sourceTree = ""; }; 72 | DE53B468782C09906937DE6B60DF94B9 /* Pods-ArabicTimeAgoExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ArabicTimeAgoExample-umbrella.h"; sourceTree = ""; }; 73 | E5671DA41E711A94A5A3D3B77C8406D4 /* ArTimeAgo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ArTimeAgo.swift; sourceTree = ""; }; 74 | EA1D3A57EC32F2F595FE9A49C9CAE976 /* Pods-ArabicTimeAgoExampleTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ArabicTimeAgoExampleTests.modulemap"; sourceTree = ""; }; 75 | F4B509F390BA3A779C872937CD30F7F5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 76 | F5D14EC6E68F8D1F6F3648A8B65DAEFD /* Pods-ArabicTimeAgoExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ArabicTimeAgoExampleUITests-umbrella.h"; sourceTree = ""; }; 77 | F60670D0F9EBA58F4548A6BA43B34F71 /* Pods_ArabicTimeAgoExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ArabicTimeAgoExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 78 | FB17F38FA16088D3431D99D11E6B98E9 /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ArabicTimeAgoExampleUITests.debug.xcconfig"; sourceTree = ""; }; 79 | /* End PBXFileReference section */ 80 | 81 | /* Begin PBXFrameworksBuildPhase section */ 82 | 4C3F29634ED38A932C3BA8CEE936F014 /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 048DB3BEEE7C5C6EB3C12D068ECDEDCA /* Foundation.framework in Frameworks */, 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | 5FA0E9932421B714FF458C6E6A62D478 /* Frameworks */ = { 91 | isa = PBXFrameworksBuildPhase; 92 | buildActionMask = 2147483647; 93 | files = ( 94 | 00CBEE96DB0825252156061ADD3BEE77 /* Foundation.framework in Frameworks */, 95 | ); 96 | runOnlyForDeploymentPostprocessing = 0; 97 | }; 98 | 92F58E3D2F4B28A1FF17058B51F9047B /* Frameworks */ = { 99 | isa = PBXFrameworksBuildPhase; 100 | buildActionMask = 2147483647; 101 | files = ( 102 | 3220248F45D1C4EE57440FEE1216A25D /* Foundation.framework in Frameworks */, 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | AFC0D5A37BAC6601AA92D362F6215D37 /* Frameworks */ = { 107 | isa = PBXFrameworksBuildPhase; 108 | buildActionMask = 2147483647; 109 | files = ( 110 | 043B54CECC1E6795E5EE47BC09650BB1 /* Foundation.framework in Frameworks */, 111 | ); 112 | runOnlyForDeploymentPostprocessing = 0; 113 | }; 114 | /* End PBXFrameworksBuildPhase section */ 115 | 116 | /* Begin PBXGroup section */ 117 | 26E636DA2307B5A536BD482DFF655F7D /* ArabicTimeAgo */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 2B83C97AAD502C740F941F00D14B9FF6 /* Classes */, 121 | ); 122 | path = ArabicTimeAgo; 123 | sourceTree = ""; 124 | }; 125 | 2B83C97AAD502C740F941F00D14B9FF6 /* Classes */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | E5671DA41E711A94A5A3D3B77C8406D4 /* ArTimeAgo.swift */, 129 | ); 130 | path = Classes; 131 | sourceTree = ""; 132 | }; 133 | 33F0F52B6059EE0269B108503E92519C /* Pods-ArabicTimeAgoExampleUITests */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 8863230606104955F4500B820276F718 /* Info.plist */, 137 | 007DEBE28B2F99D5813C797E8620C002 /* Pods-ArabicTimeAgoExampleUITests.modulemap */, 138 | 6E28ABC719F62A777F437A5D7AAAAC0B /* Pods-ArabicTimeAgoExampleUITests-acknowledgements.markdown */, 139 | 1B48ACF156584F2A751F1E8EE6471152 /* Pods-ArabicTimeAgoExampleUITests-acknowledgements.plist */, 140 | 2292B652015C44012B1025F631596F2C /* Pods-ArabicTimeAgoExampleUITests-dummy.m */, 141 | 1BAF484C2E8B9BABE7BE2C2AED4C263F /* Pods-ArabicTimeAgoExampleUITests-frameworks.sh */, 142 | DC9134DAFE1B2DD92F5DC6E915A1BE5D /* Pods-ArabicTimeAgoExampleUITests-resources.sh */, 143 | F5D14EC6E68F8D1F6F3648A8B65DAEFD /* Pods-ArabicTimeAgoExampleUITests-umbrella.h */, 144 | FB17F38FA16088D3431D99D11E6B98E9 /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */, 145 | 37ABCC7EB75181FFB508556DB73EF398 /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */, 146 | ); 147 | name = "Pods-ArabicTimeAgoExampleUITests"; 148 | path = "Target Support Files/Pods-ArabicTimeAgoExampleUITests"; 149 | sourceTree = ""; 150 | }; 151 | 5A4FDBCB1C87AF6E244E1FB5AA5A7814 /* Development Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | CEDC6DCF6A23B7435BEFBEBECFE8DA6D /* ArabicTimeAgo */, 155 | ); 156 | name = "Development Pods"; 157 | sourceTree = ""; 158 | }; 159 | 5D1556412F61CD7EA5906B4FC81CED29 /* Products */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | A074A921A673FFD873AB116F450796E8 /* ArabicTimeAgo.framework */, 163 | F60670D0F9EBA58F4548A6BA43B34F71 /* Pods_ArabicTimeAgoExample.framework */, 164 | C88573672511A3F2AF37CAF1B5F7DB66 /* Pods_ArabicTimeAgoExampleTests.framework */, 165 | 4DC57ED0171206FB812BCC124960E311 /* Pods_ArabicTimeAgoExampleUITests.framework */, 166 | ); 167 | name = Products; 168 | sourceTree = ""; 169 | }; 170 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */, 174 | ); 175 | name = iOS; 176 | sourceTree = ""; 177 | }; 178 | 77CB651A512EBCF8F82027B8AABBBDDF /* Support Files */ = { 179 | isa = PBXGroup; 180 | children = ( 181 | B6D3A07888756774C54F134F5E19E3D1 /* ArabicTimeAgo.modulemap */, 182 | 38FC4DB3B41C2E90F009E68591C1B80F /* ArabicTimeAgo.xcconfig */, 183 | 9727C95B730A5338B0E9C856217484B9 /* ArabicTimeAgo-dummy.m */, 184 | 71E24C16293429C466827C8C7D8B7A19 /* ArabicTimeAgo-prefix.pch */, 185 | C1100F4C2121ED6F76C26522B35866AE /* ArabicTimeAgo-umbrella.h */, 186 | 203630CB1A95A53AA9079FD9114B74E7 /* Info.plist */, 187 | ); 188 | name = "Support Files"; 189 | path = "ArabicTimeAgoExample/Pods/Target Support Files/ArabicTimeAgo"; 190 | sourceTree = ""; 191 | }; 192 | 7DB346D0F39D3F0E887471402A8071AB = { 193 | isa = PBXGroup; 194 | children = ( 195 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 196 | 5A4FDBCB1C87AF6E244E1FB5AA5A7814 /* Development Pods */, 197 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 198 | 5D1556412F61CD7EA5906B4FC81CED29 /* Products */, 199 | 858A8CE7FEED57BC050AC243C43763A7 /* Targets Support Files */, 200 | ); 201 | sourceTree = ""; 202 | }; 203 | 858A8CE7FEED57BC050AC243C43763A7 /* Targets Support Files */ = { 204 | isa = PBXGroup; 205 | children = ( 206 | A765308070B6DCCD4E2920FE83CF22CD /* Pods-ArabicTimeAgoExample */, 207 | E364D1F833F3451FCFA49F85CFA75232 /* Pods-ArabicTimeAgoExampleTests */, 208 | 33F0F52B6059EE0269B108503E92519C /* Pods-ArabicTimeAgoExampleUITests */, 209 | ); 210 | name = "Targets Support Files"; 211 | sourceTree = ""; 212 | }; 213 | A765308070B6DCCD4E2920FE83CF22CD /* Pods-ArabicTimeAgoExample */ = { 214 | isa = PBXGroup; 215 | children = ( 216 | F4B509F390BA3A779C872937CD30F7F5 /* Info.plist */, 217 | 920AEA258E0DF6DF4BD9DFB38041F7CF /* Pods-ArabicTimeAgoExample.modulemap */, 218 | BC68D09043DFC6D55F29E340B51D3AC7 /* Pods-ArabicTimeAgoExample-acknowledgements.markdown */, 219 | 7A930F7B0CDF395E85B850E0B358FB2A /* Pods-ArabicTimeAgoExample-acknowledgements.plist */, 220 | A6D1154AC1AB645241242B9D70CD132F /* Pods-ArabicTimeAgoExample-dummy.m */, 221 | 757A69E720A1161701AE9886298C2B9C /* Pods-ArabicTimeAgoExample-frameworks.sh */, 222 | 2D7AEEA30C4A0E67371061365F4C8B50 /* Pods-ArabicTimeAgoExample-resources.sh */, 223 | DE53B468782C09906937DE6B60DF94B9 /* Pods-ArabicTimeAgoExample-umbrella.h */, 224 | 0CA6BB8705E7D291D0360AD7F3DE00F0 /* Pods-ArabicTimeAgoExample.debug.xcconfig */, 225 | 9E5D634F45500D3E5E7B86E855B1ACDC /* Pods-ArabicTimeAgoExample.release.xcconfig */, 226 | ); 227 | name = "Pods-ArabicTimeAgoExample"; 228 | path = "Target Support Files/Pods-ArabicTimeAgoExample"; 229 | sourceTree = ""; 230 | }; 231 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 232 | isa = PBXGroup; 233 | children = ( 234 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */, 235 | ); 236 | name = Frameworks; 237 | sourceTree = ""; 238 | }; 239 | CEDC6DCF6A23B7435BEFBEBECFE8DA6D /* ArabicTimeAgo */ = { 240 | isa = PBXGroup; 241 | children = ( 242 | 26E636DA2307B5A536BD482DFF655F7D /* ArabicTimeAgo */, 243 | 77CB651A512EBCF8F82027B8AABBBDDF /* Support Files */, 244 | ); 245 | name = ArabicTimeAgo; 246 | path = ../..; 247 | sourceTree = ""; 248 | }; 249 | E364D1F833F3451FCFA49F85CFA75232 /* Pods-ArabicTimeAgoExampleTests */ = { 250 | isa = PBXGroup; 251 | children = ( 252 | 194D7A461499889E8F4AD085009E13B4 /* Info.plist */, 253 | EA1D3A57EC32F2F595FE9A49C9CAE976 /* Pods-ArabicTimeAgoExampleTests.modulemap */, 254 | 35F3B89E98DC32FD59F2AD05CFE45106 /* Pods-ArabicTimeAgoExampleTests-acknowledgements.markdown */, 255 | 9D0262E3143B9F6CADAFE40B6474BCF3 /* Pods-ArabicTimeAgoExampleTests-acknowledgements.plist */, 256 | 70ED07306C2AA4B78D068C25B3D5E229 /* Pods-ArabicTimeAgoExampleTests-dummy.m */, 257 | CFAAFFBBAE1AF0D7F54CF88AB17902C1 /* Pods-ArabicTimeAgoExampleTests-frameworks.sh */, 258 | C4FE122CF30F25E59E7C510722293D5B /* Pods-ArabicTimeAgoExampleTests-resources.sh */, 259 | 406CAAB11D73EBFAF15017809AFA701D /* Pods-ArabicTimeAgoExampleTests-umbrella.h */, 260 | A09FFF7B67EAF03E962632556B5C6AF3 /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */, 261 | 7985BF6D5FAFA17FD83A92063356A113 /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */, 262 | ); 263 | name = "Pods-ArabicTimeAgoExampleTests"; 264 | path = "Target Support Files/Pods-ArabicTimeAgoExampleTests"; 265 | sourceTree = ""; 266 | }; 267 | /* End PBXGroup section */ 268 | 269 | /* Begin PBXHeadersBuildPhase section */ 270 | 06007D400F7202761509E6936CAD7528 /* Headers */ = { 271 | isa = PBXHeadersBuildPhase; 272 | buildActionMask = 2147483647; 273 | files = ( 274 | 0FD4189A407769B305C07D2DE1CC7DBC /* ArabicTimeAgo-umbrella.h in Headers */, 275 | ); 276 | runOnlyForDeploymentPostprocessing = 0; 277 | }; 278 | 8D3AB8915E2A5CBF9CAEA08E035FF7E4 /* Headers */ = { 279 | isa = PBXHeadersBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | E21594728018208AD1CE642ADDFB65A5 /* Pods-ArabicTimeAgoExampleTests-umbrella.h in Headers */, 283 | ); 284 | runOnlyForDeploymentPostprocessing = 0; 285 | }; 286 | 972E2AC9E749B407EFD88B6BBB750986 /* Headers */ = { 287 | isa = PBXHeadersBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | 69D2437E84C410E72694398FC7062821 /* Pods-ArabicTimeAgoExample-umbrella.h in Headers */, 291 | ); 292 | runOnlyForDeploymentPostprocessing = 0; 293 | }; 294 | C23946C7C8711C9718AB9E0F63459A52 /* Headers */ = { 295 | isa = PBXHeadersBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | 66B526269D75FBA8F7F0854ED09D982D /* Pods-ArabicTimeAgoExampleUITests-umbrella.h in Headers */, 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | }; 302 | /* End PBXHeadersBuildPhase section */ 303 | 304 | /* Begin PBXNativeTarget section */ 305 | 0A594756267997CAEA4770AF195D213F /* ArabicTimeAgo */ = { 306 | isa = PBXNativeTarget; 307 | buildConfigurationList = E3A177678A8F482F8008EC0A4F0C03CF /* Build configuration list for PBXNativeTarget "ArabicTimeAgo" */; 308 | buildPhases = ( 309 | E4C00720B1A1410C1C6AF935A218DB32 /* Sources */, 310 | AFC0D5A37BAC6601AA92D362F6215D37 /* Frameworks */, 311 | 06007D400F7202761509E6936CAD7528 /* Headers */, 312 | ); 313 | buildRules = ( 314 | ); 315 | dependencies = ( 316 | ); 317 | name = ArabicTimeAgo; 318 | productName = ArabicTimeAgo; 319 | productReference = A074A921A673FFD873AB116F450796E8 /* ArabicTimeAgo.framework */; 320 | productType = "com.apple.product-type.framework"; 321 | }; 322 | 1CCF14C25CC9B85BF86652DE7D499B15 /* Pods-ArabicTimeAgoExampleTests */ = { 323 | isa = PBXNativeTarget; 324 | buildConfigurationList = 1CBCDF876C2370388DF20EE890692E9E /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExampleTests" */; 325 | buildPhases = ( 326 | F23962AC981AE0778D072816948E5326 /* Sources */, 327 | 5FA0E9932421B714FF458C6E6A62D478 /* Frameworks */, 328 | 8D3AB8915E2A5CBF9CAEA08E035FF7E4 /* Headers */, 329 | ); 330 | buildRules = ( 331 | ); 332 | dependencies = ( 333 | ); 334 | name = "Pods-ArabicTimeAgoExampleTests"; 335 | productName = "Pods-ArabicTimeAgoExampleTests"; 336 | productReference = C88573672511A3F2AF37CAF1B5F7DB66 /* Pods_ArabicTimeAgoExampleTests.framework */; 337 | productType = "com.apple.product-type.framework"; 338 | }; 339 | 6C5E8F7F193E83913713A5FAAC2A5319 /* Pods-ArabicTimeAgoExampleUITests */ = { 340 | isa = PBXNativeTarget; 341 | buildConfigurationList = 17B8565054C52EB88E41079AA38DC75E /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExampleUITests" */; 342 | buildPhases = ( 343 | C8D317AE4EF102158C746FA14845D035 /* Sources */, 344 | 92F58E3D2F4B28A1FF17058B51F9047B /* Frameworks */, 345 | C23946C7C8711C9718AB9E0F63459A52 /* Headers */, 346 | ); 347 | buildRules = ( 348 | ); 349 | dependencies = ( 350 | ); 351 | name = "Pods-ArabicTimeAgoExampleUITests"; 352 | productName = "Pods-ArabicTimeAgoExampleUITests"; 353 | productReference = 4DC57ED0171206FB812BCC124960E311 /* Pods_ArabicTimeAgoExampleUITests.framework */; 354 | productType = "com.apple.product-type.framework"; 355 | }; 356 | 8B6BD95F7E839D8D82D925F07E5613C7 /* Pods-ArabicTimeAgoExample */ = { 357 | isa = PBXNativeTarget; 358 | buildConfigurationList = 4C277BF825CCC1B815A5E8EC95CF3C11 /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExample" */; 359 | buildPhases = ( 360 | E661E9169DA69551867782B87AC01934 /* Sources */, 361 | 4C3F29634ED38A932C3BA8CEE936F014 /* Frameworks */, 362 | 972E2AC9E749B407EFD88B6BBB750986 /* Headers */, 363 | ); 364 | buildRules = ( 365 | ); 366 | dependencies = ( 367 | 70FFD8F724C6AF8C6484C5D5F22D8E52 /* PBXTargetDependency */, 368 | ); 369 | name = "Pods-ArabicTimeAgoExample"; 370 | productName = "Pods-ArabicTimeAgoExample"; 371 | productReference = F60670D0F9EBA58F4548A6BA43B34F71 /* Pods_ArabicTimeAgoExample.framework */; 372 | productType = "com.apple.product-type.framework"; 373 | }; 374 | /* End PBXNativeTarget section */ 375 | 376 | /* Begin PBXProject section */ 377 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 378 | isa = PBXProject; 379 | attributes = { 380 | LastSwiftUpdateCheck = 0730; 381 | LastUpgradeCheck = 0910; 382 | }; 383 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 384 | compatibilityVersion = "Xcode 3.2"; 385 | developmentRegion = English; 386 | hasScannedForEncodings = 0; 387 | knownRegions = ( 388 | en, 389 | ); 390 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 391 | productRefGroup = 5D1556412F61CD7EA5906B4FC81CED29 /* Products */; 392 | projectDirPath = ""; 393 | projectRoot = ""; 394 | targets = ( 395 | 0A594756267997CAEA4770AF195D213F /* ArabicTimeAgo */, 396 | 8B6BD95F7E839D8D82D925F07E5613C7 /* Pods-ArabicTimeAgoExample */, 397 | 1CCF14C25CC9B85BF86652DE7D499B15 /* Pods-ArabicTimeAgoExampleTests */, 398 | 6C5E8F7F193E83913713A5FAAC2A5319 /* Pods-ArabicTimeAgoExampleUITests */, 399 | ); 400 | }; 401 | /* End PBXProject section */ 402 | 403 | /* Begin PBXSourcesBuildPhase section */ 404 | C8D317AE4EF102158C746FA14845D035 /* Sources */ = { 405 | isa = PBXSourcesBuildPhase; 406 | buildActionMask = 2147483647; 407 | files = ( 408 | 271F6ABC1F7E41AF3CB168D37583EE33 /* Pods-ArabicTimeAgoExampleUITests-dummy.m in Sources */, 409 | ); 410 | runOnlyForDeploymentPostprocessing = 0; 411 | }; 412 | E4C00720B1A1410C1C6AF935A218DB32 /* Sources */ = { 413 | isa = PBXSourcesBuildPhase; 414 | buildActionMask = 2147483647; 415 | files = ( 416 | C5F0259E178223387F8C3B378CB256EB /* ArabicTimeAgo-dummy.m in Sources */, 417 | 5592E14AB2DABB88B38BDF32ABC8BB6E /* ArTimeAgo.swift in Sources */, 418 | ); 419 | runOnlyForDeploymentPostprocessing = 0; 420 | }; 421 | E661E9169DA69551867782B87AC01934 /* Sources */ = { 422 | isa = PBXSourcesBuildPhase; 423 | buildActionMask = 2147483647; 424 | files = ( 425 | B01D86D7B83DD00048FD8397FFF74CEC /* Pods-ArabicTimeAgoExample-dummy.m in Sources */, 426 | ); 427 | runOnlyForDeploymentPostprocessing = 0; 428 | }; 429 | F23962AC981AE0778D072816948E5326 /* Sources */ = { 430 | isa = PBXSourcesBuildPhase; 431 | buildActionMask = 2147483647; 432 | files = ( 433 | 2DC51A1D67A3A2D482E701CC4ED1C20D /* Pods-ArabicTimeAgoExampleTests-dummy.m in Sources */, 434 | ); 435 | runOnlyForDeploymentPostprocessing = 0; 436 | }; 437 | /* End PBXSourcesBuildPhase section */ 438 | 439 | /* Begin PBXTargetDependency section */ 440 | 70FFD8F724C6AF8C6484C5D5F22D8E52 /* PBXTargetDependency */ = { 441 | isa = PBXTargetDependency; 442 | name = ArabicTimeAgo; 443 | target = 0A594756267997CAEA4770AF195D213F /* ArabicTimeAgo */; 444 | targetProxy = D84BA68540F67C3B30F9861F4038EF52 /* PBXContainerItemProxy */; 445 | }; 446 | /* End PBXTargetDependency section */ 447 | 448 | /* Begin XCBuildConfiguration section */ 449 | 517DCBBFEDAF57A510F7F36B21D80E0A /* Debug */ = { 450 | isa = XCBuildConfiguration; 451 | baseConfigurationReference = 38FC4DB3B41C2E90F009E68591C1B80F /* ArabicTimeAgo.xcconfig */; 452 | buildSettings = { 453 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 454 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 455 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 456 | CURRENT_PROJECT_VERSION = 1; 457 | DEBUG_INFORMATION_FORMAT = dwarf; 458 | DEFINES_MODULE = YES; 459 | DYLIB_COMPATIBILITY_VERSION = 1; 460 | DYLIB_CURRENT_VERSION = 1; 461 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 462 | ENABLE_STRICT_OBJC_MSGSEND = YES; 463 | GCC_NO_COMMON_BLOCKS = YES; 464 | GCC_PREFIX_HEADER = "Target Support Files/ArabicTimeAgo/ArabicTimeAgo-prefix.pch"; 465 | INFOPLIST_FILE = "Target Support Files/ArabicTimeAgo/Info.plist"; 466 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 467 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 468 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 469 | MODULEMAP_FILE = "Target Support Files/ArabicTimeAgo/ArabicTimeAgo.modulemap"; 470 | MTL_ENABLE_DEBUG_INFO = YES; 471 | PRODUCT_NAME = ArabicTimeAgo; 472 | SDKROOT = iphoneos; 473 | SKIP_INSTALL = YES; 474 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 475 | SWIFT_VERSION = 4.0; 476 | TARGETED_DEVICE_FAMILY = "1,2"; 477 | VERSIONING_SYSTEM = "apple-generic"; 478 | VERSION_INFO_PREFIX = ""; 479 | }; 480 | name = Debug; 481 | }; 482 | 59B042A655B7C20CBAB90E385BF4E4C7 /* Debug */ = { 483 | isa = XCBuildConfiguration; 484 | buildSettings = { 485 | ALWAYS_SEARCH_USER_PATHS = NO; 486 | CLANG_ANALYZER_NONNULL = YES; 487 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 488 | CLANG_CXX_LIBRARY = "libc++"; 489 | CLANG_ENABLE_MODULES = YES; 490 | CLANG_ENABLE_OBJC_ARC = YES; 491 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 492 | CLANG_WARN_BOOL_CONVERSION = YES; 493 | CLANG_WARN_COMMA = YES; 494 | CLANG_WARN_CONSTANT_CONVERSION = YES; 495 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 496 | CLANG_WARN_EMPTY_BODY = YES; 497 | CLANG_WARN_ENUM_CONVERSION = YES; 498 | CLANG_WARN_INFINITE_RECURSION = YES; 499 | CLANG_WARN_INT_CONVERSION = YES; 500 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 501 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 502 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 503 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 504 | CLANG_WARN_STRICT_PROTOTYPES = YES; 505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 506 | CLANG_WARN_UNREACHABLE_CODE = YES; 507 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 508 | CODE_SIGNING_REQUIRED = NO; 509 | COPY_PHASE_STRIP = NO; 510 | ENABLE_STRICT_OBJC_MSGSEND = YES; 511 | ENABLE_TESTABILITY = YES; 512 | GCC_C_LANGUAGE_STANDARD = gnu99; 513 | GCC_DYNAMIC_NO_PIC = NO; 514 | GCC_NO_COMMON_BLOCKS = YES; 515 | GCC_OPTIMIZATION_LEVEL = 0; 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "POD_CONFIGURATION_DEBUG=1", 518 | "DEBUG=1", 519 | "$(inherited)", 520 | ); 521 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 522 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 523 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 524 | GCC_WARN_UNDECLARED_SELECTOR = YES; 525 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 526 | GCC_WARN_UNUSED_FUNCTION = YES; 527 | GCC_WARN_UNUSED_VARIABLE = YES; 528 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 529 | ONLY_ACTIVE_ARCH = YES; 530 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 531 | STRIP_INSTALLED_PRODUCT = NO; 532 | SYMROOT = "${SRCROOT}/../build"; 533 | }; 534 | name = Debug; 535 | }; 536 | 96EF22E25C5DE9553659CA09F03E60B5 /* Release */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = 7985BF6D5FAFA17FD83A92063356A113 /* Pods-ArabicTimeAgoExampleTests.release.xcconfig */; 539 | buildSettings = { 540 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 541 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 542 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 543 | CURRENT_PROJECT_VERSION = 1; 544 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 545 | DEFINES_MODULE = YES; 546 | DYLIB_COMPATIBILITY_VERSION = 1; 547 | DYLIB_CURRENT_VERSION = 1; 548 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 549 | ENABLE_STRICT_OBJC_MSGSEND = YES; 550 | GCC_NO_COMMON_BLOCKS = YES; 551 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleTests/Info.plist"; 552 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 553 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 554 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 555 | MACH_O_TYPE = staticlib; 556 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.modulemap"; 557 | MTL_ENABLE_DEBUG_INFO = NO; 558 | OTHER_LDFLAGS = ""; 559 | OTHER_LIBTOOLFLAGS = ""; 560 | PODS_ROOT = "$(SRCROOT)"; 561 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 562 | PRODUCT_NAME = Pods_ArabicTimeAgoExampleTests; 563 | SDKROOT = iphoneos; 564 | SKIP_INSTALL = YES; 565 | TARGETED_DEVICE_FAMILY = "1,2"; 566 | VERSIONING_SYSTEM = "apple-generic"; 567 | VERSION_INFO_PREFIX = ""; 568 | }; 569 | name = Release; 570 | }; 571 | A108F424972220F59C17B1D5328D4D2E /* Release */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = 37ABCC7EB75181FFB508556DB73EF398 /* Pods-ArabicTimeAgoExampleUITests.release.xcconfig */; 574 | buildSettings = { 575 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 576 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 577 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 578 | CURRENT_PROJECT_VERSION = 1; 579 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 580 | DEFINES_MODULE = YES; 581 | DYLIB_COMPATIBILITY_VERSION = 1; 582 | DYLIB_CURRENT_VERSION = 1; 583 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 584 | ENABLE_STRICT_OBJC_MSGSEND = YES; 585 | GCC_NO_COMMON_BLOCKS = YES; 586 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleUITests/Info.plist"; 587 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 588 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 589 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 590 | MACH_O_TYPE = staticlib; 591 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.modulemap"; 592 | MTL_ENABLE_DEBUG_INFO = NO; 593 | OTHER_LDFLAGS = ""; 594 | OTHER_LIBTOOLFLAGS = ""; 595 | PODS_ROOT = "$(SRCROOT)"; 596 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 597 | PRODUCT_NAME = Pods_ArabicTimeAgoExampleUITests; 598 | SDKROOT = iphoneos; 599 | SKIP_INSTALL = YES; 600 | TARGETED_DEVICE_FAMILY = "1,2"; 601 | VERSIONING_SYSTEM = "apple-generic"; 602 | VERSION_INFO_PREFIX = ""; 603 | }; 604 | name = Release; 605 | }; 606 | A6A370F98AE0CD62E2502EE8055BF5A1 /* Release */ = { 607 | isa = XCBuildConfiguration; 608 | baseConfigurationReference = 9E5D634F45500D3E5E7B86E855B1ACDC /* Pods-ArabicTimeAgoExample.release.xcconfig */; 609 | buildSettings = { 610 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 611 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 612 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 613 | CURRENT_PROJECT_VERSION = 1; 614 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 615 | DEFINES_MODULE = YES; 616 | DYLIB_COMPATIBILITY_VERSION = 1; 617 | DYLIB_CURRENT_VERSION = 1; 618 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 619 | ENABLE_STRICT_OBJC_MSGSEND = YES; 620 | GCC_NO_COMMON_BLOCKS = YES; 621 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExample/Info.plist"; 622 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 623 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 624 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 625 | MACH_O_TYPE = staticlib; 626 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.modulemap"; 627 | MTL_ENABLE_DEBUG_INFO = NO; 628 | OTHER_LDFLAGS = ""; 629 | OTHER_LIBTOOLFLAGS = ""; 630 | PODS_ROOT = "$(SRCROOT)"; 631 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 632 | PRODUCT_NAME = Pods_ArabicTimeAgoExample; 633 | SDKROOT = iphoneos; 634 | SKIP_INSTALL = YES; 635 | TARGETED_DEVICE_FAMILY = "1,2"; 636 | VERSIONING_SYSTEM = "apple-generic"; 637 | VERSION_INFO_PREFIX = ""; 638 | }; 639 | name = Release; 640 | }; 641 | A81442FFA532E6C37B54C1E8536A56FC /* Release */ = { 642 | isa = XCBuildConfiguration; 643 | baseConfigurationReference = 38FC4DB3B41C2E90F009E68591C1B80F /* ArabicTimeAgo.xcconfig */; 644 | buildSettings = { 645 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 646 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 647 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 648 | CURRENT_PROJECT_VERSION = 1; 649 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 650 | DEFINES_MODULE = YES; 651 | DYLIB_COMPATIBILITY_VERSION = 1; 652 | DYLIB_CURRENT_VERSION = 1; 653 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 654 | ENABLE_STRICT_OBJC_MSGSEND = YES; 655 | GCC_NO_COMMON_BLOCKS = YES; 656 | GCC_PREFIX_HEADER = "Target Support Files/ArabicTimeAgo/ArabicTimeAgo-prefix.pch"; 657 | INFOPLIST_FILE = "Target Support Files/ArabicTimeAgo/Info.plist"; 658 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 659 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 660 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 661 | MODULEMAP_FILE = "Target Support Files/ArabicTimeAgo/ArabicTimeAgo.modulemap"; 662 | MTL_ENABLE_DEBUG_INFO = NO; 663 | PRODUCT_NAME = ArabicTimeAgo; 664 | SDKROOT = iphoneos; 665 | SKIP_INSTALL = YES; 666 | SWIFT_VERSION = 4.0; 667 | TARGETED_DEVICE_FAMILY = "1,2"; 668 | VERSIONING_SYSTEM = "apple-generic"; 669 | VERSION_INFO_PREFIX = ""; 670 | }; 671 | name = Release; 672 | }; 673 | B7324857C38B065FEB1EEE3105C2367A /* Release */ = { 674 | isa = XCBuildConfiguration; 675 | buildSettings = { 676 | ALWAYS_SEARCH_USER_PATHS = NO; 677 | CLANG_ANALYZER_NONNULL = YES; 678 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 679 | CLANG_CXX_LIBRARY = "libc++"; 680 | CLANG_ENABLE_MODULES = YES; 681 | CLANG_ENABLE_OBJC_ARC = YES; 682 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 683 | CLANG_WARN_BOOL_CONVERSION = YES; 684 | CLANG_WARN_COMMA = YES; 685 | CLANG_WARN_CONSTANT_CONVERSION = YES; 686 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 687 | CLANG_WARN_EMPTY_BODY = YES; 688 | CLANG_WARN_ENUM_CONVERSION = YES; 689 | CLANG_WARN_INFINITE_RECURSION = YES; 690 | CLANG_WARN_INT_CONVERSION = YES; 691 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 692 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 693 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 694 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 695 | CLANG_WARN_STRICT_PROTOTYPES = YES; 696 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 697 | CLANG_WARN_UNREACHABLE_CODE = YES; 698 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 699 | CODE_SIGNING_REQUIRED = NO; 700 | COPY_PHASE_STRIP = YES; 701 | ENABLE_NS_ASSERTIONS = NO; 702 | ENABLE_STRICT_OBJC_MSGSEND = YES; 703 | GCC_C_LANGUAGE_STANDARD = gnu99; 704 | GCC_NO_COMMON_BLOCKS = YES; 705 | GCC_PREPROCESSOR_DEFINITIONS = ( 706 | "POD_CONFIGURATION_RELEASE=1", 707 | "$(inherited)", 708 | ); 709 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 710 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 711 | GCC_WARN_UNDECLARED_SELECTOR = YES; 712 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 713 | GCC_WARN_UNUSED_FUNCTION = YES; 714 | GCC_WARN_UNUSED_VARIABLE = YES; 715 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 716 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 717 | STRIP_INSTALLED_PRODUCT = NO; 718 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 719 | SYMROOT = "${SRCROOT}/../build"; 720 | VALIDATE_PRODUCT = YES; 721 | }; 722 | name = Release; 723 | }; 724 | BB4992E664A19281F81802BF8F217377 /* Debug */ = { 725 | isa = XCBuildConfiguration; 726 | baseConfigurationReference = A09FFF7B67EAF03E962632556B5C6AF3 /* Pods-ArabicTimeAgoExampleTests.debug.xcconfig */; 727 | buildSettings = { 728 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 729 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 730 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 731 | CURRENT_PROJECT_VERSION = 1; 732 | DEBUG_INFORMATION_FORMAT = dwarf; 733 | DEFINES_MODULE = YES; 734 | DYLIB_COMPATIBILITY_VERSION = 1; 735 | DYLIB_CURRENT_VERSION = 1; 736 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 737 | ENABLE_STRICT_OBJC_MSGSEND = YES; 738 | GCC_NO_COMMON_BLOCKS = YES; 739 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleTests/Info.plist"; 740 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 741 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 742 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 743 | MACH_O_TYPE = staticlib; 744 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleTests/Pods-ArabicTimeAgoExampleTests.modulemap"; 745 | MTL_ENABLE_DEBUG_INFO = YES; 746 | OTHER_LDFLAGS = ""; 747 | OTHER_LIBTOOLFLAGS = ""; 748 | PODS_ROOT = "$(SRCROOT)"; 749 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 750 | PRODUCT_NAME = Pods_ArabicTimeAgoExampleTests; 751 | SDKROOT = iphoneos; 752 | SKIP_INSTALL = YES; 753 | TARGETED_DEVICE_FAMILY = "1,2"; 754 | VERSIONING_SYSTEM = "apple-generic"; 755 | VERSION_INFO_PREFIX = ""; 756 | }; 757 | name = Debug; 758 | }; 759 | D9D8998D2A94AA2E558F0B2C76D832D8 /* Debug */ = { 760 | isa = XCBuildConfiguration; 761 | baseConfigurationReference = FB17F38FA16088D3431D99D11E6B98E9 /* Pods-ArabicTimeAgoExampleUITests.debug.xcconfig */; 762 | buildSettings = { 763 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 764 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 765 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 766 | CURRENT_PROJECT_VERSION = 1; 767 | DEBUG_INFORMATION_FORMAT = dwarf; 768 | DEFINES_MODULE = YES; 769 | DYLIB_COMPATIBILITY_VERSION = 1; 770 | DYLIB_CURRENT_VERSION = 1; 771 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 772 | ENABLE_STRICT_OBJC_MSGSEND = YES; 773 | GCC_NO_COMMON_BLOCKS = YES; 774 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleUITests/Info.plist"; 775 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 776 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 777 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 778 | MACH_O_TYPE = staticlib; 779 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExampleUITests/Pods-ArabicTimeAgoExampleUITests.modulemap"; 780 | MTL_ENABLE_DEBUG_INFO = YES; 781 | OTHER_LDFLAGS = ""; 782 | OTHER_LIBTOOLFLAGS = ""; 783 | PODS_ROOT = "$(SRCROOT)"; 784 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 785 | PRODUCT_NAME = Pods_ArabicTimeAgoExampleUITests; 786 | SDKROOT = iphoneos; 787 | SKIP_INSTALL = YES; 788 | TARGETED_DEVICE_FAMILY = "1,2"; 789 | VERSIONING_SYSTEM = "apple-generic"; 790 | VERSION_INFO_PREFIX = ""; 791 | }; 792 | name = Debug; 793 | }; 794 | E2BB86B82FF727B6B1083FE688CB2224 /* Debug */ = { 795 | isa = XCBuildConfiguration; 796 | baseConfigurationReference = 0CA6BB8705E7D291D0360AD7F3DE00F0 /* Pods-ArabicTimeAgoExample.debug.xcconfig */; 797 | buildSettings = { 798 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 799 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 800 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 801 | CURRENT_PROJECT_VERSION = 1; 802 | DEBUG_INFORMATION_FORMAT = dwarf; 803 | DEFINES_MODULE = YES; 804 | DYLIB_COMPATIBILITY_VERSION = 1; 805 | DYLIB_CURRENT_VERSION = 1; 806 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 807 | ENABLE_STRICT_OBJC_MSGSEND = YES; 808 | GCC_NO_COMMON_BLOCKS = YES; 809 | INFOPLIST_FILE = "Target Support Files/Pods-ArabicTimeAgoExample/Info.plist"; 810 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 811 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 812 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 813 | MACH_O_TYPE = staticlib; 814 | MODULEMAP_FILE = "Target Support Files/Pods-ArabicTimeAgoExample/Pods-ArabicTimeAgoExample.modulemap"; 815 | MTL_ENABLE_DEBUG_INFO = YES; 816 | OTHER_LDFLAGS = ""; 817 | OTHER_LIBTOOLFLAGS = ""; 818 | PODS_ROOT = "$(SRCROOT)"; 819 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 820 | PRODUCT_NAME = Pods_ArabicTimeAgoExample; 821 | SDKROOT = iphoneos; 822 | SKIP_INSTALL = YES; 823 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 824 | TARGETED_DEVICE_FAMILY = "1,2"; 825 | VERSIONING_SYSTEM = "apple-generic"; 826 | VERSION_INFO_PREFIX = ""; 827 | }; 828 | name = Debug; 829 | }; 830 | /* End XCBuildConfiguration section */ 831 | 832 | /* Begin XCConfigurationList section */ 833 | 17B8565054C52EB88E41079AA38DC75E /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExampleUITests" */ = { 834 | isa = XCConfigurationList; 835 | buildConfigurations = ( 836 | D9D8998D2A94AA2E558F0B2C76D832D8 /* Debug */, 837 | A108F424972220F59C17B1D5328D4D2E /* Release */, 838 | ); 839 | defaultConfigurationIsVisible = 0; 840 | defaultConfigurationName = Release; 841 | }; 842 | 1CBCDF876C2370388DF20EE890692E9E /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExampleTests" */ = { 843 | isa = XCConfigurationList; 844 | buildConfigurations = ( 845 | BB4992E664A19281F81802BF8F217377 /* Debug */, 846 | 96EF22E25C5DE9553659CA09F03E60B5 /* Release */, 847 | ); 848 | defaultConfigurationIsVisible = 0; 849 | defaultConfigurationName = Release; 850 | }; 851 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 852 | isa = XCConfigurationList; 853 | buildConfigurations = ( 854 | 59B042A655B7C20CBAB90E385BF4E4C7 /* Debug */, 855 | B7324857C38B065FEB1EEE3105C2367A /* Release */, 856 | ); 857 | defaultConfigurationIsVisible = 0; 858 | defaultConfigurationName = Release; 859 | }; 860 | 4C277BF825CCC1B815A5E8EC95CF3C11 /* Build configuration list for PBXNativeTarget "Pods-ArabicTimeAgoExample" */ = { 861 | isa = XCConfigurationList; 862 | buildConfigurations = ( 863 | E2BB86B82FF727B6B1083FE688CB2224 /* Debug */, 864 | A6A370F98AE0CD62E2502EE8055BF5A1 /* Release */, 865 | ); 866 | defaultConfigurationIsVisible = 0; 867 | defaultConfigurationName = Release; 868 | }; 869 | E3A177678A8F482F8008EC0A4F0C03CF /* Build configuration list for PBXNativeTarget "ArabicTimeAgo" */ = { 870 | isa = XCConfigurationList; 871 | buildConfigurations = ( 872 | 517DCBBFEDAF57A510F7F36B21D80E0A /* Debug */, 873 | A81442FFA532E6C37B54C1E8536A56FC /* Release */, 874 | ); 875 | defaultConfigurationIsVisible = 0; 876 | defaultConfigurationName = Release; 877 | }; 878 | /* End XCConfigurationList section */ 879 | }; 880 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 881 | } 882 | --------------------------------------------------------------------------------