├── .gitattributes ├── .github └── pull_request_template.md ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── CachedResponseHandler.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift ├── AppDevAnalytics │ ├── AppDevAnalytics │ │ └── Classes │ │ │ ├── Analytics.swift │ │ │ └── EventPayload.swift │ ├── LICENSE │ └── README.md ├── AppDevAnnouncements │ ├── AppDevAnnouncements │ │ ├── Classes │ │ │ ├── Announcement.swift │ │ │ ├── AnnouncementNetworking.swift │ │ │ ├── NotificationView.swift │ │ │ ├── NotificationViewController.swift │ │ │ └── Utils.swift │ │ └── Resources │ │ │ └── Images.xcassets │ │ │ └── closeIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── closeIcon.png │ │ │ ├── closeIcon@2x.png │ │ │ └── closeIcon@3x.png │ ├── LICENSE │ └── README.md ├── Crashlytics │ ├── Crashlytics.framework │ │ ├── README │ │ └── submit │ ├── README.md │ ├── iOS │ │ └── Crashlytics.framework │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ ├── ANSCompatibility.h │ │ │ ├── Answers.h │ │ │ ├── CLSAttributes.h │ │ │ ├── CLSLogging.h │ │ │ ├── CLSReport.h │ │ │ ├── CLSStackFrame.h │ │ │ └── Crashlytics.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ ├── submit │ │ │ └── upload-symbols │ └── submit ├── Fabric │ ├── Fabric.framework │ │ ├── README │ │ └── run │ ├── README.md │ ├── iOS │ │ └── Fabric.framework │ │ │ ├── Fabric │ │ │ ├── Headers │ │ │ ├── FABAttributes.h │ │ │ └── Fabric.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ └── upload-symbols │ ├── run │ └── upload-symbols ├── Firebase │ ├── Core │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIRAnalyticsConfiguration.h │ │ ├── FIRApp.h │ │ ├── FIRConfiguration.h │ │ ├── FIREventNames.h │ │ ├── FIROptions.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseCore │ └── Frameworks │ │ └── FirebaseCore.framework │ │ ├── FirebaseCore │ │ ├── Headers │ │ ├── FIRAnalyticsConfiguration.h │ │ ├── FIRApp.h │ │ ├── FIRConfiguration.h │ │ ├── FIRLoggerLevel.h │ │ ├── FIROptions.h │ │ └── FirebaseCore.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseInstanceID │ ├── CHANGELOG.md │ ├── Frameworks │ │ └── FirebaseInstanceID.framework │ │ │ ├── FirebaseInstanceID │ │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md ├── FutureNova │ ├── FutureNova │ │ └── Classes │ │ │ ├── Endpoint.swift │ │ │ └── Future.swift │ ├── LICENSE │ └── README.md ├── GoogleToolboxForMac │ ├── Foundation │ │ ├── GTMNSData+zlib.h │ │ └── GTMNSData+zlib.m │ ├── GTMDefines.h │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── IGListDiffKit │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ └── IGListDiffKit │ │ ├── IGListAssert.h │ │ ├── IGListBatchUpdateData.h │ │ ├── IGListBatchUpdateData.mm │ │ ├── IGListCompatibility.h │ │ ├── IGListDiff.h │ │ ├── IGListDiff.mm │ │ ├── IGListDiffKit.h │ │ ├── IGListDiffable.h │ │ ├── IGListExperiments.h │ │ ├── IGListIndexPathResult.h │ │ ├── IGListIndexPathResult.m │ │ ├── IGListIndexSetResult.h │ │ ├── IGListIndexSetResult.m │ │ ├── IGListMacros.h │ │ ├── IGListMoveIndex.h │ │ ├── IGListMoveIndex.m │ │ ├── IGListMoveIndexPath.h │ │ ├── IGListMoveIndexPath.m │ │ ├── Internal │ │ ├── IGListIndexPathResultInternal.h │ │ ├── IGListIndexSetResultInternal.h │ │ ├── IGListMoveIndexInternal.h │ │ └── IGListMoveIndexPathInternal.h │ │ ├── NSNumber+IGListDiffable.h │ │ ├── NSNumber+IGListDiffable.m │ │ ├── NSString+IGListDiffable.h │ │ └── NSString+IGListDiffable.m ├── IGListKit │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ ├── IGListDiffKit │ │ └── Internal │ │ │ ├── IGListIndexPathResultInternal.h │ │ │ ├── IGListIndexSetResultInternal.h │ │ │ ├── IGListMoveIndexInternal.h │ │ │ └── IGListMoveIndexPathInternal.h │ │ └── IGListKit │ │ ├── IGListAdapter.h │ │ ├── IGListAdapter.m │ │ ├── IGListAdapterDataSource.h │ │ ├── IGListAdapterDelegate.h │ │ ├── IGListAdapterMoveDelegate.h │ │ ├── IGListAdapterPerformanceDelegate.h │ │ ├── IGListAdapterUpdateListener.h │ │ ├── IGListAdapterUpdater.h │ │ ├── IGListAdapterUpdater.m │ │ ├── IGListAdapterUpdaterDelegate.h │ │ ├── IGListBatchContext.h │ │ ├── IGListBindable.h │ │ ├── IGListBindingSectionController.h │ │ ├── IGListBindingSectionController.m │ │ ├── IGListBindingSectionControllerDataSource.h │ │ ├── IGListBindingSectionControllerSelectionDelegate.h │ │ ├── IGListCollectionContext.h │ │ ├── IGListCollectionScrollingTraits.h │ │ ├── IGListCollectionView.h │ │ ├── IGListCollectionView.m │ │ ├── IGListCollectionViewDelegateLayout.h │ │ ├── IGListCollectionViewLayout.h │ │ ├── IGListCollectionViewLayout.mm │ │ ├── IGListCollectionViewLayoutCompatible.h │ │ ├── IGListDisplayDelegate.h │ │ ├── IGListGenericSectionController.h │ │ ├── IGListGenericSectionController.m │ │ ├── IGListKit.h │ │ ├── IGListReloadDataUpdater.h │ │ ├── IGListReloadDataUpdater.m │ │ ├── IGListScrollDelegate.h │ │ ├── IGListSectionController.h │ │ ├── IGListSectionController.m │ │ ├── IGListSingleSectionController.h │ │ ├── IGListSingleSectionController.m │ │ ├── IGListSupplementaryViewSource.h │ │ ├── IGListTransitionDelegate.h │ │ ├── IGListUpdatingDelegate.h │ │ ├── IGListWorkingRangeDelegate.h │ │ └── Internal │ │ ├── IGListAdapter+DebugDescription.h │ │ ├── IGListAdapter+DebugDescription.m │ │ ├── IGListAdapter+UICollectionView.h │ │ ├── IGListAdapter+UICollectionView.m │ │ ├── IGListAdapterInternal.h │ │ ├── IGListAdapterProxy.h │ │ ├── IGListAdapterProxy.m │ │ ├── IGListAdapterUpdater+DebugDescription.h │ │ ├── IGListAdapterUpdater+DebugDescription.m │ │ ├── IGListAdapterUpdaterInternal.h │ │ ├── IGListArrayUtilsInternal.h │ │ ├── IGListBatchUpdateData+DebugDescription.h │ │ ├── IGListBatchUpdateData+DebugDescription.m │ │ ├── IGListBatchUpdateState.h │ │ ├── IGListBatchUpdates.h │ │ ├── IGListBatchUpdates.m │ │ ├── IGListBindingSectionController+DebugDescription.h │ │ ├── IGListBindingSectionController+DebugDescription.m │ │ ├── IGListCollectionViewLayoutInternal.h │ │ ├── IGListDebugger.h │ │ ├── IGListDebugger.m │ │ ├── IGListDebuggingUtilities.h │ │ ├── IGListDebuggingUtilities.m │ │ ├── IGListDisplayHandler.h │ │ ├── IGListDisplayHandler.m │ │ ├── IGListReloadIndexPath.h │ │ ├── IGListReloadIndexPath.m │ │ ├── IGListSectionControllerInternal.h │ │ ├── IGListSectionMap+DebugDescription.h │ │ ├── IGListSectionMap+DebugDescription.m │ │ ├── IGListSectionMap.h │ │ ├── IGListSectionMap.m │ │ ├── IGListWorkingRangeHandler.h │ │ ├── IGListWorkingRangeHandler.mm │ │ ├── UICollectionView+DebugDescription.h │ │ ├── UICollectionView+DebugDescription.m │ │ ├── UICollectionView+IGListBatchUpdateData.h │ │ ├── UICollectionView+IGListBatchUpdateData.m │ │ ├── UICollectionViewLayout+InteractiveReordering.h │ │ ├── UICollectionViewLayout+InteractiveReordering.m │ │ ├── UIScrollView+IGListKit.h │ │ └── UIScrollView+IGListKit.m ├── Local Podspecs │ ├── AppDevAnalytics.podspec.json │ ├── AppDevAnnouncements.podspec.json │ └── FutureNova.podspec.json ├── Manifest.lock ├── MarqueeLabel │ ├── LICENSE │ ├── README.mdown │ └── Sources │ │ └── MarqueeLabel.swift ├── NotificationBannerSwift │ ├── LICENSE │ ├── NotificationBanner │ │ └── Classes │ │ │ ├── BannerAnimation.swift │ │ │ ├── BannerColors.swift │ │ │ ├── BannerHapticGenerator.swift │ │ │ ├── BannerPositionFrame.swift │ │ │ ├── BannerStyle.swift │ │ │ ├── BaseNotificationBanner.swift │ │ │ ├── FloatingNotificationBanner.swift │ │ │ ├── GrowingNotificationBanner.swift │ │ │ ├── NotificationBanner.swift │ │ │ ├── NotificationBannerQueue.swift │ │ │ ├── NotificationBannerUtilities.swift │ │ │ ├── StatusBarNotificationBanner.swift │ │ │ ├── String+heightForConstrainedWidth.swift │ │ │ └── UIWindow+orientation.swift │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Presentr │ ├── LICENSE │ ├── Presentr │ │ ├── AlertViewController.swift │ │ ├── AlertViewController.xib │ │ ├── BackgroundView.swift │ │ ├── CoverFromCornerAnimation.swift │ │ ├── CoverHorizontalAnimation.swift │ │ ├── CoverVerticalAnimation.swift │ │ ├── CoverVerticalFromTopAnimation.swift │ │ ├── CrossDissolveAnimation.swift │ │ ├── FlipHorizontalAnimation.swift │ │ ├── KeyboardTranslation.swift │ │ ├── ModalCenterPosition.swift │ │ ├── ModalSize.swift │ │ ├── Montserrat-Regular.ttf │ │ ├── PresentationType.swift │ │ ├── Presentr+Equatable.swift │ │ ├── Presentr.swift │ │ ├── PresentrAnimation.swift │ │ ├── PresentrController.swift │ │ ├── PresentrShadow.swift │ │ ├── SourceSansPro-Regular.ttf │ │ └── TransitionType.swift │ └── README.md ├── ReachabilitySwift │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── Reachability.swift ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintDirectionalInsetTarget.swift │ │ ├── ConstraintDirectionalInsets.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── Socket.IO-Client-Swift │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SocketIO │ │ ├── Ack │ │ ├── SocketAckEmitter.swift │ │ └── SocketAckManager.swift │ │ ├── Client │ │ ├── SocketAnyEvent.swift │ │ ├── SocketEventHandler.swift │ │ ├── SocketIOClient.swift │ │ ├── SocketIOClientConfiguration.swift │ │ ├── SocketIOClientOption.swift │ │ ├── SocketIOClientSpec.swift │ │ ├── SocketIOStatus.swift │ │ └── SocketRawView.swift │ │ ├── Engine │ │ ├── SocketEngine.swift │ │ ├── SocketEngineClient.swift │ │ ├── SocketEnginePacketType.swift │ │ ├── SocketEnginePollable.swift │ │ ├── SocketEngineSpec.swift │ │ └── SocketEngineWebsocket.swift │ │ ├── Manager │ │ ├── SocketManager.swift │ │ └── SocketManagerSpec.swift │ │ ├── Parse │ │ ├── SocketPacket.swift │ │ └── SocketParsable.swift │ │ └── Util │ │ ├── SSLSecurity.swift │ │ ├── SocketExtensions.swift │ │ ├── SocketLogger.swift │ │ ├── SocketStringReader.swift │ │ └── SocketTypes.swift ├── Starscream │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── Starscream │ │ ├── Compression.swift │ │ ├── SSLClientCertificate.swift │ │ ├── SSLSecurity.swift │ │ └── WebSocket.swift ├── SwiftLint │ ├── LICENSE │ └── swiftlint ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON │ │ └── SwiftyJSON.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.debug.xcconfig │ ├── Alamofire.modulemap │ ├── Alamofire.release.xcconfig │ └── Alamofire.xcconfig │ ├── AppDevAnalytics │ ├── AppDevAnalytics-Info.plist │ ├── AppDevAnalytics-dummy.m │ ├── AppDevAnalytics-prefix.pch │ ├── AppDevAnalytics-umbrella.h │ ├── AppDevAnalytics.debug.xcconfig │ ├── AppDevAnalytics.modulemap │ ├── AppDevAnalytics.release.xcconfig │ └── AppDevAnalytics.xcconfig │ ├── AppDevAnnouncements │ ├── AppDevAnnouncements-Info.plist │ ├── AppDevAnnouncements-dummy.m │ ├── AppDevAnnouncements-prefix.pch │ ├── AppDevAnnouncements-umbrella.h │ ├── AppDevAnnouncements.debug.xcconfig │ ├── AppDevAnnouncements.modulemap │ ├── AppDevAnnouncements.release.xcconfig │ └── AppDevAnnouncements.xcconfig │ ├── Crashlytics │ ├── Crashlytics.debug.xcconfig │ ├── Crashlytics.release.xcconfig │ └── Crashlytics.xcconfig │ ├── Fabric │ ├── Fabric.debug.xcconfig │ ├── Fabric.release.xcconfig │ └── Fabric.xcconfig │ ├── Firebase │ ├── Firebase.debug.xcconfig │ ├── Firebase.release.xcconfig │ └── Firebase.xcconfig │ ├── FirebaseAnalytics │ ├── FirebaseAnalytics.debug.xcconfig │ ├── FirebaseAnalytics.release.xcconfig │ └── FirebaseAnalytics.xcconfig │ ├── FirebaseCore │ ├── FirebaseCore.debug.xcconfig │ ├── FirebaseCore.release.xcconfig │ └── FirebaseCore.xcconfig │ ├── FirebaseInstanceID │ ├── FirebaseInstanceID.debug.xcconfig │ ├── FirebaseInstanceID.release.xcconfig │ └── FirebaseInstanceID.xcconfig │ ├── FutureNova │ ├── FutureNova-Info.plist │ ├── FutureNova-dummy.m │ ├── FutureNova-prefix.pch │ ├── FutureNova-umbrella.h │ ├── FutureNova.debug.xcconfig │ ├── FutureNova.modulemap │ ├── FutureNova.release.xcconfig │ └── FutureNova.xcconfig │ ├── GoogleToolboxForMac │ ├── GoogleToolboxForMac-Info.plist │ ├── GoogleToolboxForMac-dummy.m │ ├── GoogleToolboxForMac-prefix.pch │ ├── GoogleToolboxForMac-umbrella.h │ ├── GoogleToolboxForMac.debug.xcconfig │ ├── GoogleToolboxForMac.modulemap │ ├── GoogleToolboxForMac.release.xcconfig │ └── GoogleToolboxForMac.xcconfig │ ├── IGListDiffKit │ ├── IGListDiffKit-Info.plist │ ├── IGListDiffKit-dummy.m │ ├── IGListDiffKit-prefix.pch │ ├── IGListDiffKit-umbrella.h │ ├── IGListDiffKit.debug.xcconfig │ ├── IGListDiffKit.modulemap │ ├── IGListDiffKit.release.xcconfig │ └── IGListDiffKit.xcconfig │ ├── IGListKit │ ├── IGListKit-Info.plist │ ├── IGListKit-dummy.m │ ├── IGListKit-prefix.pch │ ├── IGListKit-umbrella.h │ ├── IGListKit.debug.xcconfig │ ├── IGListKit.modulemap │ ├── IGListKit.release.xcconfig │ └── IGListKit.xcconfig │ ├── MarqueeLabel │ ├── MarqueeLabel-Info.plist │ ├── MarqueeLabel-dummy.m │ ├── MarqueeLabel-prefix.pch │ ├── MarqueeLabel-umbrella.h │ ├── MarqueeLabel.debug.xcconfig │ ├── MarqueeLabel.modulemap │ ├── MarqueeLabel.release.xcconfig │ └── MarqueeLabel.xcconfig │ ├── NotificationBannerSwift │ ├── NotificationBannerSwift-Info.plist │ ├── NotificationBannerSwift-dummy.m │ ├── NotificationBannerSwift-prefix.pch │ ├── NotificationBannerSwift-umbrella.h │ ├── NotificationBannerSwift.debug.xcconfig │ ├── NotificationBannerSwift.modulemap │ ├── NotificationBannerSwift.release.xcconfig │ └── NotificationBannerSwift.xcconfig │ ├── Pods-Pollo │ ├── Pods-Pollo-Info.plist │ ├── Pods-Pollo-acknowledgements.markdown │ ├── Pods-Pollo-acknowledgements.plist │ ├── Pods-Pollo-dummy.m │ ├── Pods-Pollo-frameworks.sh │ ├── Pods-Pollo-resources.sh │ ├── Pods-Pollo-umbrella.h │ ├── Pods-Pollo.debug dev server.xcconfig │ ├── Pods-Pollo.debug local server.xcconfig │ ├── Pods-Pollo.debug.xcconfig │ ├── Pods-Pollo.modulemap │ └── Pods-Pollo.release.xcconfig │ ├── Presentr │ ├── Presentr-Info.plist │ ├── Presentr-dummy.m │ ├── Presentr-prefix.pch │ ├── Presentr-umbrella.h │ ├── Presentr.debug.xcconfig │ ├── Presentr.modulemap │ ├── Presentr.release.xcconfig │ └── Presentr.xcconfig │ ├── ReachabilitySwift │ ├── ReachabilitySwift-Info.plist │ ├── ReachabilitySwift-dummy.m │ ├── ReachabilitySwift-prefix.pch │ ├── ReachabilitySwift-umbrella.h │ ├── ReachabilitySwift.debug.xcconfig │ ├── ReachabilitySwift.modulemap │ ├── ReachabilitySwift.release.xcconfig │ └── ReachabilitySwift.xcconfig │ ├── SnapKit │ ├── SnapKit-Info.plist │ ├── SnapKit-dummy.m │ ├── SnapKit-prefix.pch │ ├── SnapKit-umbrella.h │ ├── SnapKit.debug.xcconfig │ ├── SnapKit.modulemap │ ├── SnapKit.release.xcconfig │ └── SnapKit.xcconfig │ ├── Socket.IO-Client-Swift │ ├── Socket.IO-Client-Swift-Info.plist │ ├── Socket.IO-Client-Swift-dummy.m │ ├── Socket.IO-Client-Swift-prefix.pch │ ├── Socket.IO-Client-Swift-umbrella.h │ ├── Socket.IO-Client-Swift.debug.xcconfig │ ├── Socket.IO-Client-Swift.modulemap │ ├── Socket.IO-Client-Swift.release.xcconfig │ └── Socket.IO-Client-Swift.xcconfig │ ├── Starscream │ ├── Starscream-Info.plist │ ├── Starscream-dummy.m │ ├── Starscream-prefix.pch │ ├── Starscream-umbrella.h │ ├── Starscream.debug.xcconfig │ ├── Starscream.modulemap │ ├── Starscream.release.xcconfig │ └── Starscream.xcconfig │ ├── SwiftLint │ ├── SwiftLint.debug.xcconfig │ ├── SwiftLint.release.xcconfig │ └── SwiftLint.xcconfig │ └── SwiftyJSON │ ├── SwiftyJSON-Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.debug.xcconfig │ ├── SwiftyJSON.modulemap │ ├── SwiftyJSON.release.xcconfig │ └── SwiftyJSON.xcconfig ├── Pollo-Bridging-Header.h ├── Pollo.xcodeproj ├── .swiftlint.yml ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Pollo Dev Server.xcscheme │ ├── Pollo Local Server.xcscheme │ ├── Pollo.xcscheme │ └── PolloTests.xcscheme ├── Pollo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Pollo ├── AppDelegate.swift ├── Extensions │ ├── Date+Shared.swift │ ├── NotificationBanner+Shared.swift │ ├── String+Shared.swift │ ├── UIColor+Shared.swift │ ├── UIFont+Shared.swift │ ├── UINavigationController+Shared.swift │ ├── UITextField+Shared.swift │ ├── UIViewController+Shared.swift │ └── Utils.swift ├── Info.plist ├── Models │ ├── Answer.swift │ ├── ListDiffableModels │ │ ├── AskQuestionModel.swift │ │ ├── Draft.swift │ │ ├── DraftsTitleModel.swift │ │ ├── EmptyStateModel.swift │ │ ├── ExportAttendanceModel.swift │ │ ├── GroupControlsHeaderModel.swift │ │ ├── GroupControlsInfoModel.swift │ │ ├── HamburgerCardModel.swift │ │ ├── HeaderModel.swift │ │ ├── MCChoiceModel.swift │ │ ├── MCResultModel.swift │ │ ├── Poll.swift │ │ ├── PollBuilderMCOptionModel.swift │ │ ├── PollDateModel.swift │ │ ├── PollMiscellaneousModel.swift │ │ ├── PollOptionsModel.swift │ │ ├── PollTypeModel.swift │ │ ├── PollsDateAttendanceModel.swift │ │ ├── PollsDateModel.swift │ │ ├── PollsSettingModel.swift │ │ ├── QuestionModel.swift │ │ ├── SeparatorLineModel.swift │ │ ├── SettingsDataModel.swift │ │ ├── SpaceModel.swift │ │ └── ViewAllModel.swift │ ├── OptionModel.swift │ ├── Session.swift │ ├── Socket.swift │ ├── SocketDelegate.swift │ └── User.swift ├── Networking │ ├── DraftEndpoints.swift │ ├── PollEndpoints.swift │ ├── Response.swift │ ├── SessionEndpoints.swift │ └── UserEndpoints.swift ├── SectionControllers │ ├── CardSectionControllers │ │ ├── HamburgerCardSectionController.swift │ │ ├── PollMiscellaneousSectionController.swift │ │ ├── PollOptionsSectionController.swift │ │ └── QuestionSectionController.swift │ ├── Drafts │ │ ├── DraftSectionController.swift │ │ └── DraftsTitleSectionController.swift │ ├── EmptyStateSectionController.swift │ ├── GroupControlsSectionControllers │ │ ├── ExportAttendanceSectionController.swift │ │ ├── GroupControlsInfoSectionController.swift │ │ ├── HeaderSectionController.swift │ │ ├── PollSettingsSectionController.swift │ │ ├── PollsDateAttendanceSectionController.swift │ │ └── ViewAllSectionController.swift │ ├── PollBuilderMCOptionSectionController.swift │ ├── PollOptionsCellSectionControllers │ │ ├── AskQuestionSectionController.swift │ │ ├── MCChoiceSectionController.swift │ │ ├── MCResultSectionController.swift │ │ └── SpaceSectionController.swift │ ├── PollSectionController.swift │ ├── PollsDateSectionController.swift │ ├── PollsViewControllerSectionControllers │ │ ├── PollTypeSectionController.swift │ │ └── SessionSectionController.swift │ └── SettingsSectionControllers │ │ ├── SeparatorLineSectionController.swift │ │ └── SettingsSectionController.swift ├── Supporting │ ├── Analytics.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024@1x.png │ │ │ ├── AppIcon-20.png │ │ │ ├── AppIcon-20@2x-1.png │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-29@1x-1.png │ │ │ ├── AppIcon-29@1x.png │ │ │ ├── AppIcon-29@2x-1.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-40@1x.png │ │ │ ├── AppIcon-40@2x-1.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-50@1x.png │ │ │ ├── AppIcon-50@2x.png │ │ │ ├── AppIcon-57@1x.png │ │ │ ├── AppIcon-57@2x.png │ │ │ ├── AppIcon-60@2x.png │ │ │ ├── AppIcon-60@3x.png │ │ │ ├── AppIcon-72@1x.png │ │ │ ├── AppIcon-72@2x.png │ │ │ ├── AppIcon-76@1x.png │ │ │ ├── AppIcon-76@2x.png │ │ │ ├── AppIcon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── AppLogo.imageset │ │ │ ├── AppLogo.png │ │ │ ├── AppLogo@2x.png │ │ │ ├── AppLogo@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DropUpArrowIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── groupCopy 4.png │ │ │ ├── groupCopy.png │ │ │ ├── groupCopy@2x 4.png │ │ │ ├── groupCopy@2x.png │ │ │ ├── groupCopy@3x 4.png │ │ │ └── groupCopy@3x.png │ │ ├── DropdownArrowIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── group.png │ │ │ ├── group@2x.png │ │ │ └── group@3x.png │ │ ├── ExitIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── ExitIcon.png │ │ │ ├── ExitIcon@2x.png │ │ │ └── ExitIcon@3x.png │ │ ├── SmallExitIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── SmallExitIcon.png │ │ │ ├── SmallExitIcon@2x.png │ │ │ └── SmallExitIcon@3x.png │ │ ├── TrashIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── TrashIcon.png │ │ │ ├── TrashIcon@2x.png │ │ │ └── TrashIcon@3x.png │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ └── back.png │ │ ├── backArrow.imageset │ │ │ ├── Contents.json │ │ │ ├── backArrow.png │ │ │ ├── backArrow@2x.png │ │ │ └── backArrow@3x.png │ │ ├── blackBack.imageset │ │ │ ├── Contents.json │ │ │ └── blackBack.png │ │ ├── black_settings.imageset │ │ │ ├── Contents.json │ │ │ ├── bitmap.png │ │ │ ├── bitmap@2x.png │ │ │ └── black_settings.png │ │ ├── blueCheck.imageset │ │ │ ├── Contents.json │ │ │ └── blueCheck.png │ │ ├── cardShadow.imageset │ │ │ ├── Contents.json │ │ │ └── cardShadow.png │ │ ├── cornell_logo.imageset │ │ │ ├── Contents.json │ │ │ └── cornell_logo.png │ │ ├── correct.imageset │ │ │ ├── Contents.json │ │ │ ├── group32.png │ │ │ ├── group32@2x.png │ │ │ └── group32@3x.png │ │ ├── correctanswer.imageset │ │ │ ├── Contents.json │ │ │ ├── group8.png │ │ │ ├── group8@2x.png │ │ │ └── group8@3x.png │ │ ├── create_group.imageset │ │ │ ├── Contents.json │ │ │ └── Create Group.png │ │ ├── create_poll.imageset │ │ │ ├── Contents.json │ │ │ └── Great Poll.png │ │ ├── darkexit.imageset │ │ │ ├── Contents.json │ │ │ ├── group30.png │ │ │ ├── group30@2x.png │ │ │ └── group30@3x.png │ │ ├── delete.imageset │ │ │ ├── Contents.json │ │ │ └── delete.png │ │ ├── door.imageset │ │ │ ├── 18289772002.pdf │ │ │ └── Contents.json │ │ ├── dots.imageset │ │ │ ├── Contents.json │ │ │ └── dots.png │ │ ├── down arrow.imageset │ │ │ ├── Contents.json │ │ │ └── down arrow.png │ │ ├── editPoll.imageset │ │ │ ├── Contents.json │ │ │ └── editPoll.png │ │ ├── ellipsis.imageset │ │ │ ├── .. button.png │ │ │ └── Contents.json │ │ ├── emptyCircle.imageset │ │ │ ├── Contents.json │ │ │ └── emptyCircle.png │ │ ├── exit.imageset │ │ │ ├── Contents.json │ │ │ └── exit.png │ │ ├── forward_arrow.imageset │ │ │ ├── Contents.json │ │ │ └── forward_arrow.png │ │ ├── greyEmptyCircle.imageset │ │ │ ├── Contents.json │ │ │ ├── greyEmptyCircle.png │ │ │ ├── greyEmptyCircle@2x.png │ │ │ ├── greyEmptyCircle@3x.png │ │ │ ├── oval13Copy.png │ │ │ ├── oval13Copy@2x.png │ │ │ └── oval13Copy@3x.png │ │ ├── grey_settings.imageset │ │ │ ├── Contents.json │ │ │ └── settings.png │ │ ├── group8.imageset │ │ │ ├── Contents.json │ │ │ ├── group8.png │ │ │ ├── group8@2x.png │ │ │ └── group8@3x.png │ │ ├── groups.imageset │ │ │ ├── Contents.json │ │ │ └── groups.png │ │ ├── groups_selected.imageset │ │ │ ├── Contents.json │ │ │ └── groups_selected.png │ │ ├── incorrect.imageset │ │ │ ├── Contents.json │ │ │ ├── group33.png │ │ │ ├── group33@2x.png │ │ │ └── group33@3x.png │ │ ├── liveIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── liveIcon.png │ │ │ ├── liveIcon@2x.png │ │ │ └── liveIcon@3x.png │ │ ├── man_shrugging.imageset │ │ │ ├── Contents.json │ │ │ └── man_shrugging.png │ │ ├── monkey_emoji.imageset │ │ │ ├── Contents.json │ │ │ └── Monkey Emoji - Empty State.png │ │ ├── option_filled.imageset │ │ │ ├── Contents.json │ │ │ ├── option_filled.png │ │ │ ├── option_filled@2x.png │ │ │ └── option_filled@3x.png │ │ ├── person.imageset │ │ │ ├── Contents.json │ │ │ └── Number of people in poll.png │ │ ├── polls.imageset │ │ │ ├── Contents.json │ │ │ └── polls.png │ │ ├── polls_selected.imageset │ │ │ ├── Contents.json │ │ │ └── polls_selected.png │ │ ├── results_shared.imageset │ │ │ ├── Contents.json │ │ │ └── Results shared .png │ │ ├── save.imageset │ │ │ ├── Contents.json │ │ │ └── save.png │ │ ├── solo_eye.imageset │ │ │ ├── Contents.json │ │ │ └── Only you can see results.png │ │ ├── threedots.imageset │ │ │ ├── Contents.json │ │ │ ├── group14Copy.png │ │ │ ├── group14Copy@2x.png │ │ │ └── group14Copy@3x.png │ │ ├── upvote-green.imageset │ │ │ ├── Contents.json │ │ │ └── Triangle 2 (5).png │ │ ├── upvote-grey.imageset │ │ │ ├── Contents.json │ │ │ └── triangle.png │ │ ├── whiteCreatePoll.imageset │ │ │ ├── Contents.json │ │ │ └── whiteCreatePoll.png │ │ ├── whiteEmptyCircle.imageset │ │ │ ├── Contents.json │ │ │ ├── whiteEmptyCircle.png │ │ │ ├── whiteEmptyCircle@2x.png │ │ │ └── whiteEmptyCircle@3x.png │ │ ├── whiteExit.imageset │ │ │ ├── Contents.json │ │ │ └── whiteExit.png │ │ ├── woman_facepalming.imageset │ │ │ ├── Contents.json │ │ │ ├── womanFacepalming1F926200D2640Fe0F1.png │ │ │ ├── womanFacepalming1F926200D2640Fe0F1@2x.png │ │ │ └── womanFacepalming1F926200D2640Fe0F1@3x.png │ │ └── woman_shrugging.imageset │ │ │ ├── Contents.json │ │ │ └── woman_shrugging.png │ ├── BannerController.swift │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Constants.swift │ ├── EventPayload.swift │ ├── Keys.swift │ └── Ratings.swift ├── ViewControllers │ ├── AttendanceViewController.swift │ ├── CardController+Extension.swift │ ├── CardController.swift │ ├── CustomModalPresentationController.swift │ ├── DeletePollViewController.swift │ ├── EditDraftViewController.swift │ ├── EditNameViewController.swift │ ├── EditPollViewController.swift │ ├── FeedbackViewController.swift │ ├── GroupControlsViewController.swift │ ├── LoginViewController.swift │ ├── NoInternetViewController.swift │ ├── PollBuilderViewController+Extension.swift │ ├── PollBuilderViewController.swift │ ├── PollsDateViewController+Extension.swift │ ├── PollsDateViewController.swift │ ├── PollsViewController+Extension.swift │ ├── PollsViewController.swift │ ├── SettingsViewController.swift │ ├── TabBarController.swift │ └── WebViewController.swift └── Views │ ├── Cards │ ├── CardCell.swift │ ├── EmptyStateCell.swift │ ├── HamburgerCardCell.swift │ ├── MCChoiceCell.swift │ ├── MCResultCell.swift │ ├── NavigationTitleView.swift │ ├── NoResponsesCell.swift │ ├── PollMiscellaneousCell.swift │ ├── PollOptionsCell.swift │ ├── PollsDateCell.swift │ ├── QuestionCell.swift │ ├── SeparatorLineCell.swift │ └── SpaceCell.swift │ ├── Drafts │ ├── DraftCell.swift │ └── DraftsTitleCell.swift │ ├── GroupControls │ ├── ExportButtonCell.swift │ ├── GroupControlsInfoCell.swift │ ├── HeaderCell.swift │ ├── PollsDateAttendanceCell.swift │ ├── SettingCell.swift │ └── ViewAllCell.swift │ ├── HomeScreen │ ├── ActivityIndicatorView.swift │ └── Polls │ │ ├── PollPreviewCell.swift │ │ ├── PollsCell+Extension.swift │ │ └── PollsCell.swift │ ├── MultipleChoice │ ├── AddMoreOptionCell.swift │ ├── AnswerMCCell.swift │ └── CreateMCOptionCell.swift │ ├── OptionsGradientView.swift │ ├── OptionsView.swift │ ├── PollBuilder │ ├── AskQuestionCell.swift │ ├── MCPollBuilderView+Extension.swift │ ├── MCPollBuilderView.swift │ └── OnboardingView.swift │ ├── QuestionSectionCell.swift │ └── Settings │ ├── SettingsInfoCell.swift │ ├── SettingsLinkCell.swift │ └── SettingsLogOutButtonCell.swift ├── README.md ├── fastlane ├── Appfile └── Fastfile └── testflight_release_notes.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- 1 | excluded: # paths to ignore during linting. Takes precedence over `included`. 2 | - Pods 3 | - Secrets 4 | 5 | disabled_rules: 6 | - block_based_kvo 7 | - identifier_name 8 | - cyclomatic_complexity 9 | - function_body_length 10 | - file_length 11 | - type_body_length 12 | - force_cast 13 | - force_try 14 | - legacy_nsgeometry_functions 15 | - function_parameter_count 16 | - multiple_closures_with_trailing_closure 17 | - line_length 18 | - large_tuple 19 | - shorthand_operator 20 | - trailing_whitespace 21 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode10 2 | language: swift 3 | xcode_workspace: Pollo.xcworkspace 4 | xcode_scheme: PolloTests 5 | install: pod update 6 | script: 7 | - xcodebuild clean build -sdk iphonesimulator -workspace Pollo.xcworkspace -scheme PolloTests CODE_SIGNING_REQUIRED=NO > /dev/null 8 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | warn("Big PR, try to keep changes smaller if you can") if git.lines_of_code > 500 2 | 3 | xcode_summary.ignored_files = 'Pods/**' 4 | xcode_summary.inline_mode = true 5 | xcode_summary.report 'xcodebuild.json' 6 | 7 | swiftlint.config_file = '.swiftlint.yml' 8 | swiftlint.max_num_violations = 20 9 | swiftlint.lint_files fail_on_error: true 10 | swiftlint.lint_files inline_mode: true 11 | swiftlint.lint_files 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'danger' 4 | gem 'danger-swiftlint' 5 | gem 'xcpretty' 6 | gem 'xcpretty-json-formatter' 7 | gem 'danger-xcode_summary' 8 | gem 'fastlane' 9 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '11.0' 2 | 3 | # ignore all warnings from all pods 4 | inhibit_all_warnings! 5 | 6 | target 'Pollo' do 7 | use_frameworks! 8 | 9 | # Pods for Pollo 10 | pod 'Alamofire' 11 | pod 'AppDevAnalytics', :git => 'https://github.com/cuappdev/ios-analytics.git' 12 | pod 'AppDevAnnouncements', :git => 'https://github.com/cuappdev/appdev-announcements.git' 13 | pod 'Crashlytics' 14 | pod 'Fabric' 15 | pod 'Firebase/Analytics' 16 | pod 'FutureNova', :git => 'https://github.com/cuappdev/ios-networking.git' 17 | pod 'IGListKit' 18 | pod 'NotificationBannerSwift' 19 | pod 'Presentr' 20 | pod 'ReachabilitySwift' 21 | pod 'SnapKit' 22 | pod 'Socket.IO-Client-Swift' 23 | pod 'SwiftLint' 24 | pod 'SwiftyJSON' 25 | end 26 | -------------------------------------------------------------------------------- /Pods/AppDevAnalytics/AppDevAnalytics/Classes/Analytics.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Analytics.swift 3 | // AppDevAnalytics 4 | // 5 | // Created by Kevin Chan on 9/4/19. 6 | // Copyright © 2019 Kevin Chan. All rights reserved. 7 | // 8 | 9 | import Crashlytics 10 | 11 | class AppDevAnalytics { 12 | 13 | static let shared = AppDevAnalytics() 14 | 15 | private init() {} 16 | 17 | func log(_ payload: Payload) { 18 | #if !DEBUG 19 | let fabricEvent = payload.convertToFabric() 20 | Answers.logCustomEvent(withName: fabricEvent.name, customAttributes: fabricEvent.attributes) 21 | #endif 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Pods/AppDevAnalytics/README.md: -------------------------------------------------------------------------------- 1 | # AppDevAnalytics 2 | 3 | AppDevAnalytics is our cocoapod containing some base classes that is used to log events to Firebase across our iOS applications. 4 | -------------------------------------------------------------------------------- /Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "closeIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "closeIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "closeIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon.png -------------------------------------------------------------------------------- /Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon@2x.png -------------------------------------------------------------------------------- /Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/AppDevAnnouncements/AppDevAnnouncements/Resources/Images.xcassets/closeIcon.imageset/closeIcon@3x.png -------------------------------------------------------------------------------- /Pods/AppDevAnnouncements/README.md: -------------------------------------------------------------------------------- 1 | # AppDevAnnouncements 2 | 3 | AppDevAnnouncements is our cocoapod used to display announcements across our apps! 4 | -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/README: -------------------------------------------------------------------------------- 1 | We've now combined all our supported platforms into a single podspec. As a result, we moved our submit script to a new location for Cocoapods projects: ${PODS_ROOT}/Crashlytics/submit. To avoid breaking functionality that references the old location of the submit, we've placed this dummy script that calls to the correct location, while providing a helpful warning if it is invoked. This bridge for backwards compatibility will be removed in a future release, so please heed the warning! 2 | -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/submit: -------------------------------------------------------------------------------- 1 | if [[ -z $PODS_ROOT ]]; then 2 | echo "error: The submit binary delivered by cocoapods is in a new location, under '$"{"PODS_ROOT"}"/Crashlytics/submit'. This script was put in place for backwards compatibility, but it relies on PODS_ROOT, which does not have a value in your current setup. Please update the path to the submit binary to fix this issue." 3 | else 4 | echo "warning: The submit script is now located at '$"{"PODS_ROOT"}"/Crashlytics/submit'. To remove this warning, update your path to point to this new location." 5 | sh "${PODS_ROOT}/Crashlytics/submit" "$@" 6 | fi 7 | -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h: -------------------------------------------------------------------------------- 1 | // 2 | // ANSCompatibility.h 3 | // AnswersKit 4 | // 5 | // Copyright (c) 2015 Crashlytics, Inc. All rights reserved. 6 | // 7 | 8 | #pragma once 9 | 10 | #if !__has_feature(nullability) 11 | #define nonnull 12 | #define nullable 13 | #define _Nullable 14 | #define _Nonnull 15 | #endif 16 | 17 | #ifndef NS_ASSUME_NONNULL_BEGIN 18 | #define NS_ASSUME_NONNULL_BEGIN 19 | #endif 20 | 21 | #ifndef NS_ASSUME_NONNULL_END 22 | #define NS_ASSUME_NONNULL_END 23 | #endif 24 | 25 | #if __has_feature(objc_generics) 26 | #define ANS_GENERIC_NSARRAY(type) NSArray 27 | #define ANS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 28 | #else 29 | #define ANS_GENERIC_NSARRAY(type) NSArray 30 | #define ANS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 31 | #endif 32 | -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLSAttributes.h 3 | // Crashlytics 4 | // 5 | // Copyright (c) 2015 Crashlytics, Inc. All rights reserved. 6 | // 7 | 8 | #pragma once 9 | 10 | #define CLS_DEPRECATED(x) __attribute__ ((deprecated(x))) 11 | 12 | #if !__has_feature(nullability) 13 | #define nonnull 14 | #define nullable 15 | #define _Nullable 16 | #define _Nonnull 17 | #endif 18 | 19 | #ifndef NS_ASSUME_NONNULL_BEGIN 20 | #define NS_ASSUME_NONNULL_BEGIN 21 | #endif 22 | 23 | #ifndef NS_ASSUME_NONNULL_END 24 | #define NS_ASSUME_NONNULL_END 25 | #endif 26 | 27 | #if __has_feature(objc_generics) 28 | #define CLS_GENERIC_NSARRAY(type) NSArray 29 | #define CLS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 30 | #else 31 | #define CLS_GENERIC_NSARRAY(type) NSArray 32 | #define CLS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 33 | #endif 34 | -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Crashlytics/iOS/Crashlytics.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Crashlytics { 2 | header "Crashlytics.h" 3 | header "Answers.h" 4 | header "ANSCompatibility.h" 5 | header "CLSLogging.h" 6 | header "CLSReport.h" 7 | header "CLSStackFrame.h" 8 | header "CLSAttributes.h" 9 | 10 | export * 11 | 12 | link "z" 13 | link "c++" 14 | } 15 | -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Crashlytics/iOS/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Crashlytics/iOS/Crashlytics.framework/upload-symbols -------------------------------------------------------------------------------- /Pods/Crashlytics/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Crashlytics/submit -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/README: -------------------------------------------------------------------------------- 1 | We've now combined all our supported platforms into a single podspec. As a result, we moved our run script to a new location for Cocoapods projects: ${PODS_ROOT}/Fabric/run. To avoid breaking builds that reference the old location of the run script, we've placed this dummy script that calls to the correct location, while providing a helpful warning in Xcode if it is invoked. This bridge for backwards compatibility will be removed in a future release, so please heed the warning! 2 | -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/run: -------------------------------------------------------------------------------- 1 | if [[ -z $PODS_ROOT ]]; then 2 | echo "error: The run binary delivered by cocoapods is in a new location, under '$"{"PODS_ROOT"}"/Fabric/run'. This script was put in place for backwards compatibility, but it relies on PODS_ROOT, which does not have a value in your current setup. Please update the path to the run binary to fix this issue." 3 | else 4 | echo "warning: The run script is now located at '$"{"PODS_ROOT"}"/Fabric/run'. To remove this warning, update your Run Script Build Phase to point to this new location." 5 | sh "${PODS_ROOT}/Fabric/run" "$@" 6 | fi 7 | -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Fabric/iOS/Fabric.framework/Fabric -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Fabric/iOS/Fabric.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Fabric { 2 | umbrella header "Fabric.h" 3 | 4 | export * 5 | module * { export * } 6 | } -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Fabric/iOS/Fabric.framework/upload-symbols -------------------------------------------------------------------------------- /Pods/Fabric/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Fabric/upload-symbols -------------------------------------------------------------------------------- /Pods/Firebase/Core/Sources/module.modulemap: -------------------------------------------------------------------------------- 1 | module Firebase { 2 | export * 3 | header "Firebase.h" 4 | } -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- 1 | /// @file FIRUserPropertyNames.h 2 | /// 3 | /// Predefined user property names. 4 | /// 5 | /// A UserProperty is an attribute that describes the app-user. By supplying UserProperties, you can 6 | /// later analyze different behaviors of various segments of your userbase. You may supply up to 25 7 | /// unique UserProperties per app, and you can use the name and value of your choosing for each one. 8 | /// UserProperty names can be up to 24 characters long, may only contain alphanumeric characters and 9 | /// underscores ("_"), and must start with an alphabetic character. UserProperty values can be up to 10 | /// 36 characters long. The "firebase_" prefix is reserved and should not be used. 11 | 12 | /// The method used to sign in. For example, "google", "facebook" or "twitter". 13 | static NSString *const kFIRUserPropertySignUpMethod = @"sign_up_method"; 14 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- 1 | #import "FIRAnalyticsConfiguration.h" 2 | #import "FIRApp.h" 3 | #import "FIRConfiguration.h" 4 | #import "FIROptions.h" 5 | #import "FIRAnalytics+AppDelegate.h" 6 | #import "FIRAnalytics.h" 7 | #import "FIREventNames.h" 8 | #import "FIRParameterNames.h" 9 | #import "FIRUserPropertyNames.h" 10 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseAnalytics { 2 | umbrella header "FirebaseAnalytics.h" 3 | export * 4 | module * { export *} 5 | link "c++" 6 | link "sqlite3" 7 | link "z" 8 | link framework "UIKit" 9 | } -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/FirebaseCore.framework/FirebaseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/FirebaseCore -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h: -------------------------------------------------------------------------------- 1 | /** 2 | * The log levels used by internal logging. 3 | */ 4 | typedef NS_ENUM(NSInteger, FIRLoggerLevel) { 5 | FIRLoggerLevelError = 3 /*ASL_LEVEL_ERR*/, 6 | FIRLoggerLevelWarning = 4 /*ASL_LEVEL_WARNING*/, 7 | FIRLoggerLevelNotice = 5 /*ASL_LEVEL_NOTICE*/, 8 | FIRLoggerLevelInfo = 6 /*ASL_LEVEL_INFO*/, 9 | FIRLoggerLevelDebug = 7 /*ASL_LEVEL_DEBUG*/, 10 | FIRLoggerLevelMin = FIRLoggerLevelError, 11 | FIRLoggerLevelMax = FIRLoggerLevelDebug 12 | }; 13 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h: -------------------------------------------------------------------------------- 1 | #import "FIRAnalyticsConfiguration.h" 2 | #import "FIRApp.h" 3 | #import "FIRConfiguration.h" 4 | #import "FIRLoggerLevel.h" 5 | #import "FIROptions.h" 6 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCore { 2 | umbrella header "FirebaseCore.h" 3 | export * 4 | module * { export *} 5 | link "c++" 6 | link "z" 7 | } -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseInstanceID { 2 | umbrella header "FirebaseInstanceID.h" 3 | export * 4 | module * { export *} 5 | link "c++" 6 | link "z" 7 | } -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- 1 | # InstanceID SDK for iOS 2 | 3 | Instance ID provides a unique ID per instance of your apps and also provides a 4 | mechanism to authenticate and authorize actions, like sending messages via 5 | Firebase Cloud Messaging (FCM). 6 | 7 | 8 | Please visit [our developer 9 | site](https://developers.google.com/instance-id/) for integration instructions, 10 | documentation, support information, and terms of service. 11 | -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/README.md: -------------------------------------------------------------------------------- 1 | # GTM: Google Toolbox for Mac # 2 | 3 | **Project site**
4 | **Discussion group** 5 | 6 | # Google Toolbox for Mac # 7 | 8 | A collection of source from different Google projects that may be of use to 9 | developers working other iOS or OS X projects. 10 | 11 | If you find a problem/bug or want a new feature to be included in the Google 12 | Toolbox for Mac, please join the 13 | [discussion group](http://groups.google.com/group/google-toolbox-for-mac) 14 | or submit an 15 | [issue](https://github.com/google/google-toolbox-for-mac/issues). 16 | -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/IGListAssert.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #ifndef IGAssert 9 | #define IGAssert( condition, ... ) NSCAssert( (condition) , ##__VA_ARGS__) 10 | #endif // IGAssert 11 | 12 | #ifndef IGFailAssert 13 | #define IGFailAssert( ... ) IGAssert( (NO) , ##__VA_ARGS__) 14 | #endif // IGFailAssert 15 | 16 | #ifndef IGParameterAssert 17 | #define IGParameterAssert( condition ) IGAssert( (condition) , @"Invalid parameter not satisfying: %@", @#condition) 18 | #endif // IGParameterAssert 19 | 20 | #ifndef IGAssertMainThread 21 | #define IGAssertMainThread() IGAssert( ([NSThread isMainThread] == YES), @"Must be on the main thread") 22 | #endif // IGAssertMainThread 23 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/IGListCompatibility.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #if TARGET_OS_EMBEDDED || TARGET_OS_SIMULATOR 11 | #import 12 | #else 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/IGListMoveIndex.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | /** 13 | An object representing a move between indexes. 14 | */ 15 | NS_SWIFT_NAME(ListMoveIndex) 16 | @interface IGListMoveIndex : NSObject 17 | 18 | /** 19 | An index in the old collection. 20 | */ 21 | @property (nonatomic, assign, readonly) NSInteger from; 22 | 23 | /** 24 | An index in the new collection. 25 | */ 26 | @property (nonatomic, assign, readonly) NSInteger to; 27 | 28 | /** 29 | :nodoc: 30 | */ 31 | - (instancetype)init NS_UNAVAILABLE; 32 | 33 | /** 34 | :nodoc: 35 | */ 36 | + (instancetype)new NS_UNAVAILABLE; 37 | 38 | @end 39 | 40 | NS_ASSUME_NONNULL_END 41 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/IGListMoveIndexPath.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | /** 13 | An object representing a move between indexes. 14 | */ 15 | NS_SWIFT_NAME(ListMoveIndexPath) 16 | @interface IGListMoveIndexPath : NSObject 17 | 18 | /** 19 | An index path in the old collection. 20 | */ 21 | @property (nonatomic, strong, readonly) NSIndexPath *from; 22 | 23 | /** 24 | An index path in the new collection. 25 | */ 26 | @property (nonatomic, strong, readonly) NSIndexPath *to; 27 | 28 | /** 29 | :nodoc: 30 | */ 31 | - (instancetype)init NS_UNAVAILABLE; 32 | 33 | /** 34 | :nodoc: 35 | */ 36 | + (instancetype)new NS_UNAVAILABLE; 37 | 38 | @end 39 | 40 | NS_ASSUME_NONNULL_END 41 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/Internal/IGListMoveIndexInternal.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface IGListMoveIndex () 15 | 16 | - (instancetype)initWithFrom:(NSInteger)from to:(NSInteger)to NS_DESIGNATED_INITIALIZER; 17 | 18 | @end 19 | 20 | NS_ASSUME_NONNULL_END 21 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/Internal/IGListMoveIndexPathInternal.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface IGListMoveIndexPath () 13 | 14 | - (instancetype)initWithFrom:(NSIndexPath *)from to:(NSIndexPath *)to NS_DESIGNATED_INITIALIZER; 15 | 16 | @end 17 | 18 | NS_ASSUME_NONNULL_END 19 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/NSNumber+IGListDiffable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | /** 13 | This category provides default `IGListDiffable` conformance for `NSNumber`. 14 | */ 15 | @interface NSNumber (IGListDiffable) 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/NSNumber+IGListDiffable.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "NSNumber+IGListDiffable.h" 9 | 10 | @implementation NSNumber (IGListDiffable) 11 | 12 | - (id)diffIdentifier { 13 | return self; 14 | } 15 | 16 | - (BOOL)isEqualToDiffableObject:(id)object { 17 | return [self isEqual:object]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/NSString+IGListDiffable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | /** 13 | This category provides default `IGListDiffable` conformance for `NSString`. 14 | */ 15 | @interface NSString (IGListDiffable) 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/IGListDiffKit/Source/IGListDiffKit/NSString+IGListDiffable.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "NSString+IGListDiffable.h" 9 | 10 | @implementation NSString (IGListDiffable) 11 | 12 | - (id)diffIdentifier { 13 | return self; 14 | } 15 | 16 | - (BOOL)isEqualToDiffableObject:(id)object { 17 | return [self isEqual:object]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListDiffKit/Internal/IGListMoveIndexInternal.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface IGListMoveIndex () 15 | 16 | - (instancetype)initWithFrom:(NSInteger)from to:(NSInteger)to NS_DESIGNATED_INITIALIZER; 17 | 18 | @end 19 | 20 | NS_ASSUME_NONNULL_END 21 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListDiffKit/Internal/IGListMoveIndexPathInternal.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface IGListMoveIndexPath () 13 | 14 | - (instancetype)initWithFrom:(NSIndexPath *)from to:(NSIndexPath *)to NS_DESIGNATED_INITIALIZER; 15 | 16 | @end 17 | 18 | NS_ASSUME_NONNULL_END 19 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/IGListBindable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | /** 13 | A protocol for cells that configure themselves given a view model. 14 | */ 15 | NS_SWIFT_NAME(ListBindable) 16 | @protocol IGListBindable 17 | 18 | /** 19 | Tells the cell to configure itself with the given view model. 20 | 21 | @param viewModel The view model for the cell. 22 | 23 | @note The view model can change many times throughout the lifetime of a cell as the model values change and the cell 24 | is reused. Implementations should use only this method to do their configuration. 25 | */ 26 | - (void)bindViewModel:(id)viewModel; 27 | 28 | @end 29 | 30 | NS_ASSUME_NONNULL_END 31 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/IGListGenericSectionController.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "IGListGenericSectionController.h" 9 | 10 | @implementation IGListGenericSectionController 11 | 12 | - (void)didUpdateToObject:(id)object { 13 | _object = object; 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/IGListReloadDataUpdater.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | #import 12 | 13 | NS_ASSUME_NONNULL_BEGIN 14 | 15 | /** 16 | An `IGListReloadDataUpdater` is a concrete type that conforms to `IGListUpdatingDelegate`. 17 | It is an out-of-box updater for `IGListAdapter` objects to use. 18 | 19 | @note This updater performs simple, synchronous updates using `-[UICollectionView reloadData]`. 20 | */ 21 | IGLK_SUBCLASSING_RESTRICTED 22 | NS_SWIFT_NAME(ListReloadDataUpdater) 23 | @interface IGListReloadDataUpdater : NSObject 24 | 25 | @end 26 | 27 | NS_ASSUME_NONNULL_END 28 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListAdapter+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface IGListAdapter (DebugDescription) 11 | 12 | - (NSArray *)debugDescriptionLines; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListAdapter+UICollectionView.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | #import 12 | 13 | @interface IGListAdapter (UICollectionView) 14 | < 15 | UICollectionViewDataSource, 16 | IGListCollectionViewDelegateLayout 17 | > 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListAdapterUpdater+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface IGListAdapterUpdater (DebugDescription) 11 | 12 | - (NSArray *)debugDescriptionLines; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListBatchUpdateData+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface IGListBatchUpdateData (DebugDescription) 11 | 12 | - (NSArray *)debugDescriptionLines; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListBatchUpdateState.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | typedef NS_ENUM (NSInteger, IGListBatchUpdateState) { 11 | IGListBatchUpdateStateIdle, 12 | IGListBatchUpdateStateQueuedBatchUpdate, 13 | IGListBatchUpdateStateExecutingBatchUpdateBlock, 14 | IGListBatchUpdateStateExecutedBatchUpdateBlock, 15 | }; 16 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListBindingSectionController+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface IGListBindingSectionController (DebugDescription) 11 | 12 | - (NSArray *)debugDescriptionLines; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListCollectionViewLayoutInternal.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | static CGRect IGListRectIntegralScaled(CGRect rect) { 9 | CGFloat scale = [[UIScreen mainScreen] scale]; 10 | return CGRectMake(floorf(rect.origin.x * scale) / scale, 11 | floorf(rect.origin.y * scale) / scale, 12 | ceilf(rect.size.width * scale) / scale, 13 | ceilf(rect.size.height * scale) / scale); 14 | } 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListDebugger.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | @class IGListAdapter; 13 | 14 | IGLK_SUBCLASSING_RESTRICTED 15 | @interface IGListDebugger : NSObject 16 | 17 | + (void)trackAdapter:(IGListAdapter *)adapter; 18 | 19 | + (NSArray *)adapterDescriptions; 20 | 21 | + (void)clear; 22 | 23 | + (NSString *)dump; 24 | 25 | - (instancetype)init NS_UNAVAILABLE; 26 | + (instancetype)new NS_UNAVAILABLE; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListDebuggingUtilities.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @class IGListAdapter; 11 | 12 | extern NSString *IGListDebugBOOL(BOOL b); 13 | 14 | extern NSArray *IGListDebugIndentedLines(NSArray *lines); 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListDebuggingUtilities.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "IGListDebuggingUtilities.h" 9 | 10 | NSString *IGListDebugBOOL(BOOL b) { 11 | return b ? @"Yes" : @"No"; 12 | } 13 | 14 | NSArray *IGListDebugIndentedLines(NSArray *lines) { 15 | NSMutableArray *newLines = [NSMutableArray new]; 16 | for (NSString *line in lines) { 17 | [newLines addObject:[NSString stringWithFormat:@" %@", line]]; 18 | } 19 | return newLines; 20 | } 21 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListReloadIndexPath.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "IGListReloadIndexPath.h" 9 | 10 | @implementation IGListReloadIndexPath 11 | 12 | - (instancetype)initWithFromIndexPath:(NSIndexPath *)fromIndexPath 13 | toIndexPath:(NSIndexPath *)toIndexPath { 14 | if (self = [super init]) { 15 | _fromIndexPath = fromIndexPath; 16 | _toIndexPath = toIndexPath; 17 | } 18 | return self; 19 | } 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/IGListSectionMap+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "IGListSectionMap.h" 11 | 12 | @interface IGListSectionMap (DebugDescription) 13 | 14 | - (NSArray *)debugDescriptionLines; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/UICollectionView+DebugDescription.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface UICollectionView (DebugDescription) 11 | 12 | - (NSArray *)debugDescriptionLines; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/UICollectionView+IGListBatchUpdateData.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @class IGListBatchUpdateData; 11 | 12 | @interface UICollectionView (IGListBatchUpdateData) 13 | 14 | - (void)ig_applyBatchUpdateData:(IGListBatchUpdateData *)updateData; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/UICollectionViewLayout+InteractiveReordering.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface UICollectionViewLayout (InteractiveReordering) 15 | 16 | - (void)ig_hijackLayoutInteractiveReorderingMethodForAdapter:(IGListAdapter *)adapter; 17 | 18 | - (nullable NSIndexPath *)updatedTargetForInteractivelyMovingItem:(NSIndexPath *)previousIndexPath 19 | toIndexPath:(NSIndexPath *)originalTarget 20 | adapter:(IGListAdapter *)adapter; 21 | 22 | @end 23 | 24 | NS_ASSUME_NONNULL_END 25 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/UIScrollView+IGListKit.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface UIScrollView (IGListKit) 11 | 12 | - (UIEdgeInsets) ig_contentInset; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit/Internal/UIScrollView+IGListKit.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "UIScrollView+IGListKit.h" 9 | 10 | @implementation UIScrollView (IGListKit) 11 | 12 | - (UIEdgeInsets) ig_contentInset 13 | { 14 | if (@available(iOS 11.0, tvOS 11.0, *)) { 15 | return self.adjustedContentInset; 16 | } else { 17 | return self.contentInset; 18 | } 19 | } 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Pods/Local Podspecs/AppDevAnnouncements.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AppDevAnnouncements", 3 | "version": "0.0.1", 4 | "summary": "A short description of AppDevAnnouncements.", 5 | "description": "Custom Notification", 6 | "homepage": "http://EXAMPLE/AppDevAnnouncements", 7 | "license": "MIT", 8 | "authors": { 9 | "Cornell AppDev": "cornellappdev@gmail.com" 10 | }, 11 | "platforms": { 12 | "ios": "10.0" 13 | }, 14 | "source": { 15 | "git": "https://github.com/cuappdev/appdev-announcements.git", 16 | "tag": "0.0.1" 17 | }, 18 | "source_files": [ 19 | "AppDevAnnouncements/Classes/*.swift", 20 | "AppDevAnnouncements/Resources/*.xcassets" 21 | ], 22 | "resources": "AppDevAnnouncements/Resources/*.xcassets" 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Local Podspecs/FutureNova.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FutureNova", 3 | "version": "0.1.6", 4 | "summary": "A simple networking wrapper using Futures and Promises.", 5 | "description": "A simple networking wrapper using Futures and Promises.", 6 | "homepage": "https://github.com/cuappdev/ios-networking", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Cornell AppDev": "cornellappdev@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/cuappdev/ios-networking.git", 16 | "tag": "0.1.6" 17 | }, 18 | "platforms": { 19 | "ios": "11.0" 20 | }, 21 | "source_files": "FutureNova/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Pods/NotificationBannerSwift/NotificationBanner/Classes/BannerAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BannerAnimation.swift 3 | // NotificationBannerSwift 4 | // 5 | // Created by Dalton Hinterscher on 7/24/19. 6 | // 7 | 8 | public enum BannerAnimation { 9 | case natural 10 | case fadeIn 11 | } 12 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/BackgroundView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BackgroundView.swift 3 | // Pods 4 | // 5 | // Created by Daniel Lozano Valdés on 3/20/17. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | class PassthroughView: UIView { 12 | 13 | var shouldPassthrough = true 14 | 15 | var passthroughViews: [UIView] = [] 16 | 17 | override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? { 18 | var view = super.hitTest(point, with: event) 19 | 20 | if view == self && shouldPassthrough { 21 | for passthroughView in passthroughViews { 22 | view = passthroughView.hitTest(convert(point, to: passthroughView), with: event) 23 | if view != nil { 24 | break 25 | } 26 | } 27 | } 28 | 29 | return view 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/CoverHorizontalAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CoverHorizontalAnimation.swift 3 | // Presentr 4 | // 5 | // Created by Daniel Lozano on 5/15/16. 6 | // Copyright © 2016 danielozano. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public class CoverHorizontalAnimation: PresentrAnimation { 12 | 13 | private var fromRight: Bool 14 | 15 | public init(fromRight: Bool = true) { 16 | self.fromRight = fromRight 17 | } 18 | 19 | override public func transform(containerFrame: CGRect, finalFrame: CGRect) -> CGRect { 20 | var initialFrame = finalFrame 21 | if fromRight { 22 | initialFrame.origin.x = containerFrame.size.width + initialFrame.size.width 23 | } else { 24 | initialFrame.origin.x = 0 - initialFrame.size.width 25 | } 26 | return initialFrame 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/CoverVerticalAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CoverVerticalAnimation.swift 3 | // Pods 4 | // 5 | // Created by Daniel Lozano Valdés on 3/21/17. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | public class CoverVerticalAnimation: PresentrAnimation { 12 | 13 | override public func transform(containerFrame: CGRect, finalFrame: CGRect) -> CGRect { 14 | var initialFrame = finalFrame 15 | initialFrame.origin.y = containerFrame.height + initialFrame.height 16 | return initialFrame 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/CoverVerticalFromTopAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CoverVerticalFromTopAnimation.swift 3 | // Presentr 4 | // 5 | // Created by Daniel Lozano on 5/14/16. 6 | // Copyright © 2016 danielozano. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public class CoverVerticalFromTopAnimation: PresentrAnimation { 12 | 13 | override public func transform(containerFrame: CGRect, finalFrame: CGRect) -> CGRect { 14 | var initialFrame = finalFrame 15 | initialFrame.origin.y = 0 - initialFrame.size.height 16 | return initialFrame 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/CrossDissolveAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CrossDissolveAnimation.swift 3 | // Pods 4 | // 5 | // Created by Daniel Lozano Valdés on 3/21/17. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | public class CrossDissolveAnimation: PresentrAnimation { 12 | 13 | override public func beforeAnimation(using transitionContext: PresentrTransitionContext) { 14 | transitionContext.animatingView?.alpha = transitionContext.isPresenting ? 0.0 : 1.0 15 | } 16 | 17 | override public func performAnimation(using transitionContext: PresentrTransitionContext) { 18 | transitionContext.animatingView?.alpha = transitionContext.isPresenting ? 1.0 : 0.0 19 | } 20 | 21 | override public func afterAnimation(using transitionContext: PresentrTransitionContext) { 22 | transitionContext.animatingView?.alpha = 1.0 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Presentr/Presentr/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/PresentrShadow.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PresentrShadow.swift 3 | // Pods 4 | // 5 | // Created by Daniel Lozano Valdés on 3/21/17. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | /// Helper struct that represents the shadow properties 12 | public struct PresentrShadow { 13 | 14 | public let shadowColor: UIColor? 15 | 16 | public let shadowOpacity: Float? 17 | 18 | public let shadowOffset: CGSize? 19 | 20 | public let shadowRadius: CGFloat? 21 | 22 | public init(shadowColor: UIColor?, shadowOpacity: Float?, shadowOffset: CGSize?, shadowRadius: CGFloat?) { 23 | self.shadowColor = shadowColor 24 | self.shadowOpacity = shadowOpacity 25 | self.shadowOffset = shadowOffset 26 | self.shadowRadius = shadowRadius 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Pods/Presentr/Presentr/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/Presentr/Presentr/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Alamofire : NSObject 3 | @end 4 | @implementation PodsDummy_Alamofire 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-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 AlamofireVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Alamofire 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | framework module Alamofire { 2 | umbrella header "Alamofire-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Alamofire 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Alamofire 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevAnalytics : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevAnalytics 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics-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 AppDevAnalyticsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AppDevAnalyticsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/AppDevAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics.modulemap: -------------------------------------------------------------------------------- 1 | framework module AppDevAnalytics { 2 | umbrella header "AppDevAnalytics-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/AppDevAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnalytics/AppDevAnalytics.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/AppDevAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevAnnouncements : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevAnnouncements 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements-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 AppDevAnnouncementsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AppDevAnnouncementsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnnouncements 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppDevAnnouncements 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements.modulemap: -------------------------------------------------------------------------------- 1 | framework module AppDevAnnouncements { 2 | umbrella header "AppDevAnnouncements-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnnouncements 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppDevAnnouncements 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AppDevAnnouncements/AppDevAnnouncements.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AppDevAnnouncements 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AppDevAnnouncements 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Crashlytics/Crashlytics.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Crashlytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" 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}/Crashlytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Crashlytics/Crashlytics.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Crashlytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" 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}/Crashlytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Crashlytics/Crashlytics.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Crashlytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" 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}/Crashlytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Fabric/Fabric.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Fabric 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 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}/Fabric 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Fabric/Fabric.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Fabric 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 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}/Fabric 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Fabric/Fabric.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Fabric 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Fabric/iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 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}/Fabric 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"sqlite3" -l"z" -framework "StoreKit" -framework "SystemConfiguration" 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}/FirebaseAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"sqlite3" -l"z" -framework "StoreKit" -framework "SystemConfiguration" 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}/FirebaseAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" -l"sqlite3" -l"z" -framework "StoreKit" -framework "SystemConfiguration" 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}/FirebaseAnalytics 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseCore 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseCore 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseCore 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseInstanceID 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseInstanceID 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_ROOT}/FirebaseCore/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "SystemConfiguration" 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}/FirebaseInstanceID 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FutureNova : NSObject 3 | @end 4 | @implementation PodsDummy_FutureNova 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova-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 FutureNovaVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char FutureNovaVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FutureNova 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FutureNova 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova.modulemap: -------------------------------------------------------------------------------- 1 | framework module FutureNova { 2 | umbrella header "FutureNova-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FutureNova 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FutureNova 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FutureNova/FutureNova.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FutureNova 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FutureNova 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleToolboxForMac : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleToolboxForMac 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-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 | #import "GTMDefines.h" 14 | #import "GTMNSData+zlib.h" 15 | 16 | FOUNDATION_EXPORT double GoogleToolboxForMacVersionNumber; 17 | FOUNDATION_EXPORT const unsigned char GoogleToolboxForMacVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -l"z" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleToolboxForMac 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleToolboxForMac { 2 | umbrella header "GoogleToolboxForMac-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -l"z" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleToolboxForMac 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -l"z" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleToolboxForMac 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_IGListDiffKit : NSObject 3 | @end 4 | @implementation PodsDummy_IGListDiffKit 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit-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 | #import "IGListAssert.h" 14 | #import "IGListBatchUpdateData.h" 15 | #import "IGListCompatibility.h" 16 | #import "IGListDiff.h" 17 | #import "IGListDiffable.h" 18 | #import "IGListDiffKit.h" 19 | #import "IGListExperiments.h" 20 | #import "IGListIndexPathResult.h" 21 | #import "IGListIndexSetResult.h" 22 | #import "IGListMacros.h" 23 | #import "IGListMoveIndex.h" 24 | #import "IGListMoveIndexPath.h" 25 | #import "NSNumber+IGListDiffable.h" 26 | #import "NSString+IGListDiffable.h" 27 | 28 | FOUNDATION_EXPORT double IGListDiffKitVersionNumber; 29 | FOUNDATION_EXPORT const unsigned char IGListDiffKitVersionString[]; 30 | 31 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListDiffKit 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module IGListDiffKit { 2 | umbrella header "IGListDiffKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListDiffKit 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListDiffKit/IGListDiffKit.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListDiffKit 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_IGListKit : NSObject 3 | @end 4 | @implementation PodsDummy_IGListKit 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListKit 4 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit" 5 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 6 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListKit 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module IGListKit { 2 | umbrella header "IGListKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListKit 4 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit" 5 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 6 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListKit 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/IGListKit.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++11 2 | CLANG_CXX_LIBRARY = libc++ 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IGListKit 4 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IGListDiffKit" 5 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 6 | OTHER_LDFLAGS = $(inherited) -l"c++" -framework "UIKit" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/IGListKit 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MarqueeLabel : NSObject 3 | @end 4 | @implementation PodsDummy_MarqueeLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-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 MarqueeLabelVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char MarqueeLabelVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "QuartzCore" -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/MarqueeLabel 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module MarqueeLabel { 2 | umbrella header "MarqueeLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "QuartzCore" -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/MarqueeLabel 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "QuartzCore" -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/MarqueeLabel 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_NotificationBannerSwift : NSObject 3 | @end 4 | @implementation PodsDummy_NotificationBannerSwift 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift-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 NotificationBannerSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char NotificationBannerSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/NotificationBannerSwift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/NotificationBannerSwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module NotificationBannerSwift { 2 | umbrella header "NotificationBannerSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/NotificationBannerSwift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/NotificationBannerSwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/NotificationBannerSwift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/NotificationBannerSwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Pollo/Pods-Pollo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Pollo : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Pollo 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Pollo/Pods-Pollo-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_PolloVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_PolloVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Pollo/Pods-Pollo.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Pollo { 2 | umbrella header "Pods-Pollo-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Presentr : NSObject 3 | @end 4 | @implementation PodsDummy_Presentr 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr-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 PresentrVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char PresentrVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Presentr 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Presentr 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr.modulemap: -------------------------------------------------------------------------------- 1 | framework module Presentr { 2 | umbrella header "Presentr-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Presentr 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Presentr 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Presentr/Presentr.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Presentr 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Presentr 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ReachabilitySwift : NSObject 3 | @end 4 | @implementation PodsDummy_ReachabilitySwift 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-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 ReachabilityVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ReachabilityVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ReachabilitySwift 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "SystemConfiguration" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/ReachabilitySwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module Reachability { 2 | umbrella header "ReachabilitySwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ReachabilitySwift 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "SystemConfiguration" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/ReachabilitySwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ReachabilitySwift 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CoreTelephony" -framework "SystemConfiguration" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/ReachabilitySwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SnapKit : NSObject 3 | @end 4 | @implementation PodsDummy_SnapKit 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-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 SnapKitVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SnapKitVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SnapKit 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SnapKit 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module SnapKit { 2 | umbrella header "SnapKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SnapKit 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SnapKit 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SnapKit 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SnapKit 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Socket_IO_Client_Swift : NSObject 3 | @end 4 | @implementation PodsDummy_Socket_IO_Client_Swift 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-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 SocketIOVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SocketIOVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Socket.IO-Client-Swift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Starscream" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Socket.IO-Client-Swift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | SWIFT_VERSION = 5.0 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift.modulemap: -------------------------------------------------------------------------------- 1 | framework module SocketIO { 2 | umbrella header "Socket.IO-Client-Swift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Socket.IO-Client-Swift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Starscream" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Socket.IO-Client-Swift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | SWIFT_VERSION = 5.0 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Socket.IO-Client-Swift 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Starscream" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 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}/Socket.IO-Client-Swift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | SWIFT_VERSION = 5.0 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Starscream : NSObject 3 | @end 4 | @implementation PodsDummy_Starscream 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-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 StarscreamVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char StarscreamVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Starscream 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Starscream 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.modulemap: -------------------------------------------------------------------------------- 1 | framework module Starscream { 2 | umbrella header "Starscream-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Starscream 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Starscream 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Starscream 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Starscream 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftyJSON : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftyJSON 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-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 SwiftyJSONVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SwiftyJSONVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftyJSON 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftyJSON { 2 | umbrella header "SwiftyJSON-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftyJSON 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -suppress-warnings 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftyJSON 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pollo-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Pollo-Bridging-Header.h 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 8/26/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | -------------------------------------------------------------------------------- /Pollo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Pollo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Pollo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Pollo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Pollo/Extensions/UINavigationController+Shared.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+Extension.swift 3 | // Pollo 4 | // 5 | // Created by eoin on 10/14/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UINavigationController { 12 | public override var childForStatusBarStyle: UIViewController? { 13 | return visibleViewController 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Pollo/Extensions/UITextField+Shared.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UITextField+Shared.swift 3 | // Pollo 4 | // 5 | // Created by Mindy Lou on 4/28/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | 12 | extension UITextField { 13 | 14 | func updateTextToDisplayProfanity(for words: [String], in text: String) { 15 | let nsString = text as NSString 16 | let attributedString = NSMutableAttributedString(string: text) 17 | words.forEach { 18 | let range = nsString.range(of: $0) 19 | attributedString.addAttribute(.foregroundColor, value: UIColor.clickerRed, range: range) 20 | } 21 | attributedText = attributedString 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Pollo/Models/Answer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Answer.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 10/14/17. 6 | // Copyright © 2017 CornellAppDev. All rights reserved. 7 | // 8 | 9 | class Answer { 10 | 11 | var choice: String 12 | var id: String? 13 | var pollId: String 14 | var text: String 15 | 16 | init(text: String, choice: String, pollId: String) { 17 | self.choice = choice 18 | self.pollId = pollId 19 | self.text = text 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/AskQuestionModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AskQuestionModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 12/6/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import IGListKit 10 | 11 | class AskQuestionModel: ListDiffable { 12 | 13 | let identifier = UUID().uuidString 14 | var currentQuestion: String? 15 | 16 | init(currentQuestion: String?) { 17 | self.currentQuestion = currentQuestion 18 | } 19 | 20 | func diffIdentifier() -> NSObjectProtocol { 21 | return identifier as NSString 22 | } 23 | 24 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 25 | if self === object { return true } 26 | guard let object = object as? AskQuestionModel else { return false } 27 | return identifier == object.identifier 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/DraftsTitleModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DraftsTitleModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 12/6/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import IGListKit 11 | 12 | class DraftsTitleModel { 13 | 14 | let identifier = UUID().uuidString 15 | var numDrafts: Int 16 | 17 | init(numDrafts: Int) { 18 | self.numDrafts = numDrafts 19 | } 20 | 21 | } 22 | 23 | extension DraftsTitleModel: ListDiffable { 24 | 25 | func diffIdentifier() -> NSObjectProtocol { 26 | return identifier as NSString 27 | } 28 | 29 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 30 | if self === object { return true } 31 | guard let object = object as? DraftsTitleModel else { return false } 32 | return identifier == object.identifier 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/ExportAttendanceModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ExportAttendanceModel.swift 3 | // Pollo 4 | // 5 | // Created by Mindy Lou on 3/9/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import IGListKit 10 | 11 | class ExportAttendanceModel { 12 | 13 | let identifier = UUID().uuidString 14 | var isExportable: Bool 15 | 16 | init(isExportable: Bool) { 17 | self.isExportable = isExportable 18 | } 19 | 20 | } 21 | 22 | extension ExportAttendanceModel: ListDiffable { 23 | 24 | func diffIdentifier() -> NSObjectProtocol { 25 | return identifier as NSString 26 | } 27 | 28 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 29 | if self === object { return true } 30 | guard let object = object as? HeaderModel else { return false } 31 | return identifier == object.identifier 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/GroupControlsHeaderModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GroupControlsHeaderModel.swift 3 | // Pollo 4 | // 5 | // Created by Mathew Scullin on 3/11/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import IGListKit 11 | 12 | class GroupControlsHeaderModel { 13 | 14 | let identifier = UUID().uuidString 15 | var header: String 16 | 17 | init(header: String) { 18 | self.header = header 19 | } 20 | 21 | } 22 | 23 | extension GroupControlsHeaderModel: ListDiffable { 24 | 25 | func diffIdentifier() -> NSObjectProtocol { 26 | return identifier as NSString 27 | } 28 | 29 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 30 | if self === object { return true } 31 | guard let object = object as? HeaderModel else { return false } 32 | return identifier == object.identifier 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/HeaderModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HeaderModel.swift 3 | // Pollo 4 | // 5 | // Created by Mindy Lou on 3/8/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import IGListKit 10 | 11 | /// Represents a header title (ex. "Attendance", "Live Questions"). 12 | class HeaderModel { 13 | 14 | let identifier = UUID().uuidString 15 | var title: String 16 | 17 | init(title: String) { 18 | self.title = title 19 | } 20 | } 21 | 22 | extension HeaderModel: ListDiffable { 23 | 24 | func diffIdentifier() -> NSObjectProtocol { 25 | return identifier as NSString 26 | } 27 | 28 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 29 | if self === object { return true } 30 | guard let object = object as? HeaderModel else { return false } 31 | return identifier == object.identifier 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/QuestionModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 8/31/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import IGListKit 10 | 11 | class QuestionModel { 12 | 13 | let identifier = UUID().uuidString 14 | var question: String 15 | 16 | init(question: String) { 17 | self.question = question 18 | } 19 | 20 | } 21 | 22 | extension QuestionModel: ListDiffable { 23 | 24 | func diffIdentifier() -> NSObjectProtocol { 25 | return identifier as NSString 26 | } 27 | 28 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 29 | if self === object { return true } 30 | guard let object = object as? QuestionModel else { return false } 31 | return identifier == object.identifier 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/SeparatorLineModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SeparatorLineModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 9/6/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import IGListKit 10 | 11 | enum SeparatorLineState { 12 | case card, settings 13 | } 14 | 15 | class SeparatorLineModel: ListDiffable { 16 | 17 | let identifier = UUID().uuidString 18 | var state: SeparatorLineState 19 | 20 | init(state: SeparatorLineState) { 21 | self.state = state 22 | } 23 | 24 | func diffIdentifier() -> NSObjectProtocol { 25 | return identifier as NSString 26 | } 27 | 28 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 29 | if self === object { return true } 30 | guard let object = object as? SeparatorLineModel else { return false } 31 | return identifier == object.identifier 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Pollo/Models/ListDiffableModels/ViewAllModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SpaceModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 11/7/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import IGListKit 11 | 12 | class ViewAllModel: ListDiffable { 13 | 14 | let identifier = UUID().uuidString 15 | 16 | func diffIdentifier() -> NSObjectProtocol { 17 | return identifier as NSString 18 | } 19 | 20 | func isEqual(toDiffableObject object: ListDiffable?) -> Bool { 21 | if self === object { return true } 22 | guard let object = object as? ViewAllModel else { return false } 23 | return identifier == object.identifier 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /Pollo/Models/OptionModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // OptionModel.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 9/9/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class OptionModel { 12 | 13 | var option: String 14 | 15 | init(option: String) { 16 | self.option = option 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Pollo/Networking/PollEndpoints.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PolloEndpoints.swift 3 | // Pollo 4 | // 5 | // Created by Matthew Coufal on 1/30/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import FutureNova 11 | 12 | extension Endpoint { 13 | 14 | // More often than not the bearer token is the accessToken, but refreshToken is required for refreshing the session 15 | static func headers(_ bearerToken: String = User.userSession?.accessToken ?? "") -> [String: String] { 16 | return ["Authorization": "Bearer \(bearerToken)"] 17 | } 18 | 19 | static func getSortedPolls(with id: String) -> Endpoint { 20 | return Endpoint(path: "/sessions/\(id)/polls", headers: headers()) 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Pollo/Networking/Response.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Response.swift 3 | // Pollo 4 | // 5 | // Created by Mindy Lou on 4/25/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import FutureNova 11 | 12 | extension Endpoint { 13 | static var apiVersion: Int? { return 2 } 14 | } 15 | 16 | struct Response: Codable { 17 | 18 | var success: Bool 19 | var data: T 20 | 21 | } 22 | 23 | struct DeleteResponse: Codable { 24 | var success: Bool 25 | } 26 | -------------------------------------------------------------------------------- /Pollo/Networking/UserEndpoints.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserEndpoints.swift 3 | // Pollo 4 | // 5 | // Created by Matthew Coufal on 2/3/19. 6 | // Copyright © 2019 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import FutureNova 11 | 12 | extension Endpoint { 13 | 14 | static func getSSOUrl(provider: String) -> Endpoint { 15 | return Endpoint(path: "/auth/saml/\(provider)/") 16 | } 17 | 18 | static func getMe() -> Endpoint { 19 | return Endpoint(path: "/users", headers: headers()) 20 | } 21 | 22 | static func userRefreshSession(with bearerToken: String) -> Endpoint { 23 | return Endpoint(path: "/auth/refresh", headers: headers(bearerToken), method: .post) 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-1024@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x-1.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@1x-1.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-50@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-50@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-57@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-57@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-72@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-72@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-76@1x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/AppLogo.imageset/AppLogo@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/AppLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AppLogo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "AppLogo@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "AppLogo@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "scale" : "1x", 5 | "idiom" : "universal", 6 | "filename" : "groupCopy.png" 7 | }, 8 | { 9 | "scale" : "2x", 10 | "idiom" : "universal", 11 | "filename" : "groupCopy@2x.png" 12 | }, 13 | { 14 | "scale" : "3x", 15 | "idiom" : "universal", 16 | "filename" : "groupCopy@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy 4.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@2x 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@2x 4.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@3x 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@3x 4.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropUpArrowIcon.imageset/groupCopy@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/DropdownArrowIcon.imageset/group@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ExitIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ExitIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ExitIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/ExitIcon.imageset/ExitIcon@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "SmallExitIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "SmallExitIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "SmallExitIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/SmallExitIcon.imageset/SmallExitIcon@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "TrashIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "TrashIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "TrashIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/TrashIcon.imageset/TrashIcon@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "back.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/backArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "backArrow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "backArrow@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "backArrow@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/backArrow.imageset/backArrow@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/blackBack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "blackBack.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/blackBack.imageset/blackBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/blackBack.imageset/blackBack.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/black_settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bitmap.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bitmap@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "black_settings.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/black_settings.imageset/bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/black_settings.imageset/bitmap.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/black_settings.imageset/bitmap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/black_settings.imageset/bitmap@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/black_settings.imageset/black_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/black_settings.imageset/black_settings.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/blueCheck.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "blueCheck.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/blueCheck.imageset/blueCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/blueCheck.imageset/blueCheck.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/cardShadow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cardShadow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/cardShadow.imageset/cardShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/cardShadow.imageset/cardShadow.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/cornell_logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cornell_logo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/cornell_logo.imageset/cornell_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/cornell_logo.imageset/cornell_logo.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correct.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group32.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group32@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group32@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correct.imageset/group32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correct.imageset/group32.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correct.imageset/group32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correct.imageset/group32@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correct.imageset/group32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correct.imageset/group32@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correctanswer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group8.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group8@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group8@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/correctanswer.imageset/group8@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/create_group.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Create Group.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/create_group.imageset/Create Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/create_group.imageset/Create Group.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/create_poll.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Great Poll.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/create_poll.imageset/Great Poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/create_poll.imageset/Great Poll.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/darkexit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group30.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group30@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group30@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/darkexit.imageset/group30@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "delete.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/delete.imageset/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/delete.imageset/delete.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/door.imageset/18289772002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/door.imageset/18289772002.pdf -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/door.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "18289772002.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/dots.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dots.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/dots.imageset/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/dots.imageset/dots.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/down arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "down arrow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/down arrow.imageset/down arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/down arrow.imageset/down arrow.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/editPoll.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "editPoll.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/editPoll.imageset/editPoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/editPoll.imageset/editPoll.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ellipsis.imageset/.. button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/ellipsis.imageset/.. button.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/ellipsis.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : ".. button.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/emptyCircle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emptyCircle.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/emptyCircle.imageset/emptyCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/emptyCircle.imageset/emptyCircle.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/exit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "exit.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/exit.imageset/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/exit.imageset/exit.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/forward_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "forward_arrow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/forward_arrow.imageset/forward_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/forward_arrow.imageset/forward_arrow.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "oval13Copy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "oval13Copy@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "oval13Copy@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | }, 18 | { 19 | "idiom" : "universal", 20 | "filename" : "greyEmptyCircle.png", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "universal", 25 | "filename" : "greyEmptyCircle@2x.png", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "universal", 30 | "filename" : "greyEmptyCircle@3x.png", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/greyEmptyCircle@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/greyEmptyCircle.imageset/oval13Copy@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/grey_settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "settings.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/grey_settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/grey_settings.imageset/settings.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/group8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group8.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group8@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group8@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/group8.imageset/group8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/group8.imageset/group8.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/group8.imageset/group8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/group8.imageset/group8@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/group8.imageset/group8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/group8.imageset/group8@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/groups.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "groups.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/groups.imageset/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/groups.imageset/groups.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/groups_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "groups_selected.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/groups_selected.imageset/groups_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/groups_selected.imageset/groups_selected.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/incorrect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group33.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group33@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group33@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/incorrect.imageset/group33@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/liveIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "liveIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "liveIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "liveIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/liveIcon.imageset/liveIcon@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/man_shrugging.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "man_shrugging.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/man_shrugging.imageset/man_shrugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/man_shrugging.imageset/man_shrugging.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/monkey_emoji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Monkey Emoji - Empty State.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/monkey_emoji.imageset/Monkey Emoji - Empty State.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/monkey_emoji.imageset/Monkey Emoji - Empty State.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/option_filled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "option_filled.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "option_filled@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "option_filled@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/option_filled.imageset/option_filled@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/person.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Number of people in poll.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/person.imageset/Number of people in poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/person.imageset/Number of people in poll.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/polls.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "polls.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/polls.imageset/polls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/polls.imageset/polls.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/polls_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "polls_selected.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/polls_selected.imageset/polls_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/polls_selected.imageset/polls_selected.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/results_shared.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Results shared .png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/results_shared.imageset/Results shared .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/results_shared.imageset/Results shared .png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/save.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "save.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/save.imageset/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/save.imageset/save.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/solo_eye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Only you can see results.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/solo_eye.imageset/Only you can see results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/solo_eye.imageset/Only you can see results.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/threedots.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "group14Copy.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "group14Copy@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "group14Copy@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/threedots.imageset/group14Copy@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/upvote-green.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Triangle 2 (5).png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/upvote-green.imageset/Triangle 2 (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/upvote-green.imageset/Triangle 2 (5).png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/upvote-grey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "triangle.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/upvote-grey.imageset/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/upvote-grey.imageset/triangle.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteCreatePoll.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "whiteCreatePoll.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteCreatePoll.imageset/whiteCreatePoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/whiteCreatePoll.imageset/whiteCreatePoll.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "whiteEmptyCircle.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "whiteEmptyCircle@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "whiteEmptyCircle@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/whiteEmptyCircle.imageset/whiteEmptyCircle@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteExit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "whiteExit.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/whiteExit.imageset/whiteExit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/whiteExit.imageset/whiteExit.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "scale" : "1x", 5 | "idiom" : "universal", 6 | "filename" : "womanFacepalming1F926200D2640Fe0F1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "womanFacepalming1F926200D2640Fe0F1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "womanFacepalming1F926200D2640Fe0F1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1@2x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/woman_facepalming.imageset/womanFacepalming1F926200D2640Fe0F1@3x.png -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_shrugging.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "woman_shrugging.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pollo/Supporting/Assets.xcassets/woman_shrugging.imageset/woman_shrugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuappdev/pollo-ios/a5bdd884ab93113d877f96e6743e966ff257accb/Pollo/Supporting/Assets.xcassets/woman_shrugging.imageset/woman_shrugging.png -------------------------------------------------------------------------------- /Pollo/Views/QuestionSectionCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionSectionCell.swift 3 | // Pollo 4 | // 5 | // Created by Kevin Chan on 3/16/18. 6 | // Copyright © 2018 CornellAppDev. All rights reserved. 7 | // 8 | 9 | import SnapKit 10 | import UIKit 11 | 12 | class QuestionSectionCell: UICollectionViewCell, UITextFieldDelegate { 13 | 14 | // MARK: - INITIALIZATION 15 | override init(frame: CGRect) { 16 | super.init(frame: frame) 17 | backgroundColor = .clickerGrey4 18 | } 19 | 20 | func textFieldShouldReturn(_ textField: UITextField) -> Bool { 21 | textField.resignFirstResponder() 22 | return true 23 | } 24 | 25 | required init?(coder aDecoder: NSCoder) { 26 | fatalError("init(coder:) has not been implemented") 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier("com.cornellappdev.Pollo") # The bundle identifier of your app 2 | apple_id(ENV['WALKER_EMAIL']) # Your Apple email address 3 | 4 | itc_team_id("118129608") # App Store Connect Team ID 5 | team_id("ZGMCXU7X3U") # Developer Portal Team ID 6 | 7 | # For more information about the Appfile, see: 8 | # https://docs.fastlane.tools/advanced/#appfile 9 | -------------------------------------------------------------------------------- /testflight_release_notes.txt: -------------------------------------------------------------------------------- 1 | # This file will be read by Bitrise and added to the Whats New Release Notes on TestFlight. 2 | # Lines that start with a # will be ignored by Bitrise 3 | # 4 | # Example: 5 | # - Added new login flow 6 | # - Redesigned home screen 7 | # - Made networking more reliable 8 | # 9 | # Add notes below this line 10 | - Update date grouping of polls based on current time zone 11 | - Add ability to un-upvote 12 | --------------------------------------------------------------------------------