├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── Bond │ ├── Bond │ │ ├── BNDProtocolProxyBase.h │ │ ├── BNDProtocolProxyBase.m │ │ ├── Bond.h │ │ ├── NSObject+Bond.h │ │ ├── NSObject+Bond.m │ │ └── ProtocolProxy.swift │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Bond.swift │ │ ├── CALayer.swift │ │ ├── DataSource.swift │ │ ├── DynamicSubject.swift │ │ ├── NSLayoutConstraint.swift │ │ ├── NSObject+KVO.swift │ │ ├── NSObject.swift │ │ ├── NotificationCenter.swift │ │ ├── Observable.swift │ │ ├── Observable2DArray.swift │ │ ├── ObservableArray.swift │ │ ├── ObservableDictionary.swift │ │ ├── ObservableSet.swift │ │ └── UIKit │ │ ├── UIActivityIndicatorView.swift │ │ ├── UIApplication.swift │ │ ├── UIBarButtonItem.swift │ │ ├── UIBarItem.swift │ │ ├── UIButton.swift │ │ ├── UICollectionView.swift │ │ ├── UIControl.swift │ │ ├── UIDatePicker.swift │ │ ├── UIGestureRecognizer.swift │ │ ├── UIImageView.swift │ │ ├── UILabel.swift │ │ ├── UINavigationBar.swift │ │ ├── UINavigationItem.swift │ │ ├── UIProgressView.swift │ │ ├── UIRefreshControl.swift │ │ ├── UISegmentedControl.swift │ │ ├── UISlider.swift │ │ ├── UIStepper.swift │ │ ├── UISwitch.swift │ │ ├── UITableView.swift │ │ ├── UITextField.swift │ │ ├── UITextView.swift │ │ └── UIView.swift ├── Diff │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Diff+UIKit.swift │ │ ├── Diff.swift │ │ ├── ExtendedDiff.swift │ │ ├── ExtendedPatch+Apply.swift │ │ ├── ExtendedPatch.swift │ │ ├── GenericPatch.swift │ │ ├── LinkedList.swift │ │ ├── NestedDiff.swift │ │ ├── NestedExtendedDiff.swift │ │ ├── Patch+Apply.swift │ │ ├── Patch+Sort.swift │ │ └── Patch.swift ├── Koloda │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ └── KolodaView │ │ │ ├── DraggableCardView │ │ │ └── DraggableCardView.swift │ │ │ ├── KolodaCardStorage.swift │ │ │ ├── KolodaView.swift │ │ │ ├── KolodaViewAnimatior.swift │ │ │ ├── OverlayView │ │ │ └── OverlayView.swift │ │ │ └── SwipeResultDirection.swift │ └── README.md ├── Local Podspecs │ └── Koloda.podspec.json ├── Manifest.lock ├── ObjectMapper │ ├── LICENSE │ ├── README-CN.md │ └── Sources │ │ ├── CustomDateFormatTransform.swift │ │ ├── DataTransform.swift │ │ ├── DateFormatterTransform.swift │ │ ├── DateTransform.swift │ │ ├── DictionaryTransform.swift │ │ ├── EnumOperators.swift │ │ ├── EnumTransform.swift │ │ ├── FromJSON.swift │ │ ├── HexColorTransform.swift │ │ ├── ISO8601DateTransform.swift │ │ ├── ImmutableMappable.swift │ │ ├── Map.swift │ │ ├── MapError.swift │ │ ├── Mappable.swift │ │ ├── Mapper.swift │ │ ├── NSDecimalNumberTransform.swift │ │ ├── Operators.swift │ │ ├── ToJSON.swift │ │ ├── TransformOf.swift │ │ ├── TransformOperators.swift │ │ ├── TransformType.swift │ │ └── URLTransform.swift ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── takusemba.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Bond.xcscheme │ │ ├── Diff.xcscheme │ │ ├── Koloda.xcscheme │ │ ├── ObjectMapper.xcscheme │ │ ├── Pods-Tindest.xcscheme │ │ ├── Pulsator.xcscheme │ │ ├── ReactiveKit.xcscheme │ │ ├── RxCocoa.xcscheme │ │ ├── RxSwift.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── XLPagerTabStrip-XLPagerTabStrip.xcscheme │ │ ├── XLPagerTabStrip.xcscheme │ │ ├── pop.xcscheme │ │ └── xcschememanagement.plist ├── Pulsator │ ├── LICENSE │ ├── Pulsator │ │ └── Pulsator.swift │ └── README.md ├── ReactiveKit │ ├── LICENSE │ ├── README.md │ ├── ReactiveKit │ │ └── ReactiveKit.h │ └── Sources │ │ ├── Bindable.swift │ │ ├── Connectable.swift │ │ ├── Disposable.swift │ │ ├── Event.swift │ │ ├── ExecutionContext.swift │ │ ├── Lock.swift │ │ ├── NoError.swift │ │ ├── Observer.swift │ │ ├── Optional.swift │ │ ├── Property.swift │ │ ├── Reactive.swift │ │ ├── Result.swift │ │ ├── Signal.swift │ │ ├── SignalProtocol+Arities.swift │ │ ├── SignalProtocol.swift │ │ ├── Subjects.swift │ │ └── Typealiases.swift ├── RxCocoa │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ └── Platform.Linux.swift │ ├── README.md │ └── RxCocoa │ │ ├── CocoaUnits │ │ ├── ControlEvent.swift │ │ ├── ControlProperty.swift │ │ ├── Driver │ │ │ ├── ControlEvent+Driver.swift │ │ │ ├── ControlProperty+Driver.swift │ │ │ ├── Driver+Subscription.swift │ │ │ ├── Driver.swift │ │ │ ├── ObservableConvertibleType+Driver.swift │ │ │ └── Variable+Driver.swift │ │ ├── SharedSequence │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ ├── SharedSequence+Operators.swift │ │ │ ├── SharedSequence.swift │ │ │ └── Variable+SharedSequence.swift │ │ └── UIBindingObserver.swift │ │ ├── Common │ │ ├── ControlTarget.swift │ │ ├── DelegateProxy.swift │ │ ├── DelegateProxyType.swift │ │ ├── NSLayoutConstraint+Rx.swift │ │ ├── Observable+Bind.swift │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ ├── RxTarget.swift │ │ ├── SectionedViewDataSourceType.swift │ │ └── TextInput.swift │ │ ├── Foundation │ │ ├── KVORepresentable+CoreGraphics.swift │ │ ├── KVORepresentable+Swift.swift │ │ ├── KVORepresentable.swift │ │ ├── Logging.swift │ │ ├── NSNotificationCenter+Rx.swift │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ ├── NSObject+Rx.swift │ │ └── URLSession+Rx.swift │ │ ├── Runtime │ │ ├── _RX.m │ │ ├── _RXDelegateProxy.m │ │ ├── _RXKVOObserver.m │ │ ├── _RXObjCRuntime.m │ │ └── include │ │ │ ├── RxCocoaRuntime.h │ │ │ ├── _RX.h │ │ │ ├── _RXDelegateProxy.h │ │ │ ├── _RXKVOObserver.h │ │ │ └── _RXObjCRuntime.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.swift │ │ └── iOS │ │ ├── DataSources │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ ├── Events │ │ └── ItemEvents.swift │ │ ├── NSTextStorage+Rx.swift │ │ ├── Protocols │ │ ├── RxCollectionViewDataSourceType.swift │ │ └── RxTableViewDataSourceType.swift │ │ ├── Proxies │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ ├── RxCollectionViewDelegateProxy.swift │ │ ├── RxPickerViewDelegateProxy.swift │ │ ├── RxScrollViewDelegateProxy.swift │ │ ├── RxSearchBarDelegateProxy.swift │ │ ├── RxSearchControllerDelegateProxy.swift │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ ├── RxTabBarDelegateProxy.swift │ │ ├── RxTableViewDataSourceProxy.swift │ │ ├── RxTableViewDelegateProxy.swift │ │ ├── RxTextStorageDelegateProxy.swift │ │ ├── RxTextViewDelegateProxy.swift │ │ └── RxWebViewDelegateProxy.swift │ │ ├── UIActivityIndicatorView+Rx.swift │ │ ├── UIAlertAction+Rx.swift │ │ ├── UIApplication+Rx.swift │ │ ├── UIBarButtonItem+Rx.swift │ │ ├── UIButton+Rx.swift │ │ ├── UICollectionView+Rx.swift │ │ ├── UIControl+Rx.swift │ │ ├── UIDatePicker+Rx.swift │ │ ├── UIGestureRecognizer+Rx.swift │ │ ├── UIImageView+Rx.swift │ │ ├── UILabel+Rx.swift │ │ ├── UINavigationItem+Rx.swift │ │ ├── UIPageControl+Rx.swift │ │ ├── UIPickerView+Rx.swift │ │ ├── UIProgressView+Rx.swift │ │ ├── UIRefreshControl+Rx.swift │ │ ├── UIScrollView+Rx.swift │ │ ├── UISearchBar+Rx.swift │ │ ├── UISearchController+Rx.swift │ │ ├── UISegmentedControl+Rx.swift │ │ ├── UISlider+Rx.swift │ │ ├── UIStepper+Rx.swift │ │ ├── UISwitch+Rx.swift │ │ ├── UITabBar+Rx.swift │ │ ├── UITabBarController+Rx.swift │ │ ├── UITabBarItem+Rx.swift │ │ ├── UITableView+Rx.swift │ │ ├── UITextField+Rx.swift │ │ ├── UITextView+Rx.swift │ │ ├── UIView+Rx.swift │ │ ├── UIViewController+Rx.swift │ │ └── UIWebView+Rx.swift ├── RxSwift │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ └── Platform.Linux.swift │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.swift │ │ ├── SynchronizedSubscribeType.swift │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ ├── AnonymousDisposable.swift │ │ ├── BinaryDisposable.swift │ │ ├── BooleanDisposable.swift │ │ ├── CompositeDisposable.swift │ │ ├── Disposables.swift │ │ ├── DisposeBag.swift │ │ ├── DisposeBase.swift │ │ ├── NopDisposable.swift │ │ ├── RefCountDisposable.swift │ │ ├── ScheduledDisposable.swift │ │ ├── SerialDisposable.swift │ │ ├── SingleAssignmentDisposable.swift │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ ├── Bag+Rx.swift │ │ └── String+Rx.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── Implementations │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AnonymousObservable.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+Collection.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── Concat.swift │ │ │ ├── ConnectableObservable.swift │ │ │ ├── Debug.swift │ │ │ ├── Debunce.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── Generate.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── ObserveOnSerialDispatchQueue.swift │ │ │ ├── Optional.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── RefCount.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplay1.swift │ │ │ ├── ShareReplay1WhileConnected.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+Collection.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ ├── Observable+Aggregate.swift │ │ ├── Observable+Binding.swift │ │ ├── Observable+Concurrency.swift │ │ ├── Observable+Creation.swift │ │ ├── Observable+Debug.swift │ │ ├── Observable+Multiple.swift │ │ ├── Observable+Single.swift │ │ ├── Observable+StandardSequenceOperators.swift │ │ └── Observable+Time.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Reactive.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── ImmediateScheduler.swift │ │ ├── Internal │ │ │ ├── AnonymousInvocable.swift │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── ScheduledItem.swift │ │ │ └── ScheduledItemType.swift │ │ ├── MainScheduler.swift │ │ ├── OperationQueueScheduler.swift │ │ ├── RecursiveScheduler.swift │ │ ├── SchedulerServices+Emulation.swift │ │ ├── SerialDispatchQueueScheduler.swift │ │ ├── VirtualTimeConverterType.swift │ │ └── VirtualTimeScheduler.swift │ │ └── Subjects │ │ ├── BehaviorSubject.swift │ │ ├── PublishSubject.swift │ │ ├── ReplaySubject.swift │ │ ├── SubjectType.swift │ │ └── Variable.swift ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ ├── Alamofire.xcconfig │ │ └── Info.plist │ ├── Bond │ │ ├── Bond-dummy.m │ │ ├── Bond-prefix.pch │ │ ├── Bond-umbrella.h │ │ ├── Bond.modulemap │ │ ├── Bond.xcconfig │ │ └── Info.plist │ ├── Diff │ │ ├── Diff-dummy.m │ │ ├── Diff-prefix.pch │ │ ├── Diff-umbrella.h │ │ ├── Diff.modulemap │ │ ├── Diff.xcconfig │ │ └── Info.plist │ ├── Koloda │ │ ├── Info.plist │ │ ├── Koloda-dummy.m │ │ ├── Koloda-prefix.pch │ │ ├── Koloda-umbrella.h │ │ ├── Koloda.modulemap │ │ └── Koloda.xcconfig │ ├── ObjectMapper │ │ ├── Info.plist │ │ ├── ObjectMapper-dummy.m │ │ ├── ObjectMapper-prefix.pch │ │ ├── ObjectMapper-umbrella.h │ │ ├── ObjectMapper.modulemap │ │ └── ObjectMapper.xcconfig │ ├── Pods-Tindest │ │ ├── Info.plist │ │ ├── Pods-Tindest-acknowledgements.markdown │ │ ├── Pods-Tindest-acknowledgements.plist │ │ ├── Pods-Tindest-dummy.m │ │ ├── Pods-Tindest-frameworks.sh │ │ ├── Pods-Tindest-resources.sh │ │ ├── Pods-Tindest-umbrella.h │ │ ├── Pods-Tindest.debug.xcconfig │ │ ├── Pods-Tindest.modulemap │ │ └── Pods-Tindest.release.xcconfig │ ├── Pulsator │ │ ├── Info.plist │ │ ├── Pulsator-dummy.m │ │ ├── Pulsator-prefix.pch │ │ ├── Pulsator-umbrella.h │ │ ├── Pulsator.modulemap │ │ └── Pulsator.xcconfig │ ├── ReactiveKit │ │ ├── Info.plist │ │ ├── ReactiveKit-dummy.m │ │ ├── ReactiveKit-prefix.pch │ │ ├── ReactiveKit-umbrella.h │ │ ├── ReactiveKit.modulemap │ │ └── ReactiveKit.xcconfig │ ├── RxCocoa │ │ ├── Info.plist │ │ ├── RxCocoa-dummy.m │ │ ├── RxCocoa-prefix.pch │ │ ├── RxCocoa-umbrella.h │ │ ├── RxCocoa.modulemap │ │ └── RxCocoa.xcconfig │ ├── RxSwift │ │ ├── Info.plist │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.modulemap │ │ └── RxSwift.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.xcconfig │ ├── XLPagerTabStrip │ │ ├── Info.plist │ │ ├── ResourceBundle-XLPagerTabStrip-Info.plist │ │ ├── XLPagerTabStrip-dummy.m │ │ ├── XLPagerTabStrip-prefix.pch │ │ ├── XLPagerTabStrip-umbrella.h │ │ ├── XLPagerTabStrip.modulemap │ │ └── XLPagerTabStrip.xcconfig │ └── pop │ │ ├── Info.plist │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ ├── pop-umbrella.h │ │ ├── pop.modulemap │ │ └── pop.xcconfig ├── XLPagerTabStrip │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── BarPagerTabStripViewController.swift │ │ ├── BarView.swift │ │ ├── BaseButtonBarPagerTabStripViewController.swift │ │ ├── ButtonBarPagerTabStripViewController.swift │ │ ├── ButtonBarView.swift │ │ ├── ButtonBarViewCell.swift │ │ ├── ButtonCell.xib │ │ ├── FXPageControl.h │ │ ├── FXPageControl.m │ │ ├── IndicatorInfo.swift │ │ ├── PagerTabStripBehaviour.swift │ │ ├── PagerTabStripError.swift │ │ ├── PagerTabStripViewController.swift │ │ ├── SegmentedPagerTabStripViewController.swift │ │ ├── SwipeDirection.swift │ │ └── TwitterPagerTabStripViewController.swift └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── README.md ├── Tindest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── takusemba.xcuserdatad │ └── xcschemes │ ├── Tindest.xcscheme │ └── xcschememanagement.plist ├── Tindest.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── takusemba.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Tindest ├── Api.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 120 - iPhone Copy-1.png │ │ ├── 120 - iPhone Copy.png │ │ ├── 180 - iPhone Copy.png │ │ ├── 76 - iPad (@1x).png │ │ ├── 76 - iPad (@1x)@2x.png │ │ ├── 80 - Spotlight.png │ │ └── Contents.json │ ├── Contents.json │ ├── back_detail.imageset │ │ ├── Contents.json │ │ ├── back_detail.png │ │ ├── back_detail@2x.png │ │ └── back_detail@3x.png │ ├── bottom_round_view.imageset │ │ ├── Contents.json │ │ ├── bottom_round_view.png │ │ ├── bottom_round_view@2x.png │ │ └── bottom_round_view@3x.png │ ├── edit_button.imageset │ │ ├── Contents.json │ │ ├── edit_button.png │ │ ├── edit_button@2x.png │ │ └── edit_button@3x.png │ ├── fire.imageset │ │ ├── Contents.json │ │ ├── fire.png │ │ ├── fire@2x.png │ │ └── fire@3x.png │ ├── horizontal_line.imageset │ │ ├── Contents.json │ │ ├── horizontal_line.png │ │ ├── horizontal_line@2x.png │ │ └── horizontal_line@3x.png │ ├── like_button.imageset │ │ ├── Contents.json │ │ ├── like_button.png │ │ ├── like_button@2x.png │ │ └── like_button@3x.png │ ├── like_button_fill.imageset │ │ ├── Contents.json │ │ ├── like_button_fill.png │ │ ├── like_button_fill@2x.png │ │ └── like_button_fill@3x.png │ ├── like_overlay.imageset │ │ ├── Contents.json │ │ ├── like_overlay.png │ │ ├── like_overlay@2x.png │ │ └── like_overlay@3x.png │ ├── make_group.imageset │ │ ├── Contents.json │ │ ├── make_group.png │ │ ├── make_group@2x.png │ │ └── make_group@3x.png │ ├── match_cell.imageset │ │ ├── Contents.json │ │ ├── pexels-photo-61100.png │ │ ├── pexels-photo-61100@2x.png │ │ └── pexels-photo-61100@3x.png │ ├── message.imageset │ │ ├── Contents.json │ │ ├── message.png │ │ ├── message@2x.png │ │ └── message@3x.png │ ├── message_cell.imageset │ │ ├── Contents.json │ │ ├── message_cell.png │ │ ├── message_cell@2x.png │ │ └── message_cell@3x.png │ ├── nope_button.imageset │ │ ├── Contents.json │ │ ├── nope_button.png │ │ ├── nope_button@2x.png │ │ └── nope_button@3x.png │ ├── nope_button_fill.imageset │ │ ├── Contents.json │ │ ├── nope_button_fill.png │ │ ├── nope_button_fill@2x.png │ │ └── nope_button_fill@3x.png │ ├── nope_overlay.imageset │ │ ├── Contents.json │ │ ├── nope_overlay.png │ │ ├── nope_overlay@2x.png │ │ └── nope_overlay@3x.png │ ├── person.imageset │ │ ├── Contents.json │ │ ├── person.png │ │ ├── person@2x.png │ │ └── person@3x.png │ ├── profile.imageset │ │ ├── Contents.json │ │ ├── profile.png │ │ ├── profile@2x.png │ │ └── profile@3x.png │ ├── profile_picture.imageset │ │ ├── Contents.json │ │ ├── profile_picture.png │ │ ├── profile_picture@2x.png │ │ └── profile_picture@3x.png │ ├── red_back.imageset │ │ ├── Contents.json │ │ ├── red_back.png │ │ ├── red_back@2x.png │ │ └── red_back@3x.png │ ├── red_horizontal_dots.imageset │ │ ├── Contents.json │ │ ├── red_horizontal_dots.png │ │ ├── red_horizontal_dots@2x.png │ │ └── red_horizontal_dots@3x.png │ ├── return_button.imageset │ │ ├── Contents.json │ │ ├── return_button.png │ │ ├── return_button@2x.png │ │ └── return_button@3x.png │ ├── round_friend.imageset │ │ ├── Contents.json │ │ ├── round_friend.png │ │ ├── round_friend@2x.png │ │ └── round_friend@3x.png │ ├── setting_button.imageset │ │ ├── Contents.json │ │ ├── setting_button.png │ │ ├── setting_button@2x.png │ │ └── setting_button@3x.png │ ├── splash.imageset │ │ ├── Contents.json │ │ ├── splash.png │ │ ├── splash@2x.png │ │ └── splash@3x.png │ ├── super_like_button.imageset │ │ ├── Contents.json │ │ ├── super_like_button.png │ │ ├── super_like_button@2x.png │ │ └── super_like_button@3x.png │ ├── super_like_button_fill.imageset │ │ ├── Contents.json │ │ ├── super_like_button_fill.png │ │ ├── super_like_button_fill@2x.png │ │ └── super_like_button_fill@3x.png │ ├── tineder_plus_button.imageset │ │ ├── Contents.json │ │ ├── tineder_plus_button.png │ │ ├── tineder_plus_button@2x.png │ │ └── tineder_plus_button@3x.png │ └── white_gradation.imageset │ │ ├── Contents.json │ │ ├── white_gradation.png │ │ ├── white_gradation@2x.png │ │ └── white_gradation@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CardView.swift ├── CardView.xib ├── Chat.storyboard ├── ChatViewController.swift ├── ChatViewModel.swift ├── CustomKolodaView.swift ├── Detail.storyboard ├── DetailViewController.swift ├── Image.swift ├── Info.plist ├── MainViewController.swift ├── MatchCollectionViewCell.swift ├── MatchCollectionViewCell.xib ├── Message.storyboard ├── Message.swift ├── MessageCollectionView.swift ├── MessageCollectionView.xib ├── MessageSectionHeaderView.swift ├── MessageSectionHeaderView.xib ├── MessageTableViewCell.swift ├── MessageTableViewCell.xib ├── MessageViewController.swift ├── MessageViewModel.swift ├── MovableUIButton.swift ├── MyselfCell.swift ├── MyselfCell.xib ├── OppenentCell.xib ├── Profile.storyboard ├── ProfileViewController.swift ├── Shot.swift ├── ShotRequest.swift ├── Swipe.storyboard ├── SwipeOverlayView.swift ├── SwipeOverlayView.xib ├── SwipeToDetailTransition.swift ├── SwipeViewController.swift ├── SwipeViewModel.swift ├── TabItemCell.swift ├── TabItemCell.xib ├── UIColorExtension.swift ├── User.swift └── UserRequest.swift ├── TindestTests ├── Info.plist └── TindestTests.swift └── TindestUITests ├── Info.plist └── TindestUITests.swift /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Bond/Bond/BNDProtocolProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/BNDProtocolProxyBase.h -------------------------------------------------------------------------------- /Pods/Bond/Bond/BNDProtocolProxyBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/BNDProtocolProxyBase.m -------------------------------------------------------------------------------- /Pods/Bond/Bond/Bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/Bond.h -------------------------------------------------------------------------------- /Pods/Bond/Bond/NSObject+Bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/NSObject+Bond.h -------------------------------------------------------------------------------- /Pods/Bond/Bond/NSObject+Bond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/NSObject+Bond.m -------------------------------------------------------------------------------- /Pods/Bond/Bond/ProtocolProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Bond/ProtocolProxy.swift -------------------------------------------------------------------------------- /Pods/Bond/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/LICENSE -------------------------------------------------------------------------------- /Pods/Bond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/README.md -------------------------------------------------------------------------------- /Pods/Bond/Sources/Bond.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/Bond.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/CALayer.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/DataSource.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/DynamicSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/DynamicSubject.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/NSLayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/NSLayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/NSObject+KVO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/NSObject+KVO.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/NSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/NSObject.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/NotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/NotificationCenter.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/Observable.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/Observable2DArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/Observable2DArray.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/ObservableArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/ObservableArray.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/ObservableDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/ObservableDictionary.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/ObservableSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/ObservableSet.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIActivityIndicatorView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIApplication.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIBarButtonItem.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIBarItem.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIButton.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UICollectionView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIControl.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIDatePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIDatePicker.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIGestureRecognizer.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIImageView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UILabel.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UINavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UINavigationBar.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UINavigationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UINavigationItem.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIProgressView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIRefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIRefreshControl.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UISegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UISegmentedControl.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UISlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UISlider.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIStepper.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UISwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UISwitch.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UITableView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UITextField.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UITextView.swift -------------------------------------------------------------------------------- /Pods/Bond/Sources/UIKit/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Bond/Sources/UIKit/UIView.swift -------------------------------------------------------------------------------- /Pods/Diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/LICENSE -------------------------------------------------------------------------------- /Pods/Diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/README.md -------------------------------------------------------------------------------- /Pods/Diff/Sources/Diff+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/Diff+UIKit.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/Diff.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/ExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/ExtendedDiff.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/ExtendedPatch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/ExtendedPatch+Apply.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/ExtendedPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/ExtendedPatch.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/GenericPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/GenericPatch.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/LinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/LinkedList.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/NestedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/NestedDiff.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/NestedExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/NestedExtendedDiff.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/Patch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/Patch+Apply.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/Patch+Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/Patch+Sort.swift -------------------------------------------------------------------------------- /Pods/Diff/Sources/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Diff/Sources/Patch.swift -------------------------------------------------------------------------------- /Pods/Koloda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/LICENSE -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/DraggableCardView/DraggableCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/DraggableCardView/DraggableCardView.swift -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/KolodaCardStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/KolodaCardStorage.swift -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/KolodaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/KolodaView.swift -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/KolodaViewAnimatior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/KolodaViewAnimatior.swift -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/OverlayView/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/OverlayView/OverlayView.swift -------------------------------------------------------------------------------- /Pods/Koloda/Pod/Classes/KolodaView/SwipeResultDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/Pod/Classes/KolodaView/SwipeResultDirection.swift -------------------------------------------------------------------------------- /Pods/Koloda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Koloda/README.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/Koloda.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Local Podspecs/Koloda.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/ObjectMapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/LICENSE -------------------------------------------------------------------------------- /Pods/ObjectMapper/README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/README-CN.md -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/CustomDateFormatTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/CustomDateFormatTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/DataTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/DataTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/DateFormatterTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/DateFormatterTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/DateTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/DictionaryTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/DictionaryTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/EnumOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/EnumOperators.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/EnumTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/EnumTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/FromJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/FromJSON.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/HexColorTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/HexColorTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/ISO8601DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/ISO8601DateTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/ImmutableMappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/ImmutableMappable.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/Map.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/MapError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/MapError.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/Mappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/Mappable.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/Mapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/Mapper.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/NSDecimalNumberTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/NSDecimalNumberTransform.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/Operators.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/ToJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/ToJSON.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/TransformOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/TransformOf.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/TransformOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/TransformOperators.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/TransformType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/TransformType.swift -------------------------------------------------------------------------------- /Pods/ObjectMapper/Sources/URLTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ObjectMapper/Sources/URLTransform.swift -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Bond.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Bond.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Diff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Diff.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Koloda.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Koloda.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/ObjectMapper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/ObjectMapper.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Pods-Tindest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Pods-Tindest.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Pulsator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Pulsator.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/ReactiveKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/ReactiveKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/RxCocoa.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/RxCocoa.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/RxSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/RxSwift.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/XLPagerTabStrip-XLPagerTabStrip.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/XLPagerTabStrip-XLPagerTabStrip.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/XLPagerTabStrip.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/XLPagerTabStrip.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/pop.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pods.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pulsator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pulsator/LICENSE -------------------------------------------------------------------------------- /Pods/Pulsator/Pulsator/Pulsator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pulsator/Pulsator/Pulsator.swift -------------------------------------------------------------------------------- /Pods/Pulsator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Pulsator/README.md -------------------------------------------------------------------------------- /Pods/ReactiveKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/LICENSE -------------------------------------------------------------------------------- /Pods/ReactiveKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/README.md -------------------------------------------------------------------------------- /Pods/ReactiveKit/ReactiveKit/ReactiveKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/ReactiveKit/ReactiveKit.h -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Bindable.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Connectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Connectable.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Disposable.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Event.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/ExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/ExecutionContext.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Lock.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/NoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/NoError.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Observer.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Optional.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Property.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Reactive.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Result.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Signal.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/SignalProtocol+Arities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/SignalProtocol+Arities.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/SignalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/SignalProtocol.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Subjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Subjects.swift -------------------------------------------------------------------------------- /Pods/ReactiveKit/Sources/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/ReactiveKit/Sources/Typealiases.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/README.md -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/ControlEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/ControlEvent.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/ControlProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/ControlProperty.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ControlEvent+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ControlEvent+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ControlProperty+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ControlProperty+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Driver+Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Driver+Subscription.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ObservableConvertibleType+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/ObservableConvertibleType+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Variable+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Variable+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/ObservableConvertibleType+SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/ObservableConvertibleType+SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators+arity.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/Variable+SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/SharedSequence/Variable+SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/CocoaUnits/UIBindingObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/CocoaUnits/UIBindingObserver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/NSLayoutConstraint+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/NSLayoutConstraint+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/RxTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Common/TextInput.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/Logging.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSNotificationCenter+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSNotificationCenter+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RX.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWebViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWebViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIAlertAction+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIAlertAction+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIImageView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIImageView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UILabel+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UILabel+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UINavigationItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UINavigationItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIPageControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIPageControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIProgressView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIProgressView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBarItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBarItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIViewController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIViewController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIWebView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIWebView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+Collection.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Optional.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+Collection.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Time.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/RxSwift/RxSwift/Subjects/Variable.swift -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Bond-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Bond-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Bond-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Bond-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Bond-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Bond-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Bond.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Bond.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Bond.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Bond.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Bond/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Bond/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Diff-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Diff-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Diff-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Diff-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Diff-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Diff-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Diff.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Diff.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Diff.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Diff.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Diff/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Diff/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Koloda-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Koloda-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Koloda-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Koloda-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Koloda-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Koloda-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Koloda.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Koloda.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Koloda/Koloda.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Koloda/Koloda.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/ObjectMapper-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/ObjectMapper-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/ObjectMapper-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/ObjectMapper-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/ObjectMapper-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/ObjectMapper-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/ObjectMapper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/ObjectMapper.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ObjectMapper/ObjectMapper.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ObjectMapper/ObjectMapper.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tindest/Pods-Tindest.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pods-Tindest/Pods-Tindest.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Pulsator-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Pulsator-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Pulsator-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Pulsator-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Pulsator-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Pulsator-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Pulsator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Pulsator.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pulsator/Pulsator.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/Pulsator/Pulsator.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/ReactiveKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/ReactiveKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/ReactiveKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/ReactiveKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/ReactiveKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/ReactiveKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/ReactiveKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/ReactiveKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveKit/ReactiveKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/ReactiveKit/ReactiveKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/RxSwift/RxSwift.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/ResourceBundle-XLPagerTabStrip-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/ResourceBundle-XLPagerTabStrip-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/XLPagerTabStrip/XLPagerTabStrip.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/pop-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/pop.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/LICENSE -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/README.md -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/BarPagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/BarPagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/BarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/BarView.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/BaseButtonBarPagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/BaseButtonBarPagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonBarPagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/ButtonBarPagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/ButtonBarView.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonBarViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/ButtonBarViewCell.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/ButtonCell.xib -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/FXPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/FXPageControl.h -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/FXPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/FXPageControl.m -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/IndicatorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/IndicatorInfo.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/PagerTabStripBehaviour.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/PagerTabStripBehaviour.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/PagerTabStripError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/PagerTabStripError.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/PagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/PagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/SegmentedPagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/SegmentedPagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/SwipeDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/SwipeDirection.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/TwitterPagerTabStripViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/XLPagerTabStrip/Sources/TwitterPagerTabStripViewController.swift -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/README.md -------------------------------------------------------------------------------- /Tindest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tindest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tindest.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Tindest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/Tindest.xcscheme -------------------------------------------------------------------------------- /Tindest.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcodeproj/xcuserdata/takusemba.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Tindest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tindest.xcworkspace/xcuserdata/takusemba.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest.xcworkspace/xcuserdata/takusemba.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Tindest/Api.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Api.swift -------------------------------------------------------------------------------- /Tindest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/AppDelegate.swift -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/120 - iPhone Copy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/120 - iPhone Copy-1.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/120 - iPhone Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/120 - iPhone Copy.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/180 - iPhone Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/180 - iPhone Copy.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/76 - iPad (@1x).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/76 - iPad (@1x).png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/76 - iPad (@1x)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/76 - iPad (@1x)@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/80 - Spotlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/80 - Spotlight.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/back_detail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/back_detail.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/back_detail.imageset/back_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/back_detail.imageset/back_detail.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/back_detail.imageset/back_detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/back_detail.imageset/back_detail@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/back_detail.imageset/back_detail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/back_detail.imageset/back_detail@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/bottom_round_view.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/bottom_round_view.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/bottom_round_view.imageset/bottom_round_view@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/edit_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/edit_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/edit_button.imageset/edit_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/edit_button.imageset/edit_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/edit_button.imageset/edit_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/edit_button.imageset/edit_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/edit_button.imageset/edit_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/edit_button.imageset/edit_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/fire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/fire.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/fire.imageset/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/fire.imageset/fire.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/fire.imageset/fire@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/fire.imageset/fire@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/fire.imageset/fire@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/fire.imageset/fire@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/horizontal_line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/horizontal_line.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/horizontal_line.imageset/horizontal_line@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button.imageset/like_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button.imageset/like_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button.imageset/like_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button.imageset/like_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button.imageset/like_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button.imageset/like_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button_fill.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_button_fill.imageset/like_button_fill@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_overlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_overlay.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_overlay.imageset/like_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_overlay.imageset/like_overlay.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_overlay.imageset/like_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_overlay.imageset/like_overlay@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/like_overlay.imageset/like_overlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/like_overlay.imageset/like_overlay@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/make_group.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/make_group.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/make_group.imageset/make_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/make_group.imageset/make_group.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/make_group.imageset/make_group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/make_group.imageset/make_group@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/make_group.imageset/make_group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/make_group.imageset/make_group@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/match_cell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/match_cell.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/match_cell.imageset/pexels-photo-61100@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message.imageset/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message.imageset/message.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message.imageset/message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message.imageset/message@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message.imageset/message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message.imageset/message@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message_cell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message_cell.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message_cell.imageset/message_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message_cell.imageset/message_cell.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message_cell.imageset/message_cell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message_cell.imageset/message_cell@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/message_cell.imageset/message_cell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/message_cell.imageset/message_cell@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button.imageset/nope_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button.imageset/nope_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button.imageset/nope_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button.imageset/nope_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button.imageset/nope_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button.imageset/nope_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button_fill.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_button_fill.imageset/nope_button_fill@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_overlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_overlay.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/nope_overlay.imageset/nope_overlay@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/person.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/person.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/person.imageset/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/person.imageset/person.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/person.imageset/person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/person.imageset/person@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/person.imageset/person@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/person.imageset/person@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile.imageset/profile.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile.imageset/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile.imageset/profile@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile.imageset/profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile.imageset/profile@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile_picture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile_picture.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile_picture.imageset/profile_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile_picture.imageset/profile_picture.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile_picture.imageset/profile_picture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile_picture.imageset/profile_picture@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/profile_picture.imageset/profile_picture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/profile_picture.imageset/profile_picture@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_back.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_back.imageset/red_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_back.imageset/red_back.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_back.imageset/red_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_back.imageset/red_back@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_back.imageset/red_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_back.imageset/red_back@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_horizontal_dots.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_horizontal_dots.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/red_horizontal_dots.imageset/red_horizontal_dots@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/return_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/return_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/return_button.imageset/return_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/return_button.imageset/return_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/return_button.imageset/return_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/return_button.imageset/return_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/return_button.imageset/return_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/return_button.imageset/return_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/round_friend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/round_friend.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/round_friend.imageset/round_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/round_friend.imageset/round_friend.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/round_friend.imageset/round_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/round_friend.imageset/round_friend@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/round_friend.imageset/round_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/round_friend.imageset/round_friend@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/setting_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/setting_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/setting_button.imageset/setting_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/setting_button.imageset/setting_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/setting_button.imageset/setting_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/setting_button.imageset/setting_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/setting_button.imageset/setting_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/setting_button.imageset/setting_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/splash.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/splash.imageset/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/splash.imageset/splash.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/splash.imageset/splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/splash.imageset/splash@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/splash.imageset/splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/splash.imageset/splash@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button.imageset/super_like_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button.imageset/super_like_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button.imageset/super_like_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button.imageset/super_like_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button.imageset/super_like_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button.imageset/super_like_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button_fill.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/super_like_button_fill.imageset/super_like_button_fill@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/tineder_plus_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/tineder_plus_button.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/tineder_plus_button.imageset/tineder_plus_button@3x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/white_gradation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/white_gradation.imageset/Contents.json -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/white_gradation.imageset/white_gradation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/white_gradation.imageset/white_gradation.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/white_gradation.imageset/white_gradation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/white_gradation.imageset/white_gradation@2x.png -------------------------------------------------------------------------------- /Tindest/Assets.xcassets/white_gradation.imageset/white_gradation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Assets.xcassets/white_gradation.imageset/white_gradation@3x.png -------------------------------------------------------------------------------- /Tindest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tindest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tindest/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/CardView.swift -------------------------------------------------------------------------------- /Tindest/CardView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/CardView.xib -------------------------------------------------------------------------------- /Tindest/Chat.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Chat.storyboard -------------------------------------------------------------------------------- /Tindest/ChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/ChatViewController.swift -------------------------------------------------------------------------------- /Tindest/ChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/ChatViewModel.swift -------------------------------------------------------------------------------- /Tindest/CustomKolodaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/CustomKolodaView.swift -------------------------------------------------------------------------------- /Tindest/Detail.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Detail.storyboard -------------------------------------------------------------------------------- /Tindest/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/DetailViewController.swift -------------------------------------------------------------------------------- /Tindest/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Image.swift -------------------------------------------------------------------------------- /Tindest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Info.plist -------------------------------------------------------------------------------- /Tindest/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MainViewController.swift -------------------------------------------------------------------------------- /Tindest/MatchCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MatchCollectionViewCell.swift -------------------------------------------------------------------------------- /Tindest/MatchCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MatchCollectionViewCell.xib -------------------------------------------------------------------------------- /Tindest/Message.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Message.storyboard -------------------------------------------------------------------------------- /Tindest/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Message.swift -------------------------------------------------------------------------------- /Tindest/MessageCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageCollectionView.swift -------------------------------------------------------------------------------- /Tindest/MessageCollectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageCollectionView.xib -------------------------------------------------------------------------------- /Tindest/MessageSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageSectionHeaderView.swift -------------------------------------------------------------------------------- /Tindest/MessageSectionHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageSectionHeaderView.xib -------------------------------------------------------------------------------- /Tindest/MessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageTableViewCell.swift -------------------------------------------------------------------------------- /Tindest/MessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageTableViewCell.xib -------------------------------------------------------------------------------- /Tindest/MessageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageViewController.swift -------------------------------------------------------------------------------- /Tindest/MessageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MessageViewModel.swift -------------------------------------------------------------------------------- /Tindest/MovableUIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MovableUIButton.swift -------------------------------------------------------------------------------- /Tindest/MyselfCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MyselfCell.swift -------------------------------------------------------------------------------- /Tindest/MyselfCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/MyselfCell.xib -------------------------------------------------------------------------------- /Tindest/OppenentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/OppenentCell.xib -------------------------------------------------------------------------------- /Tindest/Profile.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Profile.storyboard -------------------------------------------------------------------------------- /Tindest/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/ProfileViewController.swift -------------------------------------------------------------------------------- /Tindest/Shot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Shot.swift -------------------------------------------------------------------------------- /Tindest/ShotRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/ShotRequest.swift -------------------------------------------------------------------------------- /Tindest/Swipe.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/Swipe.storyboard -------------------------------------------------------------------------------- /Tindest/SwipeOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/SwipeOverlayView.swift -------------------------------------------------------------------------------- /Tindest/SwipeOverlayView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/SwipeOverlayView.xib -------------------------------------------------------------------------------- /Tindest/SwipeToDetailTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/SwipeToDetailTransition.swift -------------------------------------------------------------------------------- /Tindest/SwipeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/SwipeViewController.swift -------------------------------------------------------------------------------- /Tindest/SwipeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/SwipeViewModel.swift -------------------------------------------------------------------------------- /Tindest/TabItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/TabItemCell.swift -------------------------------------------------------------------------------- /Tindest/TabItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/TabItemCell.xib -------------------------------------------------------------------------------- /Tindest/UIColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/UIColorExtension.swift -------------------------------------------------------------------------------- /Tindest/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/User.swift -------------------------------------------------------------------------------- /Tindest/UserRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/Tindest/UserRequest.swift -------------------------------------------------------------------------------- /TindestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/TindestTests/Info.plist -------------------------------------------------------------------------------- /TindestTests/TindestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/TindestTests/TindestTests.swift -------------------------------------------------------------------------------- /TindestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/TindestUITests/Info.plist -------------------------------------------------------------------------------- /TindestUITests/TindestUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakuSemba/Tindest/HEAD/TindestUITests/TindestUITests.swift --------------------------------------------------------------------------------