Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
whats-open-ios
Commits
a2027c99
Unverified
Commit
a2027c99
authored
Mar 09, 2018
by
Zach Knox
Browse files
fixed special schedules
parent
4cfc4b0d
Changes
38
Expand all
Hide whitespace changes
Inline
Side-by-side
WhatsOpen/Podfile
View file @
a2027c99
...
...
@@ -4,20 +4,27 @@
platform
:ios
,
'11.0'
use_frameworks!
def
ios_pods
pod
'RealmSwift'
target
'WhatsOpen'
do
pod
'ObjectMapper'
,
'~> 3.0'
pod
"ObjectMapper+Realm"
pod
'
RealmSwift
'
#
pod '
Segmentio', '~> 2.1
'
pod
'
ObjectMapper
'
,
'~>
3
.0'
pod
'
DeckTransition
'
,
'~>
1.4
.0'
#pod 'Segmentio', '~> 2.1'
pod
'Fabric'
pod
'Crashlytics'
end
pod
'DeckTransition'
,
'~> 1.4.0'
pod
'Fabric'
pod
'Crashlytics'
target
'WhatsOpen'
do
ios_pods
end
target
'WhatsOpen - AppStore'
do
ios_pods
end
...
...
WhatsOpen/Podfile.lock
View file @
a2027c99
...
...
@@ -4,6 +4,9 @@ PODS:
- DeckTransition (1.4.2)
- Fabric (1.7.2)
- ObjectMapper (3.1.0)
- ObjectMapper+Realm (0.5):
- ObjectMapper
- RealmSwift
- Realm (3.0.2):
- Realm/Headers (= 3.0.2)
- Realm/Headers (3.0.2)
...
...
@@ -15,6 +18,7 @@ DEPENDENCIES:
- DeckTransition (~> 1.4.0)
- Fabric
- ObjectMapper (~> 3.0)
- ObjectMapper+Realm
- RealmSwift
SPEC CHECKSUMS:
...
...
@@ -22,9 +26,10 @@ SPEC CHECKSUMS:
DeckTransition: 56330226ddbefd2ddc9f57b8b56d37e0e93e6b91
Fabric: 9cd6a848efcf1b8b07497e0b6a2e7d336353ba15
ObjectMapper: 20505058f54e5c3ca69e1d6de9897d152a5369a6
ObjectMapper+Realm: 3188789fb77c189c7a83cb625333a607eb61a08f
Realm: 6f23fd1f178a09342eac21bfa7c2bf4312a7a180
RealmSwift: 695393add1b8f9d5fa75dd16e6355cf3935f71e2
PODFILE CHECKSUM:
0b5576cd93312d1f26dde9d10d699be17abbb7ce
PODFILE CHECKSUM:
577e38cbdd4f8b4f85f53b0cc34e2a960a6c1c33
COCOAPODS: 1.3.1
WhatsOpen/Pods/Manifest.lock
View file @
a2027c99
...
...
@@ -4,6 +4,9 @@ PODS:
- DeckTransition (1.4.2)
- Fabric (1.7.2)
- ObjectMapper (3.1.0)
- ObjectMapper+Realm (0.5):
- ObjectMapper
- RealmSwift
- Realm (3.0.2):
- Realm/Headers (= 3.0.2)
- Realm/Headers (3.0.2)
...
...
@@ -15,6 +18,7 @@ DEPENDENCIES:
- DeckTransition (~> 1.4.0)
- Fabric
- ObjectMapper (~> 3.0)
- ObjectMapper+Realm
- RealmSwift
SPEC CHECKSUMS:
...
...
@@ -22,9 +26,10 @@ SPEC CHECKSUMS:
DeckTransition: 56330226ddbefd2ddc9f57b8b56d37e0e93e6b91
Fabric: 9cd6a848efcf1b8b07497e0b6a2e7d336353ba15
ObjectMapper: 20505058f54e5c3ca69e1d6de9897d152a5369a6
ObjectMapper+Realm: 3188789fb77c189c7a83cb625333a607eb61a08f
Realm: 6f23fd1f178a09342eac21bfa7c2bf4312a7a180
RealmSwift: 695393add1b8f9d5fa75dd16e6355cf3935f71e2
PODFILE CHECKSUM:
0b5576cd93312d1f26dde9d10d699be17abbb7ce
PODFILE CHECKSUM:
577e38cbdd4f8b4f85f53b0cc34e2a960a6c1c33
COCOAPODS: 1.3.1
WhatsOpen/Pods/ObjectMapper+Realm/LICENSE
0 → 100644
View file @
a2027c99
This project is licensed under the MIT license.
Copyright (c) 2013 - 2014 CocoaPods Dev Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
WhatsOpen/Pods/ObjectMapper+Realm/ObjectMapper+Realm/ListTransform.swift
0 → 100644
View file @
a2027c99
//
// ListTransform.swift
// ObjectMapper+Realm
//
// Created by Jake Peterson on 8/25/16.
// Copyright © 2016 jakenberg. All rights reserved.
//
import
Foundation
import
ObjectMapper
import
RealmSwift
public
struct
ListTransform
<
T
:
RealmSwift
.
Object
>
:
TransformType
where
T
:
BaseMappable
{
public
init
()
{
}
public
typealias
Object
=
List
<
T
>
public
typealias
JSON
=
Array
<
Any
>
public
func
transformFromJSON
(
_
value
:
Any
?)
->
List
<
T
>
?
{
if
let
objects
=
Mapper
<
T
>
()
.
mapArray
(
JSONObject
:
value
)
{
let
list
=
List
<
T
>
()
list
.
append
(
objectsIn
:
objects
)
return
list
}
return
nil
}
public
func
transformToJSON
(
_
value
:
Object
?)
->
JSON
?
{
return
value
?
.
flatMap
{
$0
.
toJSON
()
}
}
}
WhatsOpen/Pods/ObjectMapper+Realm/README.md
0 → 100644
View file @
a2027c99
# ObjectMapper+Realm
[

](http://cocoapods.org/pods/ObjectMapper+Realm)
[

](http://cocoapods.org/pods/ObjectMapper+Realm)
[

](https://travis-ci.org/Jakenberg/ObjectMapper-Realm)
[

](https://codecov.io/gh/Jakenberg/ObjectMapper-Realm)
[

](http://cocoapods.org/pods/ObjectMapper+Realm)
## Installation
ObjectMapper+Realm is available through
[
CocoaPods
](
http://cocoapods.org
)
. To install
it, simply add the following line to your Podfile:
```
ruby
pod
"ObjectMapper+Realm"
```
## Usage
To use
`ListTransform`
just add it to the mapping of your RealmObject:
```
swift
import
ObjectMapper
import
RealmSwift
import
ObjectMapper_Realm
class
User
:
Object
,
Mappable
{
dynamic
var
username
:
NSString
?
var
friends
:
List
<
User
>
?
required
convenience
init
?(
_
map
:
Map
)
{
self
.
init
()
}
override
class
func
primaryKey
()
->
String
?
{
return
"username"
}
func
mapping
(
map
:
Map
)
{
username
<-
map
[
"username"
]
friends
<-
(
map
[
"friends"
],
ListTransform
<
User
>
())
}
}
```
Have fun! 🎬
## Author
[
Jake Peterson
](
http://jakenberg.io
)
## License
ObjectMapper+Realm is available under the MIT license. See the LICENSE file for more info.
WhatsOpen/Pods/Pods.xcodeproj/project.pbxproj
View file @
a2027c99
This source diff could not be displayed because it is too large. You can
view the blob
instead.
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/Info.plist
0 → 100644
View file @
a2027c99
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
CFBundleDevelopmentRegion
</key>
<string>
en
</string>
<key>
CFBundleExecutable
</key>
<string>
${EXECUTABLE_NAME}
</string>
<key>
CFBundleIdentifier
</key>
<string>
${PRODUCT_BUNDLE_IDENTIFIER}
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<string>
${PRODUCT_NAME}
</string>
<key>
CFBundlePackageType
</key>
<string>
FMWK
</string>
<key>
CFBundleShortVersionString
</key>
<string>
0.5.0
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleVersion
</key>
<string>
${CURRENT_PROJECT_VERSION}
</string>
<key>
NSPrincipalClass
</key>
<string></string>
</dict>
</plist>
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/ObjectMapper+Realm-dummy.m
0 → 100644
View file @
a2027c99
#import <Foundation/Foundation.h>
@interface
PodsDummy_ObjectMapper_Realm
:
NSObject
@end
@implementation
PodsDummy_ObjectMapper_Realm
@end
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/ObjectMapper+Realm-prefix.pch
0 → 100644
View file @
a2027c99
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/ObjectMapper+Realm-umbrella.h
0 → 100644
View file @
a2027c99
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT
double
ObjectMapper_RealmVersionNumber
;
FOUNDATION_EXPORT
const
unsigned
char
ObjectMapper_RealmVersionString
[];
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/ObjectMapper+Realm.modulemap
0 → 100644
View file @
a2027c99
framework module ObjectMapper_Realm {
umbrella header "ObjectMapper+Realm-umbrella.h"
export *
module * { export * }
}
WhatsOpen/Pods/Target Support Files/ObjectMapper+Realm/ObjectMapper+Realm.xcconfig
0 → 100644
View file @
a2027c99
CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/ObjectMapper+Realm
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/ObjectMapper" "$PODS_CONFIGURATION_BUILD_DIR/Realm" "$PODS_CONFIGURATION_BUILD_DIR/RealmSwift"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Crashlytics" "${PODS_ROOT}/Headers/Public/Fabric"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/ObjectMapper+Realm
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
SKIP_INSTALL = YES
SWIFT_VERSION = 3.0
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Info.plist
0 → 100644
View file @
a2027c99
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
CFBundleDevelopmentRegion
</key>
<string>
en
</string>
<key>
CFBundleExecutable
</key>
<string>
${EXECUTABLE_NAME}
</string>
<key>
CFBundleIdentifier
</key>
<string>
${PRODUCT_BUNDLE_IDENTIFIER}
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<string>
${PRODUCT_NAME}
</string>
<key>
CFBundlePackageType
</key>
<string>
FMWK
</string>
<key>
CFBundleShortVersionString
</key>
<string>
1.0.0
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleVersion
</key>
<string>
${CURRENT_PROJECT_VERSION}
</string>
<key>
NSPrincipalClass
</key>
<string></string>
</dict>
</plist>
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-acknowledgements.markdown
0 → 100644
View file @
a2027c99
This diff is collapsed.
Click to expand it.
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-acknowledgements.plist
0 → 100644
View file @
a2027c99
This diff is collapsed.
Click to expand it.
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-dummy.m
0 → 100644
View file @
a2027c99
#import <Foundation/Foundation.h>
@interface
PodsDummy_Pods_WhatsOpen___AppStore
:
NSObject
@end
@implementation
PodsDummy_Pods_WhatsOpen___AppStore
@end
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-frameworks.sh
0 → 100755
View file @
a2027c99
#!/bin/sh
set
-e
echo
"mkdir -p
${
CONFIGURATION_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
mkdir
-p
"
${
CONFIGURATION_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
SWIFT_STDLIB_PATH
=
"
${
DT_TOOLCHAIN_DIR
}
/usr/lib/swift/
${
PLATFORM_NAME
}
"
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES
=(
--filter
"P .*.??????"
)
install_framework
()
{
if
[
-r
"
${
BUILT_PRODUCTS_DIR
}
/
$1
"
]
;
then
local source
=
"
${
BUILT_PRODUCTS_DIR
}
/
$1
"
elif
[
-r
"
${
BUILT_PRODUCTS_DIR
}
/
$(
basename
"
$1
"
)
"
]
;
then
local source
=
"
${
BUILT_PRODUCTS_DIR
}
/
$(
basename
"
$1
"
)
"
elif
[
-r
"
$1
"
]
;
then
local source
=
"
$1
"
fi
local
destination
=
"
${
TARGET_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
if
[
-L
"
${
source
}
"
]
;
then
echo
"Symlinked..."
source
=
"
$(
readlink
"
${
source
}
"
)
"
fi
# Use filter instead of exclude so missing patterns don't throw errors.
echo
"rsync --delete -av "
${
RSYNC_PROTECT_TMP_FILES
[@]
}
" --filter
\"
- CVS/
\"
--filter
\"
- .svn/
\"
--filter
\"
- .git/
\"
--filter
\"
- .hg/
\"
--filter
\"
- Headers
\"
--filter
\"
- PrivateHeaders
\"
--filter
\"
- Modules
\"
\"
${
source
}
\"
\"
${
destination
}
\"
"
rsync
--delete
-av
"
${
RSYNC_PROTECT_TMP_FILES
[@]
}
"
--filter
"- CVS/"
--filter
"- .svn/"
--filter
"- .git/"
--filter
"- .hg/"
--filter
"- Headers"
--filter
"- PrivateHeaders"
--filter
"- Modules"
"
${
source
}
"
"
${
destination
}
"
local basename
basename
=
"
$(
basename
-s
.framework
"
$1
"
)
"
binary
=
"
${
destination
}
/
${
basename
}
.framework/
${
basename
}
"
if
!
[
-r
"
$binary
"
]
;
then
binary
=
"
${
destination
}
/
${
basename
}
"
fi
# Strip invalid architectures so "fat" simulator / device frameworks work on device
if
[[
"
$(
file
"
$binary
"
)
"
==
*
"dynamically linked shared library"
*
]]
;
then
strip_invalid_archs
"
$binary
"
fi
# Resign the code if required by the build settings to avoid unstable apps
code_sign_if_enabled
"
${
destination
}
/
$(
basename
"
$1
"
)
"
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
if
[
"
${
XCODE_VERSION_MAJOR
}
"
-lt
7
]
;
then
local
swift_runtime_libs
swift_runtime_libs
=
$(
xcrun otool
-LX
"
$binary
"
|
grep
--color
=
never @rpath/libswift |
sed
-E
s/@rpath
\\
/
\(
.+dylib
\)
.
*
/
\\
1/g |
uniq
-u
&&
exit
${
PIPESTATUS
[0]
}
)
for
lib
in
$swift_runtime_libs
;
do
echo
"rsync -auv
\"
${
SWIFT_STDLIB_PATH
}
/
${
lib
}
\"
\"
${
destination
}
\"
"
rsync
-auv
"
${
SWIFT_STDLIB_PATH
}
/
${
lib
}
"
"
${
destination
}
"
code_sign_if_enabled
"
${
destination
}
/
${
lib
}
"
done
fi
}
# Copies the dSYM of a vendored framework
install_dsym
()
{
local source
=
"
$1
"
if
[
-r
"
$source
"
]
;
then
echo
"rsync --delete -av "
${
RSYNC_PROTECT_TMP_FILES
[@]
}
" --filter
\"
- CVS/
\"
--filter
\"
- .svn/
\"
--filter
\"
- .git/
\"
--filter
\"
- .hg/
\"
--filter
\"
- Headers
\"
--filter
\"
- PrivateHeaders
\"
--filter
\"
- Modules
\"
\"
${
source
}
\"
\"
${
DWARF_DSYM_FOLDER_PATH
}
\"
"
rsync
--delete
-av
"
${
RSYNC_PROTECT_TMP_FILES
[@]
}
"
--filter
"- CVS/"
--filter
"- .svn/"
--filter
"- .git/"
--filter
"- .hg/"
--filter
"- Headers"
--filter
"- PrivateHeaders"
--filter
"- Modules"
"
${
source
}
"
"
${
DWARF_DSYM_FOLDER_PATH
}
"
fi
}
# Signs a framework with the provided identity
code_sign_if_enabled
()
{
if
[
-n
"
${
EXPANDED_CODE_SIGN_IDENTITY
}
"
-a
"
${
CODE_SIGNING_REQUIRED
}
"
!=
"NO"
-a
"
${
CODE_SIGNING_ALLOWED
}
"
!=
"NO"
]
;
then
# Use the current code_sign_identitiy
echo
"Code Signing
$1
with Identity
${
EXPANDED_CODE_SIGN_IDENTITY_NAME
}
"
local
code_sign_cmd
=
"/usr/bin/codesign --force --sign
${
EXPANDED_CODE_SIGN_IDENTITY
}
${
OTHER_CODE_SIGN_FLAGS
}
--preserve-metadata=identifier,entitlements '
$1
'"
if
[
"
${
COCOAPODS_PARALLEL_CODE_SIGN
}
"
==
"true"
]
;
then
code_sign_cmd
=
"
$code_sign_cmd
&"
fi
echo
"
$code_sign_cmd
"
eval
"
$code_sign_cmd
"
fi
}
# Strip invalid architectures
strip_invalid_archs
()
{
binary
=
"
$1
"
# Get architectures for current file
archs
=
"
$(
lipo
-info
"
$binary
"
| rev |
cut
-d
':'
-f1
| rev
)
"
stripped
=
""
for
arch
in
$archs
;
do
if
!
[[
"
${
ARCHS
}
"
==
*
"
$arch
"
*
]]
;
then
# Strip non-valid architectures in-place
lipo
-remove
"
$arch
"
-output
"
$binary
"
"
$binary
"
||
exit
1
stripped
=
"
$stripped
$arch
"
fi
done
if
[[
"
$stripped
"
]]
;
then
echo
"Stripped
$binary
of architectures:
$stripped
"
fi
}
if
[[
"
$CONFIGURATION
"
==
"Debug"
]]
;
then
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/DeckTransition/DeckTransition.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper/ObjectMapper.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper+Realm/ObjectMapper_Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/Realm/Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/RealmSwift/RealmSwift.framework"
fi
if
[[
"
$CONFIGURATION
"
==
"Release"
]]
;
then
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/DeckTransition/DeckTransition.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper/ObjectMapper.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper+Realm/ObjectMapper_Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/Realm/Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/RealmSwift/RealmSwift.framework"
fi
if
[[
"
$CONFIGURATION
"
==
"App Store"
]]
;
then
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/DeckTransition/DeckTransition.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper/ObjectMapper.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/ObjectMapper+Realm/ObjectMapper_Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/Realm/Realm.framework"
install_framework
"
${
BUILT_PRODUCTS_DIR
}
/RealmSwift/RealmSwift.framework"
fi
if
[
"
${
COCOAPODS_PARALLEL_CODE_SIGN
}
"
==
"true"
]
;
then
wait
fi
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-resources.sh
0 → 100755
View file @
a2027c99
#!/bin/sh
set
-e
mkdir
-p
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
RESOURCES_TO_COPY
=
${
PODS_ROOT
}
/resources-to-copy-
${
TARGETNAME
}
.txt
>
"
$RESOURCES_TO_COPY
"
XCASSET_FILES
=()
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES
=(
--filter
"P .*.??????"
)
case
"
${
TARGETED_DEVICE_FAMILY
}
"
in
1,2
)
TARGET_DEVICE_ARGS
=
"--target-device ipad --target-device iphone"
;;
1
)
TARGET_DEVICE_ARGS
=
"--target-device iphone"
;;
2
)
TARGET_DEVICE_ARGS
=
"--target-device ipad"
;;
3
)
TARGET_DEVICE_ARGS
=
"--target-device tv"
;;
4
)
TARGET_DEVICE_ARGS
=
"--target-device watch"
;;
*
)
TARGET_DEVICE_ARGS
=
"--target-device mac"
;;
esac
install_resource
()
{
if
[[
"
$1
"
=
/
*
]]
;
then
RESOURCE_PATH
=
"
$1
"
else
RESOURCE_PATH
=
"
${
PODS_ROOT
}
/
$1
"
fi
if
[[
!
-e
"
$RESOURCE_PATH
"
]]
;
then
cat
<<
EOM
error: Resource "
$RESOURCE_PATH
" not found. Run 'pod install' to update the copy resources script.
EOM
exit
1
fi
case
$RESOURCE_PATH
in
*
.storyboard
)
echo
"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target
${
!DEPLOYMENT_TARGET_SETTING_NAME
}
--output-format human-readable-text --compile
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
\"
$RESOURCE_PATH
\"
.storyboard
`
.storyboardc
$RESOURCE_PATH
--sdk
${
SDKROOT
}
${
TARGET_DEVICE_ARGS
}
"
||
true
ibtool
--reference-external-strings-file
--errors
--warnings
--notices
--minimum-deployment-target
${
!DEPLOYMENT_TARGET_SETTING_NAME
}
--output-format
human-readable-text
--compile
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
\"
$RESOURCE_PATH
\"
.storyboard
`
.storyboardc"
"
$RESOURCE_PATH
"
--sdk
"
${
SDKROOT
}
"
${
TARGET_DEVICE_ARGS
}
;;
*
.xib
)
echo
"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target
${
!DEPLOYMENT_TARGET_SETTING_NAME
}
--output-format human-readable-text --compile
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
\"
$RESOURCE_PATH
\"
.xib
`
.nib
$RESOURCE_PATH
--sdk
${
SDKROOT
}
${
TARGET_DEVICE_ARGS
}
"
||
true
ibtool
--reference-external-strings-file
--errors
--warnings
--notices
--minimum-deployment-target
${
!DEPLOYMENT_TARGET_SETTING_NAME
}
--output-format
human-readable-text
--compile
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
\"
$RESOURCE_PATH
\"
.xib
`
.nib"
"
$RESOURCE_PATH
"
--sdk
"
${
SDKROOT
}
"
${
TARGET_DEVICE_ARGS
}
;;
*
.framework
)
echo
"mkdir -p
${
TARGET_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
||
true
mkdir
-p
"
${
TARGET_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
echo
"rsync --delete -av "
${
RSYNC_PROTECT_TMP_FILES
[@]
}
"
$RESOURCE_PATH
${
TARGET_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
||
true
rsync
--delete
-av
"
${
RSYNC_PROTECT_TMP_FILES
[@]
}
"
"
$RESOURCE_PATH
"
"
${
TARGET_BUILD_DIR
}
/
${
FRAMEWORKS_FOLDER_PATH
}
"
;;
*
.xcdatamodel
)
echo
"xcrun momc
\"
$RESOURCE_PATH
\"
\"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
`
.mom
\"
"
||
true
xcrun momc
"
$RESOURCE_PATH
"
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
.xcdatamodel
`
.mom"
;;
*
.xcdatamodeld
)
echo
"xcrun momc
\"
$RESOURCE_PATH
\"
\"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
.xcdatamodeld
`
.momd
\"
"
||
true
xcrun momc
"
$RESOURCE_PATH
"
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
.xcdatamodeld
`
.momd"
;;
*
.xcmappingmodel
)
echo
"xcrun mapc
\"
$RESOURCE_PATH
\"
\"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
.xcmappingmodel
`
.cdm
\"
"
||
true
xcrun mapc
"
$RESOURCE_PATH
"
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
/
`
basename
"
$RESOURCE_PATH
"
.xcmappingmodel
`
.cdm"
;;
*
.xcassets
)
ABSOLUTE_XCASSET_FILE
=
"
$RESOURCE_PATH
"
XCASSET_FILES+
=(
"
$ABSOLUTE_XCASSET_FILE
"
)
;;
*
)
echo
"
$RESOURCE_PATH
"
||
true
echo
"
$RESOURCE_PATH
"
>>
"
$RESOURCES_TO_COPY
"
;;
esac
}
mkdir
-p
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
rsync
-avr
--copy-links
--no-relative
--exclude
'*/.svn/*'
--files-from
=
"
$RESOURCES_TO_COPY
"
/
"
${
TARGET_BUILD_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
if
[[
"
${
ACTION
}
"
==
"install"
]]
&&
[[
"
${
SKIP_INSTALL
}
"
==
"NO"
]]
;
then
mkdir
-p
"
${
INSTALL_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
rsync
-avr
--copy-links
--no-relative
--exclude
'*/.svn/*'
--files-from
=
"
$RESOURCES_TO_COPY
"
/
"
${
INSTALL_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
fi
rm
-f
"
$RESOURCES_TO_COPY
"
if
[[
-n
"
${
WRAPPER_EXTENSION
}
"
]]
&&
[
"
`
xcrun
--find
actool
`
"
]
&&
[
-n
"
$XCASSET_FILES
"
]
then
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
OTHER_XCASSETS
=
$(
find
"
$PWD
"
-iname
"*.xcassets"
-type
d
)
while
read
line
;
do
if
[[
$line
!=
"
${
PODS_ROOT
}
*"
]]
;
then
XCASSET_FILES+
=(
"
$line
"
)
fi
done
<<<
"
$OTHER_XCASSETS
"
printf
"%s
\0
"
"
${
XCASSET_FILES
[@]
}
"
| xargs
-0
xcrun actool
--output-format
human-readable-text
--notices
--warnings
--platform
"
${
PLATFORM_NAME
}
"
--minimum-deployment-target
"
${
!DEPLOYMENT_TARGET_SETTING_NAME
}
"
${
TARGET_DEVICE_ARGS
}
--compress-pngs
--compile
"
${
BUILT_PRODUCTS_DIR
}
/
${
UNLOCALIZED_RESOURCES_FOLDER_PATH
}
"
fi
WhatsOpen/Pods/Target Support Files/Pods-WhatsOpen - AppStore/Pods-WhatsOpen - AppStore-umbrella.h
0 → 100644
View file @
a2027c99
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern