diff --git a/.gitignore b/.gitignore index 43c6490b..4d8e422f 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,4 @@ fastlane/report.xml fastlane/Preview.html fastlane/screenshots fastlane/test_output +node_modules diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..d31ec9be --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,29 @@ +## Contributing to GitHawk + +This project is continuing to develop rapidly and new features are constantly being added. Pull Requests **are** accepted but please note that `master` is constantly changing and your submissions may go stale quick. Be warned! + +### Setup + +In order to compile and run GitHawk locally you will need to provide your own client ID and secret keys from GitHub. You can get these by [registering](https://github.com/settings/applications/new) a new OAuth application. The "Authorization callback URL" must be set to `freetime://`, otherwise you're free to fill it in yourself! + +Once you have your client ID and secret you can populate these values into the [Secrets.swift](https://github.com/rnystrom/GitHawk/blob/master/Classes/Other/Secrets.swift) file. You should **never** commit these changes! + +Finally you will also need to install `apollo-codegen`, this is a command line tool which is required to create the GraphQL models! This can be done easily by running `npm install`. + +### Pull Requests + +All changes should be made off of the latest version of `master`. If a Pull Request is still being worked on then please make this obvious by including "WIP" in the title! + +Pull Requests should have a suitable amount of testing done to ensure it doesn't break the app, and we do appreciate new unit tests being created although this isn't currently enforced in the aim of releasing faster! + +### Issues + +We use [GitHub issues](https://github.com/rnystrom/GitHawk/issues) in order to track feature requests and bugs! You can raise bugs through the app itself from the Settings page and then tapping "Report a Bug" - this will also include some device specific information to make fixing those bugs a little bit easier! + +### Beta Testing + +We use [TestFlight](https://itunes.apple.com/gb/app/testflight/id899247664?mt=8) in order to distribute beta versions of this application. If you're interested in helping then DM [@GitHawk](https://twitter.com/GitHawk) on Twitter with your email address and you'll be added to the list! + +### License + +By contributing to `GitHawk`, you agree that your contributions will be licensed under the terms found in our [LICENSE](https://github.com/rnystrom/GitHawk/blob/master/LICENSE) file. You understand that this project is released, for free, on the iOS App Store. diff --git a/Classes/Issues/IssuesViewController.swift b/Classes/Issues/IssuesViewController.swift index 01d83155..2472d842 100644 --- a/Classes/Issues/IssuesViewController.swift +++ b/Classes/Issues/IssuesViewController.swift @@ -247,7 +247,7 @@ IssueTextActionsViewDelegate { } func onMore(sender: UIBarButtonItem) { - let alert = UIAlertController() + let alert = UIAlertController.configured(preferredStyle: .actionSheet) if let close = closeAction() { alert.addAction(close) diff --git a/Classes/Login/LoginSplashViewController.swift b/Classes/Login/LoginSplashViewController.swift index 8f7e1e98..7e70f6a7 100644 --- a/Classes/Login/LoginSplashViewController.swift +++ b/Classes/Login/LoginSplashViewController.swift @@ -51,13 +51,13 @@ final class LoginSplashViewController: UIViewController, GithubSessionListener { // MARK: Private API @IBAction func onSignInButton(_ sender: Any) { - let safari = SFSafariViewController(url: loginURL) - safariController = safari - present(safari, animated: true) + guard let safariController = try? SFSafariViewController.configured(with: loginURL) else { return } + self.safariController = safariController + present(safariController, animated: true) } @IBAction func onPersonalAccessTokenButton(_ sender: Any) { - let alert = UIAlertController( + let alert = UIAlertController.configured( title: NSLocalizedString("Personal Access Token", comment: ""), message: NSLocalizedString("Sign in with a Personal Access Token with both repo and user scopes.", comment: ""), preferredStyle: .alert @@ -92,7 +92,7 @@ final class LoginSplashViewController: UIViewController, GithubSessionListener { private func handleError() { state = .idle - let alert = UIAlertController( + let alert = UIAlertController.configured( title: NSLocalizedString("Error", comment: ""), message: NSLocalizedString("There was an error signing in to GitHub. Please try again.", comment: ""), preferredStyle: .alert diff --git a/Classes/Notifications/NotificationNavigation.swift b/Classes/Notifications/NotificationNavigation.swift index 40da8ec0..ff321aa5 100644 --- a/Classes/Notifications/NotificationNavigation.swift +++ b/Classes/Notifications/NotificationNavigation.swift @@ -17,7 +17,7 @@ func NavigateToNotificationContent( switch object.identifier { case .hash(let hash): let url = URL(string: "https://github.com/\(object.owner)/\(object.repo)/commit/\(hash)")! - return SFSafariViewController(url: url) + return try! SFSafariViewController.configured(with: url) case .number(let number): let model = IssueDetailsModel(owner: object.owner, repo: object.repo, number: number) let controller = IssuesViewController( diff --git a/Classes/Notifications/NotificationsViewController.swift b/Classes/Notifications/NotificationsViewController.swift index bc436290..6518db54 100644 --- a/Classes/Notifications/NotificationsViewController.swift +++ b/Classes/Notifications/NotificationsViewController.swift @@ -109,7 +109,7 @@ PrimaryViewController { } @objc private func onMarkAll(sender: UIBarButtonItem) { - let alert = UIAlertController( + let alert = UIAlertController.configured( title: NSLocalizedString("Notifications", comment: ""), message: "Mark all notifications as read?", preferredStyle: .alert diff --git a/Classes/Repository/RepositoryViewController.swift b/Classes/Repository/RepositoryViewController.swift index 7e240610..13b59e84 100644 --- a/Classes/Repository/RepositoryViewController.swift +++ b/Classes/Repository/RepositoryViewController.swift @@ -80,21 +80,20 @@ class RepositoryViewController: TabmanViewController, PageboyViewControllerDataS func safariAction() -> UIAlertAction { return UIAlertAction(title: NSLocalizedString("Open in Safari", comment: ""), style: .default) { [weak self] _ in guard let strongSelf = self else { return } - let controller = SFSafariViewController(url: strongSelf.repoUrl) - strongSelf.present(controller, animated: true) + strongSelf.presentSafari(url: strongSelf.repoUrl) } } func viewOwnerAction() -> UIAlertAction { return UIAlertAction(title: NSLocalizedString("View Owner's Profile", comment: ""), style: .default) { [weak self] _ in guard let strongSelf = self else { return } - let controller = SFSafariViewController(url: URL(string: "https://github.com/\(strongSelf.repo.owner)")!) - strongSelf.present(controller, animated: true) + let url = URL(string: "https://github.com/\(strongSelf.repo.owner)")! + strongSelf.presentSafari(url: url) } } func onMore(sender: UIBarButtonItem) { - let alert = UIAlertController() + let alert = UIAlertController.configured(preferredStyle: .actionSheet) alert.addAction(shareAction(sender: sender)) alert.addAction(safariAction()) alert.addAction(viewOwnerAction()) diff --git a/Classes/Settings/SettingsAccountsViewController.swift b/Classes/Settings/SettingsAccountsViewController.swift index 483c7520..781ffd54 100644 --- a/Classes/Settings/SettingsAccountsViewController.swift +++ b/Classes/Settings/SettingsAccountsViewController.swift @@ -22,7 +22,7 @@ final class SettingsAccountsViewController: UITableViewController, GithubSession // MARK: Private API @IBAction func onAdd(_ sender: Any) { - let alert = UIAlertController( + let alert = UIAlertController.configured( title: NSLocalizedString("Add Account", comment: ""), message: NSLocalizedString("To sign in with another account, please add a new Personal Access Token with user and repo scopes.", comment: ""), preferredStyle: .alert @@ -53,7 +53,7 @@ final class SettingsAccountsViewController: UITableViewController, GithubSession } private func handleError() { - let alert = UIAlertController( + let alert = UIAlertController.configured( title: NSLocalizedString("Error", comment: ""), message: NSLocalizedString("There was an error adding another account. Please try again.", comment: ""), preferredStyle: .alert diff --git a/Classes/Settings/SettingsViewController.swift b/Classes/Settings/SettingsViewController.swift index e7c47b43..521f4558 100644 --- a/Classes/Settings/SettingsViewController.swift +++ b/Classes/Settings/SettingsViewController.swift @@ -42,6 +42,7 @@ final class SettingsViewController: UITableViewController { signatureSwitch.isOn = Signature.enabled updateBadge() + style() NotificationCenter.default.addObserver( self, @@ -90,8 +91,7 @@ final class SettingsViewController: UITableViewController { func onReviewAccess() { guard let url = URL(string: "https://github.com/settings/connections/applications/\(GithubAPI.clientID)") else { fatalError("Should always create GitHub issue URL") } - let safari = SFSafariViewController(url: url) - present(safari, animated: true) + presentSafari(url: url) } func onReportBug() { @@ -100,15 +100,13 @@ final class SettingsViewController: UITableViewController { guard let url = URL(string: "https://github.com/rnystrom/GitHawk/issues/new?body=\(template)") else { fatalError("Should always create GitHub issue URL") } - let safari = SFSafariViewController(url: url) - present(safari, animated: true) + presentSafari(url: url) } func onViewSource() { guard let url = URL(string: "https://github.com/rnystrom/GitHawk/") else { fatalError("Should always create GitHub URL") } - let safari = SFSafariViewController(url: url) - present(safari, animated: true) + presentSafari(url: url) } func onSignOut() { @@ -120,7 +118,7 @@ final class SettingsViewController: UITableViewController { let title = NSLocalizedString("Are you sure?", comment: "") let message = NSLocalizedString("All of your accounts will be signed out. Do you want to continue?", comment: "") - let alert = UIAlertController(title: title, message: message, preferredStyle: .alert) + let alert = UIAlertController.configured(title: title, message: message, preferredStyle: .alert) alert.addAction(cancelAction) alert.addAction(signoutAction) @@ -199,6 +197,11 @@ final class SettingsViewController: UITableViewController { apiStatusLabel.textColor = color } } + + private func style() { + [backgroundFetchSwitch, markReadSwitch, signatureSwitch] + .forEach({ $0.onTintColor = Styles.Colors.Green.medium.color }) + } @IBAction func onSignature(_ sender: Any) { Signature.enabled = signatureSwitch.isOn diff --git a/Classes/View Controllers/CreateProfileViewController.swift b/Classes/View Controllers/CreateProfileViewController.swift index 326d5850..a0080616 100644 --- a/Classes/View Controllers/CreateProfileViewController.swift +++ b/Classes/View Controllers/CreateProfileViewController.swift @@ -11,5 +11,5 @@ import SafariServices func CreateProfileViewController(login: String) -> UIViewController { let url = URL(string: "https://github.com/\(login)")! - return SFSafariViewController(url: url) + return try! SFSafariViewController.configured(with: url) } diff --git a/Classes/View Controllers/UIViewController+Alerts.swift b/Classes/View Controllers/UIViewController+Alerts.swift index f7730b52..ead324c8 100644 --- a/Classes/View Controllers/UIViewController+Alerts.swift +++ b/Classes/View Controllers/UIViewController+Alerts.swift @@ -11,10 +11,19 @@ import UIKit extension UIViewController { func showAlert(title: String, message: String) { - let alert = UIAlertController(title: title, message: message, preferredStyle: .alert) + let alert = UIAlertController.configured(title: title, message: message, preferredStyle: .alert) let action = UIAlertAction(title: Strings.ok, style: .default, handler: nil) alert.addAction(action) present(alert, animated: true, completion: nil) } } + +extension UIAlertController { + + static func configured(title: String? = nil, message: String? = nil, preferredStyle: UIAlertControllerStyle) -> UIAlertController { + let alertController = UIAlertController(title: title, message: message, preferredStyle: preferredStyle) + alertController.view.tintColor = Styles.Colors.Blue.medium.color + return alertController + } +} diff --git a/Classes/View Controllers/UIViewController+Safari.swift b/Classes/View Controllers/UIViewController+Safari.swift index 954fd885..41e5ef77 100644 --- a/Classes/View Controllers/UIViewController+Safari.swift +++ b/Classes/View Controllers/UIViewController+Safari.swift @@ -12,16 +12,8 @@ import SafariServices extension UIViewController { func presentSafari(url: URL) { - let http = "http" - let schemedURL: URL - // handles http and https - if url.scheme?.hasPrefix(http) == true { - schemedURL = url - } else { - guard let u = URL(string: http + "://" + url.absoluteString) else { return } - schemedURL = u - } - present(SFSafariViewController(url: schemedURL), animated: true) + guard let safariViewController = try? SFSafariViewController.configured(with: url) else { return } + present(safariViewController, animated: true) } func presentProfile(login: String) { @@ -44,3 +36,28 @@ extension UIViewController { } } + +extension SFSafariViewController { + + static func configured(with url: URL) throws -> SFSafariViewController { + let http = "http" + let schemedURL: URL + // handles http and https + if url.scheme?.hasPrefix(http) == true { + schemedURL = url + } else { + guard let u = URL(string: http + "://" + url.absoluteString) else { throw URL.Error.failedToCreateURL } + schemedURL = u + } + let safariViewController = SFSafariViewController(url: schemedURL) + safariViewController.preferredControlTintColor = Styles.Colors.Blue.medium.color + return safariViewController + } +} + +extension URL { + + enum Error: Swift.Error { + case failedToCreateURL + } +} diff --git a/Freetime.xcodeproj/project.pbxproj b/Freetime.xcodeproj/project.pbxproj index 2a5030d5..041cef0e 100644 --- a/Freetime.xcodeproj/project.pbxproj +++ b/Freetime.xcodeproj/project.pbxproj @@ -581,7 +581,6 @@ 29A195061EC7601000C3E289 /* Localizable.stringsdict */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.stringsdict; path = Localizable.stringsdict; sourceTree = ""; }; 29A195091EC78B4800C3E289 /* NotificationType+Icon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NotificationType+Icon.swift"; sourceTree = ""; }; 29A1950B1EC7901400C3E289 /* NotificationType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationType.swift; sourceTree = ""; }; - 29A1950D1EC791BD00C3E289 /* LabelPopover.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = LabelPopover.playground; sourceTree = ""; }; 29A195101EC7AC9500C3E289 /* NotificationRepoCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationRepoCell.swift; sourceTree = ""; }; 29A4768D1ED07A23005D0953 /* DateDetailsFormatter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DateDetailsFormatter.swift; sourceTree = ""; }; 29A4769F1ED0E6C6005D0953 /* UIColor+Overlay.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIColor+Overlay.swift"; sourceTree = ""; }; @@ -633,8 +632,6 @@ 29EE443E1F19B2D300B05ED3 /* WriteButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WriteButton.swift; sourceTree = ""; }; 29EE44451F19D5C100B05ED3 /* GithubClient+Issues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "GithubClient+Issues.swift"; sourceTree = ""; }; 29EE44491F19D85800B05ED3 /* ShowErrorStatusBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShowErrorStatusBar.swift; sourceTree = ""; }; - 29F63FD01EC530BD007F55E4 /* Github API.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = "Github API.playground"; sourceTree = ""; }; - 29F63FD11EC530E7007F55E4 /* TextViews.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = TextViews.playground; sourceTree = ""; }; 29F7F05B1F2A751B00F6075D /* IssueResult.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueResult.swift; sourceTree = ""; }; 29F7F05E1F2A839100F6075D /* IssueNeckLoadSectionController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueNeckLoadSectionController.swift; sourceTree = ""; }; 29F7F0601F2A83AA00F6075D /* IssueNeckLoadCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueNeckLoadCell.swift; sourceTree = ""; }; @@ -1085,15 +1082,12 @@ 297AE8571EC0D5C100B44A1F /* Classes */, CF4CC0BFE456879DD6DBC714 /* Frameworks */, 297AE84B1EC0D58A00B44A1F /* FreetimeTests */, - 29F63FD01EC530BD007F55E4 /* Github API.playground */, 292FCB2A1EE0546E0026635E /* gql */, - 29A1950D1EC791BD00C3E289 /* LabelPopover.playground */, 33A455DB21DE4BF7CF5B8C00 /* Pods */, 297AE8351EC0D58A00B44A1F /* Products */, 297AE86D1EC0D5C200B44A1F /* Resources */, 296CD8231F014130001190B9 /* Sample */, 984D9CA81F212ADF00ECEA7F /* Settings.bundle */, - 29F63FD11EC530E7007F55E4 /* TextViews.playground */, ); sourceTree = ""; }; @@ -1687,7 +1681,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "APOLLO_FRAMEWORK_PATH=\"$(eval find $FRAMEWORK_SEARCH_PATHS -name \"Apollo.framework\" -maxdepth 1)\"\n\nif [ -z \"$APOLLO_FRAMEWORK_PATH\" ]; then\necho \"error: Couldn't find Apollo.framework in FRAMEWORK_SEARCH_PATHS; make sure to add the framework to your project.\"\nexit 1\nfi\n\ncd \"${SRCROOT}/gql\"\nTEMP_FILE=$(mktemp)\n\n[[ -f API.swift ]] || touch API.swift # ensure sure file exists\n\n$APOLLO_FRAMEWORK_PATH/check-and-run-apollo-codegen.sh generate $(find . -name '*.graphql') --schema schema.json --output $TEMP_FILE\n\ncmp API.swift $TEMP_FILE || cp $TEMP_FILE API.swift"; + shellScript = "PATH=\"$(npm bin):$PATH\"\n\nAPOLLO_FRAMEWORK_PATH=\"$(eval find $FRAMEWORK_SEARCH_PATHS -name \"Apollo.framework\" -maxdepth 1)\"\n\nif [ -z \"$APOLLO_FRAMEWORK_PATH\" ]; then\necho \"error: Couldn't find Apollo.framework in FRAMEWORK_SEARCH_PATHS; make sure to add the framework to your project.\"\nexit 1\nfi\n\ncd \"${SRCROOT}/gql\"\nTEMP_FILE=$(mktemp)\n\n[[ -f API.swift ]] || touch API.swift # ensure sure file exists\n\n$APOLLO_FRAMEWORK_PATH/check-and-run-apollo-codegen.sh generate $(find . -name '*.graphql') --schema schema.json --output $TEMP_FILE\n\ncmp API.swift $TEMP_FILE || cp $TEMP_FILE API.swift"; }; 2CC988A6FBEAF3F744A53C18 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; @@ -1704,7 +1698,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; 569FA08158547B98DF94DD42 /* [CP] Embed Pods Frameworks */ = { @@ -1768,7 +1762,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; E002D18DA7EA57D5E53A2BBE /* [CP] Copy Pods Resources */ = { diff --git a/Freetime.xcworkspace/contents.xcworkspacedata b/Freetime.xcworkspace/contents.xcworkspacedata index afe7edea..a87c07db 100644 --- a/Freetime.xcworkspace/contents.xcworkspacedata +++ b/Freetime.xcworkspace/contents.xcworkspacedata @@ -1,15 +1,6 @@ - - - - - - diff --git a/MMMarkdown/.gitignore b/Local Pods/MMMarkdown/.gitignore similarity index 100% rename from MMMarkdown/.gitignore rename to Local Pods/MMMarkdown/.gitignore diff --git a/MMMarkdown/.travis.yml b/Local Pods/MMMarkdown/.travis.yml similarity index 100% rename from MMMarkdown/.travis.yml rename to Local Pods/MMMarkdown/.travis.yml diff --git a/MMMarkdown/CLI/Info.plist b/Local Pods/MMMarkdown/CLI/Info.plist similarity index 100% rename from MMMarkdown/CLI/Info.plist rename to Local Pods/MMMarkdown/CLI/Info.plist diff --git a/MMMarkdown/CLI/main.m b/Local Pods/MMMarkdown/CLI/main.m similarity index 100% rename from MMMarkdown/CLI/main.m rename to Local Pods/MMMarkdown/CLI/main.m diff --git a/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.pbxproj b/Local Pods/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.pbxproj similarity index 100% rename from MMMarkdown/CLI/mmmarkdown.xcodeproj/project.pbxproj rename to Local Pods/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.pbxproj diff --git a/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from MMMarkdown/CLI/mmmarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/MMMarkdown/CLI/mmmarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/MMMarkdown/LICENSE.md b/Local Pods/MMMarkdown/LICENSE.md similarity index 100% rename from MMMarkdown/LICENSE.md rename to Local Pods/MMMarkdown/LICENSE.md diff --git a/Local Pods/MMMarkdown/MMMarkdown.podspec b/Local Pods/MMMarkdown/MMMarkdown.podspec new file mode 100755 index 00000000..0e5c2001 --- /dev/null +++ b/Local Pods/MMMarkdown/MMMarkdown.podspec @@ -0,0 +1,16 @@ +@version = "0.5.5" + +Pod::Spec.new do |s| + s.name = "MMMarkdown" + s.version = @version + s.summary = "An Objective-C static library for converting Markdown to HTML." + s.homepage = "https://github.com/mdiep/MMMarkdown" + s.license = { :type => 'MIT', :file => 'LICENSE.md' } + s.author = { "Matt Diephouse" => "matt@diephouse.com" } + s.source = { :git => "https://github.com/mdiep/MMMarkdown.git", :tag => "#{s.version}" } + + s.platform = :ios, "8.0" + s.requires_arc = true + + s.source_files = 'Source/**/*.{h,m}' +end diff --git a/MMMarkdown/MMMarkdown.xcodeproj/project.pbxproj b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.pbxproj similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/project.pbxproj rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.pbxproj diff --git a/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings diff --git a/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (OS X).xcscheme b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (OS X).xcscheme similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (OS X).xcscheme rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (OS X).xcscheme diff --git a/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (iOS).xcscheme b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (iOS).xcscheme similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (iOS).xcscheme rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (iOS).xcscheme diff --git a/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (tvOS).xcscheme b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (tvOS).xcscheme similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (tvOS).xcscheme rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (tvOS).xcscheme diff --git a/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (watchOS).xcscheme b/Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (watchOS).xcscheme similarity index 100% rename from MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (watchOS).xcscheme rename to Local Pods/MMMarkdown/MMMarkdown.xcodeproj/xcshareddata/xcschemes/MMMarkdown (watchOS).xcscheme diff --git a/MMMarkdown/MMMarkdown.xcworkspace/contents.xcworkspacedata b/Local Pods/MMMarkdown/MMMarkdown.xcworkspace/contents.xcworkspacedata similarity index 100% rename from MMMarkdown/MMMarkdown.xcworkspace/contents.xcworkspacedata rename to Local Pods/MMMarkdown/MMMarkdown.xcworkspace/contents.xcworkspacedata diff --git a/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Local Pods/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings similarity index 100% rename from MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings rename to Local Pods/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings diff --git a/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/xcschemes/mmmarkdown.xcscheme b/Local Pods/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/xcschemes/mmmarkdown.xcscheme similarity index 100% rename from MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/xcschemes/mmmarkdown.xcscheme rename to Local Pods/MMMarkdown/MMMarkdown.xcworkspace/xcshareddata/xcschemes/mmmarkdown.xcscheme diff --git a/MMMarkdown/README.md b/Local Pods/MMMarkdown/README.md similarity index 100% rename from MMMarkdown/README.md rename to Local Pods/MMMarkdown/README.md diff --git a/MMMarkdown/RELEASE_NOTES.md b/Local Pods/MMMarkdown/RELEASE_NOTES.md similarity index 100% rename from MMMarkdown/RELEASE_NOTES.md rename to Local Pods/MMMarkdown/RELEASE_NOTES.md diff --git a/MMMarkdown/Source/Info.plist b/Local Pods/MMMarkdown/Source/Info.plist similarity index 100% rename from MMMarkdown/Source/Info.plist rename to Local Pods/MMMarkdown/Source/Info.plist diff --git a/MMMarkdown/Source/MMDocument.h b/Local Pods/MMMarkdown/Source/MMDocument.h similarity index 100% rename from MMMarkdown/Source/MMDocument.h rename to Local Pods/MMMarkdown/Source/MMDocument.h diff --git a/MMMarkdown/Source/MMDocument.m b/Local Pods/MMMarkdown/Source/MMDocument.m similarity index 100% rename from MMMarkdown/Source/MMDocument.m rename to Local Pods/MMMarkdown/Source/MMDocument.m diff --git a/MMMarkdown/Source/MMDocument_Private.h b/Local Pods/MMMarkdown/Source/MMDocument_Private.h similarity index 100% rename from MMMarkdown/Source/MMDocument_Private.h rename to Local Pods/MMMarkdown/Source/MMDocument_Private.h diff --git a/MMMarkdown/Source/MMElement.h b/Local Pods/MMMarkdown/Source/MMElement.h similarity index 100% rename from MMMarkdown/Source/MMElement.h rename to Local Pods/MMMarkdown/Source/MMElement.h diff --git a/MMMarkdown/Source/MMElement.m b/Local Pods/MMMarkdown/Source/MMElement.m similarity index 100% rename from MMMarkdown/Source/MMElement.m rename to Local Pods/MMMarkdown/Source/MMElement.m diff --git a/MMMarkdown/Source/MMGenerator.h b/Local Pods/MMMarkdown/Source/MMGenerator.h similarity index 100% rename from MMMarkdown/Source/MMGenerator.h rename to Local Pods/MMMarkdown/Source/MMGenerator.h diff --git a/MMMarkdown/Source/MMGenerator.m b/Local Pods/MMMarkdown/Source/MMGenerator.m similarity index 100% rename from MMMarkdown/Source/MMGenerator.m rename to Local Pods/MMMarkdown/Source/MMGenerator.m diff --git a/MMMarkdown/Source/MMHTMLParser.h b/Local Pods/MMMarkdown/Source/MMHTMLParser.h similarity index 100% rename from MMMarkdown/Source/MMHTMLParser.h rename to Local Pods/MMMarkdown/Source/MMHTMLParser.h diff --git a/MMMarkdown/Source/MMHTMLParser.m b/Local Pods/MMMarkdown/Source/MMHTMLParser.m similarity index 100% rename from MMMarkdown/Source/MMHTMLParser.m rename to Local Pods/MMMarkdown/Source/MMHTMLParser.m diff --git a/MMMarkdown/Source/MMMarkdown-Prefix.pch b/Local Pods/MMMarkdown/Source/MMMarkdown-Prefix.pch similarity index 100% rename from MMMarkdown/Source/MMMarkdown-Prefix.pch rename to Local Pods/MMMarkdown/Source/MMMarkdown-Prefix.pch diff --git a/MMMarkdown/Source/MMMarkdown.h b/Local Pods/MMMarkdown/Source/MMMarkdown.h similarity index 100% rename from MMMarkdown/Source/MMMarkdown.h rename to Local Pods/MMMarkdown/Source/MMMarkdown.h diff --git a/MMMarkdown/Source/MMMarkdown.m b/Local Pods/MMMarkdown/Source/MMMarkdown.m similarity index 100% rename from MMMarkdown/Source/MMMarkdown.m rename to Local Pods/MMMarkdown/Source/MMMarkdown.m diff --git a/MMMarkdown/Source/MMMarkdownExtensions.h b/Local Pods/MMMarkdown/Source/MMMarkdownExtensions.h similarity index 100% rename from MMMarkdown/Source/MMMarkdownExtensions.h rename to Local Pods/MMMarkdown/Source/MMMarkdownExtensions.h diff --git a/MMMarkdown/Source/MMParser.h b/Local Pods/MMMarkdown/Source/MMParser.h similarity index 100% rename from MMMarkdown/Source/MMParser.h rename to Local Pods/MMMarkdown/Source/MMParser.h diff --git a/MMMarkdown/Source/MMParser.m b/Local Pods/MMMarkdown/Source/MMParser.m similarity index 100% rename from MMMarkdown/Source/MMParser.m rename to Local Pods/MMMarkdown/Source/MMParser.m diff --git a/MMMarkdown/Source/MMScanner.h b/Local Pods/MMMarkdown/Source/MMScanner.h similarity index 100% rename from MMMarkdown/Source/MMScanner.h rename to Local Pods/MMMarkdown/Source/MMScanner.h diff --git a/MMMarkdown/Source/MMScanner.m b/Local Pods/MMMarkdown/Source/MMScanner.m similarity index 100% rename from MMMarkdown/Source/MMScanner.m rename to Local Pods/MMMarkdown/Source/MMScanner.m diff --git a/MMMarkdown/Source/MMSpanParser.h b/Local Pods/MMMarkdown/Source/MMSpanParser.h similarity index 100% rename from MMMarkdown/Source/MMSpanParser.h rename to Local Pods/MMMarkdown/Source/MMSpanParser.h diff --git a/MMMarkdown/Source/MMSpanParser.m b/Local Pods/MMMarkdown/Source/MMSpanParser.m similarity index 100% rename from MMMarkdown/Source/MMSpanParser.m rename to Local Pods/MMMarkdown/Source/MMSpanParser.m diff --git a/MMMarkdown/Tests/GithubMarkdownTests.m b/Local Pods/MMMarkdown/Tests/GithubMarkdownTests.m similarity index 100% rename from MMMarkdown/Tests/GithubMarkdownTests.m rename to Local Pods/MMMarkdown/Tests/GithubMarkdownTests.m diff --git a/MMMarkdown/Tests/Info.plist b/Local Pods/MMMarkdown/Tests/Info.plist similarity index 100% rename from MMMarkdown/Tests/Info.plist rename to Local Pods/MMMarkdown/Tests/Info.plist diff --git a/MMMarkdown/Tests/MMBlockTests.m b/Local Pods/MMMarkdown/Tests/MMBlockTests.m similarity index 100% rename from MMMarkdown/Tests/MMBlockTests.m rename to Local Pods/MMMarkdown/Tests/MMBlockTests.m diff --git a/MMMarkdown/Tests/MMErrorTests.m b/Local Pods/MMMarkdown/Tests/MMErrorTests.m similarity index 100% rename from MMMarkdown/Tests/MMErrorTests.m rename to Local Pods/MMMarkdown/Tests/MMErrorTests.m diff --git a/MMMarkdown/Tests/MMEscapingTests.m b/Local Pods/MMMarkdown/Tests/MMEscapingTests.m similarity index 100% rename from MMMarkdown/Tests/MMEscapingTests.m rename to Local Pods/MMMarkdown/Tests/MMEscapingTests.m diff --git a/MMMarkdown/Tests/MMExtensionTests.m b/Local Pods/MMMarkdown/Tests/MMExtensionTests.m similarity index 100% rename from MMMarkdown/Tests/MMExtensionTests.m rename to Local Pods/MMMarkdown/Tests/MMExtensionTests.m diff --git a/MMMarkdown/Tests/MMHTMLTests.m b/Local Pods/MMMarkdown/Tests/MMHTMLTests.m similarity index 100% rename from MMMarkdown/Tests/MMHTMLTests.m rename to Local Pods/MMMarkdown/Tests/MMHTMLTests.m diff --git a/MMMarkdown/Tests/MMImageTests.m b/Local Pods/MMMarkdown/Tests/MMImageTests.m similarity index 100% rename from MMMarkdown/Tests/MMImageTests.m rename to Local Pods/MMMarkdown/Tests/MMImageTests.m diff --git a/MMMarkdown/Tests/MMLinkTests.m b/Local Pods/MMMarkdown/Tests/MMLinkTests.m similarity index 100% rename from MMMarkdown/Tests/MMLinkTests.m rename to Local Pods/MMMarkdown/Tests/MMLinkTests.m diff --git a/MMMarkdown/Tests/MMListTests.m b/Local Pods/MMMarkdown/Tests/MMListTests.m similarity index 100% rename from MMMarkdown/Tests/MMListTests.m rename to Local Pods/MMMarkdown/Tests/MMListTests.m diff --git a/MMMarkdown/Tests/MMMarkdownTests.h b/Local Pods/MMMarkdown/Tests/MMMarkdownTests.h similarity index 100% rename from MMMarkdown/Tests/MMMarkdownTests.h rename to Local Pods/MMMarkdown/Tests/MMMarkdownTests.h diff --git a/MMMarkdown/Tests/MMMarkdownTests.m b/Local Pods/MMMarkdown/Tests/MMMarkdownTests.m similarity index 100% rename from MMMarkdown/Tests/MMMarkdownTests.m rename to Local Pods/MMMarkdown/Tests/MMMarkdownTests.m diff --git a/MMMarkdown/Tests/MMPHPMarkdownTests.m b/Local Pods/MMMarkdown/Tests/MMPHPMarkdownTests.m similarity index 100% rename from MMMarkdown/Tests/MMPHPMarkdownTests.m rename to Local Pods/MMMarkdown/Tests/MMPHPMarkdownTests.m diff --git a/MMMarkdown/Tests/MMSpanTests.m b/Local Pods/MMMarkdown/Tests/MMSpanTests.m similarity index 100% rename from MMMarkdown/Tests/MMSpanTests.m rename to Local Pods/MMMarkdown/Tests/MMSpanTests.m diff --git a/MMMarkdown/Tests/MMTestCase.h b/Local Pods/MMMarkdown/Tests/MMTestCase.h similarity index 100% rename from MMMarkdown/Tests/MMTestCase.h rename to Local Pods/MMMarkdown/Tests/MMTestCase.h diff --git a/MMMarkdown/Tests/MMTestCase.m b/Local Pods/MMMarkdown/Tests/MMTestCase.m similarity index 100% rename from MMMarkdown/Tests/MMTestCase.m rename to Local Pods/MMMarkdown/Tests/MMTestCase.m diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/MarkdownTest.pl b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/MarkdownTest.pl similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/MarkdownTest.pl rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/MarkdownTest.pl diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Amps and angle encoding.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Auto links.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Backslash escapes.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Horizontal rules.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML (Simple).text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Inline HTML comments.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, inline style.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Links, reference style.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Literal quotes in titles.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Nested blockquotes.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Ordered and unordered lists.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Strong and em together.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tabs.text diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.html b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.html similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.html rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.html diff --git a/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.text b/Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.text similarity index 100% rename from MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.text rename to Local Pods/MMMarkdown/Tests/MarkdownTest_1.0/Tests/Tidyness.text diff --git a/MMMarkdown/Tests/Test.md b/Local Pods/MMMarkdown/Tests/Test.md similarity index 100% rename from MMMarkdown/Tests/Test.md rename to Local Pods/MMMarkdown/Tests/Test.md diff --git a/MMMarkdown/Tests/php-markdown/Backslash escapes.html b/Local Pods/MMMarkdown/Tests/php-markdown/Backslash escapes.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Backslash escapes.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Backslash escapes.html diff --git a/MMMarkdown/Tests/php-markdown/Backslash escapes.text b/Local Pods/MMMarkdown/Tests/php-markdown/Backslash escapes.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Backslash escapes.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Backslash escapes.text diff --git a/MMMarkdown/Tests/php-markdown/Code Spans.html b/Local Pods/MMMarkdown/Tests/php-markdown/Code Spans.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Code Spans.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Code Spans.html diff --git a/MMMarkdown/Tests/php-markdown/Code Spans.text b/Local Pods/MMMarkdown/Tests/php-markdown/Code Spans.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Code Spans.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Code Spans.text diff --git a/MMMarkdown/Tests/php-markdown/Code block in a list item.html b/Local Pods/MMMarkdown/Tests/php-markdown/Code block in a list item.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Code block in a list item.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Code block in a list item.html diff --git a/MMMarkdown/Tests/php-markdown/Code block in a list item.text b/Local Pods/MMMarkdown/Tests/php-markdown/Code block in a list item.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Code block in a list item.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Code block in a list item.text diff --git a/MMMarkdown/Tests/php-markdown/Email auto links.html b/Local Pods/MMMarkdown/Tests/php-markdown/Email auto links.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Email auto links.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Email auto links.html diff --git a/MMMarkdown/Tests/php-markdown/Email auto links.text b/Local Pods/MMMarkdown/Tests/php-markdown/Email auto links.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Email auto links.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Email auto links.text diff --git a/MMMarkdown/Tests/php-markdown/Emphasis.html b/Local Pods/MMMarkdown/Tests/php-markdown/Emphasis.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Emphasis.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Emphasis.html diff --git a/MMMarkdown/Tests/php-markdown/Emphasis.text b/Local Pods/MMMarkdown/Tests/php-markdown/Emphasis.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Emphasis.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Emphasis.text diff --git a/MMMarkdown/Tests/php-markdown/Headers.html b/Local Pods/MMMarkdown/Tests/php-markdown/Headers.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Headers.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Headers.html diff --git a/MMMarkdown/Tests/php-markdown/Headers.text b/Local Pods/MMMarkdown/Tests/php-markdown/Headers.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Headers.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Headers.text diff --git a/MMMarkdown/Tests/php-markdown/Images (Untitled).html b/Local Pods/MMMarkdown/Tests/php-markdown/Images (Untitled).html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Images (Untitled).html rename to Local Pods/MMMarkdown/Tests/php-markdown/Images (Untitled).html diff --git a/MMMarkdown/Tests/php-markdown/Images (Untitled).text b/Local Pods/MMMarkdown/Tests/php-markdown/Images (Untitled).text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Images (Untitled).text rename to Local Pods/MMMarkdown/Tests/php-markdown/Images (Untitled).text diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).html b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML (Simple).html rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).html diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).text b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML (Simple).text rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Simple).text diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML (Span).html b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Span).html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML (Span).html rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Span).html diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML (Span).text b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Span).text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML (Span).text rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML (Span).text diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML comments.html b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML comments.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML comments.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML comments.html diff --git a/MMMarkdown/Tests/php-markdown/Inline HTML comments.text b/Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML comments.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Inline HTML comments.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Inline HTML comments.text diff --git a/MMMarkdown/Tests/php-markdown/Ins & del.html b/Local Pods/MMMarkdown/Tests/php-markdown/Ins & del.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Ins & del.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Ins & del.html diff --git a/MMMarkdown/Tests/php-markdown/Ins & del.text b/Local Pods/MMMarkdown/Tests/php-markdown/Ins & del.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Ins & del.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Ins & del.text diff --git a/MMMarkdown/Tests/php-markdown/Links, inline style.html b/Local Pods/MMMarkdown/Tests/php-markdown/Links, inline style.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Links, inline style.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Links, inline style.html diff --git a/MMMarkdown/Tests/php-markdown/Links, inline style.text b/Local Pods/MMMarkdown/Tests/php-markdown/Links, inline style.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Links, inline style.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Links, inline style.text diff --git a/MMMarkdown/Tests/php-markdown/MD5 Hashes.html b/Local Pods/MMMarkdown/Tests/php-markdown/MD5 Hashes.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/MD5 Hashes.html rename to Local Pods/MMMarkdown/Tests/php-markdown/MD5 Hashes.html diff --git a/MMMarkdown/Tests/php-markdown/MD5 Hashes.text b/Local Pods/MMMarkdown/Tests/php-markdown/MD5 Hashes.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/MD5 Hashes.text rename to Local Pods/MMMarkdown/Tests/php-markdown/MD5 Hashes.text diff --git a/MMMarkdown/Tests/php-markdown/Nesting.html b/Local Pods/MMMarkdown/Tests/php-markdown/Nesting.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Nesting.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Nesting.html diff --git a/MMMarkdown/Tests/php-markdown/Nesting.text b/Local Pods/MMMarkdown/Tests/php-markdown/Nesting.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Nesting.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Nesting.text diff --git a/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.html b/Local Pods/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.html rename to Local Pods/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.html diff --git a/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.text b/Local Pods/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.text rename to Local Pods/MMMarkdown/Tests/php-markdown/PHP-Specific Bugs.text diff --git a/MMMarkdown/Tests/php-markdown/Parens in URL.html b/Local Pods/MMMarkdown/Tests/php-markdown/Parens in URL.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Parens in URL.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Parens in URL.html diff --git a/MMMarkdown/Tests/php-markdown/Parens in URL.text b/Local Pods/MMMarkdown/Tests/php-markdown/Parens in URL.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Parens in URL.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Parens in URL.text diff --git a/MMMarkdown/Tests/php-markdown/Tight blocks.html b/Local Pods/MMMarkdown/Tests/php-markdown/Tight blocks.html similarity index 100% rename from MMMarkdown/Tests/php-markdown/Tight blocks.html rename to Local Pods/MMMarkdown/Tests/php-markdown/Tight blocks.html diff --git a/MMMarkdown/Tests/php-markdown/Tight blocks.text b/Local Pods/MMMarkdown/Tests/php-markdown/Tight blocks.text similarity index 100% rename from MMMarkdown/Tests/php-markdown/Tight blocks.text rename to Local Pods/MMMarkdown/Tests/php-markdown/Tight blocks.text diff --git a/SlackTextViewController/.github/CODE_OF_CONDUCT.md b/Local Pods/SlackTextViewController/.github/CODE_OF_CONDUCT.md similarity index 100% rename from SlackTextViewController/.github/CODE_OF_CONDUCT.md rename to Local Pods/SlackTextViewController/.github/CODE_OF_CONDUCT.md diff --git a/SlackTextViewController/.github/CONTRIBUTING.md b/Local Pods/SlackTextViewController/.github/CONTRIBUTING.md similarity index 100% rename from SlackTextViewController/.github/CONTRIBUTING.md rename to Local Pods/SlackTextViewController/.github/CONTRIBUTING.md diff --git a/SlackTextViewController/.github/ISSUE_TEMPLATE.md b/Local Pods/SlackTextViewController/.github/ISSUE_TEMPLATE.md similarity index 100% rename from SlackTextViewController/.github/ISSUE_TEMPLATE.md rename to Local Pods/SlackTextViewController/.github/ISSUE_TEMPLATE.md diff --git a/SlackTextViewController/.github/PULL_REQUEST_TEMPLATE.md b/Local Pods/SlackTextViewController/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from SlackTextViewController/.github/PULL_REQUEST_TEMPLATE.md rename to Local Pods/SlackTextViewController/.github/PULL_REQUEST_TEMPLATE.md diff --git a/SlackTextViewController/.github/contributing_header_slack.png b/Local Pods/SlackTextViewController/.github/contributing_header_slack.png similarity index 100% rename from SlackTextViewController/.github/contributing_header_slack.png rename to Local Pods/SlackTextViewController/.github/contributing_header_slack.png diff --git a/SlackTextViewController/.gitignore b/Local Pods/SlackTextViewController/.gitignore similarity index 100% rename from SlackTextViewController/.gitignore rename to Local Pods/SlackTextViewController/.gitignore diff --git a/SlackTextViewController/.travis.yml b/Local Pods/SlackTextViewController/.travis.yml similarity index 100% rename from SlackTextViewController/.travis.yml rename to Local Pods/SlackTextViewController/.travis.yml diff --git a/SlackTextViewController/.xctool-args b/Local Pods/SlackTextViewController/.xctool-args similarity index 100% rename from SlackTextViewController/.xctool-args rename to Local Pods/SlackTextViewController/.xctool-args diff --git a/SlackTextViewController/CHANGELOG.md b/Local Pods/SlackTextViewController/CHANGELOG.md similarity index 100% rename from SlackTextViewController/CHANGELOG.md rename to Local Pods/SlackTextViewController/CHANGELOG.md diff --git a/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.h b/Local Pods/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.h diff --git a/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.m b/Local Pods/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Programatic/AppDelegate.m diff --git a/SlackTextViewController/Examples/Messenger-Programatic/Info.plist b/Local Pods/SlackTextViewController/Examples/Messenger-Programatic/Info.plist similarity index 100% rename from SlackTextViewController/Examples/Messenger-Programatic/Info.plist rename to Local Pods/SlackTextViewController/Examples/Messenger-Programatic/Info.plist diff --git a/SlackTextViewController/Examples/Messenger-Programatic/main.m b/Local Pods/SlackTextViewController/Examples/Messenger-Programatic/main.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Programatic/main.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Programatic/main.m diff --git a/SlackTextViewController/Examples/Messenger-Shared/Bridge-Header.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Bridge-Header.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Bridge-Header.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Bridge-Header.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76~ipad.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76~ipad.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76~ipad.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-76~ipad.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/icn_append.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/icn_append.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/icn_append.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_append.imageset/icn_append.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/icn_arrow_down.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/icn_arrow_down.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/icn_arrow_down.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_down.imageset/icn_arrow_down.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/icn_arrow_up.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/icn_arrow_up.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/icn_arrow_up.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_arrow_up.imageset/icn_arrow_up.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/icn_editing.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/icn_editing.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/icn_editing.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_editing.imageset/icn_editing.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/icn_pic.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/icn_pic.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/icn_pic.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_pic.imageset/icn_pic.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/icn_typing.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/icn_typing.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/icn_typing.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_typing.imageset/icn_typing.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/icn_upload.pdf b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/icn_upload.pdf similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/icn_upload.pdf rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/Icons/icn_upload.imageset/icn_upload.pdf diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Contents.json b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Contents.json similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Contents.json rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Contents.json diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-568@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-568@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-568@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-568@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x~landscape.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x~landscape.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x~landscape.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd-plus@2x~landscape.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default@2x.png b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default@2x.png similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default@2x.png rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Images.xcassets/LaunchImage.launchimage/Default@2x.png diff --git a/SlackTextViewController/Examples/Messenger-Shared/Message.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Message.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Message.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Message.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/Message.m b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/Message.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/Message.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/Message.m diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.m b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTableViewCell.m diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageTextView.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.m b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageTextView.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageTextView.m diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageViewController.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.m b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/MessageViewController.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/MessageViewController.m diff --git a/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.h b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.h diff --git a/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.m b/Local Pods/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Shared/TypingIndicatorView.m diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.h b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.h diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.m b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/AppDelegate.m diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/LaunchScreen.xib b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/LaunchScreen.xib similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/LaunchScreen.xib rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/LaunchScreen.xib diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/Main.storyboard b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/Main.storyboard similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/Main.storyboard rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Base.lproj/Main.storyboard diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/Info.plist b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Info.plist similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/Info.plist rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/Info.plist diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.h b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/ViewController.h rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.h diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.m b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/ViewController.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/ViewController.m diff --git a/SlackTextViewController/Examples/Messenger-Storyboard/main.m b/Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/main.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-Storyboard/main.m rename to Local Pods/SlackTextViewController/Examples/Messenger-Storyboard/main.m diff --git a/SlackTextViewController/Examples/Messenger-Swift/AppDelegate.swift b/Local Pods/SlackTextViewController/Examples/Messenger-Swift/AppDelegate.swift similarity index 100% rename from SlackTextViewController/Examples/Messenger-Swift/AppDelegate.swift rename to Local Pods/SlackTextViewController/Examples/Messenger-Swift/AppDelegate.swift diff --git a/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/LaunchScreen.xib b/Local Pods/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/LaunchScreen.xib similarity index 100% rename from SlackTextViewController/Examples/Messenger-Swift/Base.lproj/LaunchScreen.xib rename to Local Pods/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/LaunchScreen.xib diff --git a/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/Main.storyboard b/Local Pods/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/Main.storyboard similarity index 100% rename from SlackTextViewController/Examples/Messenger-Swift/Base.lproj/Main.storyboard rename to Local Pods/SlackTextViewController/Examples/Messenger-Swift/Base.lproj/Main.storyboard diff --git a/SlackTextViewController/Examples/Messenger-Swift/Info.plist b/Local Pods/SlackTextViewController/Examples/Messenger-Swift/Info.plist similarity index 100% rename from SlackTextViewController/Examples/Messenger-Swift/Info.plist rename to Local Pods/SlackTextViewController/Examples/Messenger-Swift/Info.plist diff --git a/SlackTextViewController/Examples/Messenger-Swift/MessageViewController.swift b/Local Pods/SlackTextViewController/Examples/Messenger-Swift/MessageViewController.swift similarity index 100% rename from SlackTextViewController/Examples/Messenger-Swift/MessageViewController.swift rename to Local Pods/SlackTextViewController/Examples/Messenger-Swift/MessageViewController.swift diff --git a/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.h b/Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.h similarity index 100% rename from SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.h rename to Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.h diff --git a/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.m b/Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.m rename to Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/AppDelegate.m diff --git a/SlackTextViewController/Examples/Messenger-iPad-Sheet/Info.plist b/Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/Info.plist similarity index 100% rename from SlackTextViewController/Examples/Messenger-iPad-Sheet/Info.plist rename to Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/Info.plist diff --git a/SlackTextViewController/Examples/Messenger-iPad-Sheet/main.m b/Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/main.m similarity index 100% rename from SlackTextViewController/Examples/Messenger-iPad-Sheet/main.m rename to Local Pods/SlackTextViewController/Examples/Messenger-iPad-Sheet/main.m diff --git a/SlackTextViewController/Examples/Messenger.xcodeproj/project.pbxproj b/Local Pods/SlackTextViewController/Examples/Messenger.xcodeproj/project.pbxproj similarity index 100% rename from SlackTextViewController/Examples/Messenger.xcodeproj/project.pbxproj rename to Local Pods/SlackTextViewController/Examples/Messenger.xcodeproj/project.pbxproj diff --git a/SlackTextViewController/Examples/Messenger.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/SlackTextViewController/Examples/Messenger.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SlackTextViewController/Examples/Messenger.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/SlackTextViewController/Examples/Messenger.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/SlackTextViewController/Examples/Messenger.xcworkspace/contents.xcworkspacedata b/Local Pods/SlackTextViewController/Examples/Messenger.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SlackTextViewController/Examples/Messenger.xcworkspace/contents.xcworkspacedata rename to Local Pods/SlackTextViewController/Examples/Messenger.xcworkspace/contents.xcworkspacedata diff --git a/SlackTextViewController/Examples/Podfile b/Local Pods/SlackTextViewController/Examples/Podfile similarity index 100% rename from SlackTextViewController/Examples/Podfile rename to Local Pods/SlackTextViewController/Examples/Podfile diff --git a/SlackTextViewController/Examples/Podfile.lock b/Local Pods/SlackTextViewController/Examples/Podfile.lock similarity index 100% rename from SlackTextViewController/Examples/Podfile.lock rename to Local Pods/SlackTextViewController/Examples/Podfile.lock diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/LoremIpsum/LoremIpsum.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/LoremIpsum/LoremIpsum.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/LoremIpsum/LoremIpsum.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/LoremIpsum/LoremIpsum.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKInputAccessoryView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKInputAccessoryView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKInputAccessoryView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKInputAccessoryView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInput.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInput.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInput.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInput.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInputbar.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInputbar.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInputbar.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextInputbar.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextViewController.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextViewController.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextViewController.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTextViewController.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorProtocol.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorProtocol.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorProtocol.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorProtocol.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKTypingIndicatorView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKUIConstants.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKUIConstants.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKUIConstants.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/SLKUIConstants.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIResponder+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIResponder+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIResponder+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIResponder+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIScrollView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIScrollView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIScrollView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIScrollView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Private/SlackTextViewController/UIView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/LoremIpsum/LoremIpsum.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/LoremIpsum/LoremIpsum.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/LoremIpsum/LoremIpsum.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/LoremIpsum/LoremIpsum.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKInputAccessoryView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKInputAccessoryView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKInputAccessoryView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKInputAccessoryView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInput.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInput.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInput.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInput.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInputbar.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInputbar.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInputbar.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextInputbar.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextViewController.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextViewController.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextViewController.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTextViewController.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorProtocol.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorProtocol.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorProtocol.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorProtocol.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorView.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorView.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorView.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKTypingIndicatorView.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKUIConstants.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKUIConstants.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKUIConstants.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/SLKUIConstants.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIResponder+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIResponder+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIResponder+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIResponder+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIScrollView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIScrollView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIScrollView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIScrollView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIView+SLKAdditions.h b/Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Examples/Pods/Headers/Public/SlackTextViewController/UIView+SLKAdditions.h diff --git a/SlackTextViewController/Examples/Pods/Local Podspecs/SlackTextViewController.podspec.json b/Local Pods/SlackTextViewController/Examples/Pods/Local Podspecs/SlackTextViewController.podspec.json similarity index 100% rename from SlackTextViewController/Examples/Pods/Local Podspecs/SlackTextViewController.podspec.json rename to Local Pods/SlackTextViewController/Examples/Pods/Local Podspecs/SlackTextViewController.podspec.json diff --git a/SlackTextViewController/Examples/Pods/LoremIpsum/License.markdown b/Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/License.markdown similarity index 100% rename from SlackTextViewController/Examples/Pods/LoremIpsum/License.markdown rename to Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/License.markdown diff --git a/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.h b/Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.h similarity index 100% rename from SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.h rename to Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.h diff --git a/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.m b/Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.m similarity index 100% rename from SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.m rename to Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/LoremIpsum/LoremIpsum.m diff --git a/SlackTextViewController/Examples/Pods/LoremIpsum/Readme.markdown b/Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/Readme.markdown similarity index 100% rename from SlackTextViewController/Examples/Pods/LoremIpsum/Readme.markdown rename to Local Pods/SlackTextViewController/Examples/Pods/LoremIpsum/Readme.markdown diff --git a/SlackTextViewController/Examples/Pods/Manifest.lock b/Local Pods/SlackTextViewController/Examples/Pods/Manifest.lock similarity index 100% rename from SlackTextViewController/Examples/Pods/Manifest.lock rename to Local Pods/SlackTextViewController/Examples/Pods/Manifest.lock diff --git a/SlackTextViewController/Examples/Pods/Pods.xcodeproj/project.pbxproj b/Local Pods/SlackTextViewController/Examples/Pods/Pods.xcodeproj/project.pbxproj similarity index 100% rename from SlackTextViewController/Examples/Pods/Pods.xcodeproj/project.pbxproj rename to Local Pods/SlackTextViewController/Examples/Pods/Pods.xcodeproj/project.pbxproj diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-dummy.m b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-dummy.m similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-dummy.m rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-dummy.m diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-prefix.pch b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-prefix.pch similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-prefix.pch rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum-prefix.pch diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum.xcconfig b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum.xcconfig similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum.xcconfig rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/LoremIpsum/LoremIpsum.xcconfig diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.plist b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.plist similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.plist rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-acknowledgements.plist diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-dummy.m b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-dummy.m similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-dummy.m rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-dummy.m diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-frameworks.sh b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-frameworks.sh similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-frameworks.sh rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-frameworks.sh diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-resources.sh b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-resources.sh similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-resources.sh rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods-resources.sh diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.debug.xcconfig b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.debug.xcconfig similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.debug.xcconfig rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.debug.xcconfig diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.release.xcconfig b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.release.xcconfig similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.release.xcconfig rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/Pods/Pods.release.xcconfig diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch diff --git a/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig b/Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig similarity index 100% rename from SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig rename to Local Pods/SlackTextViewController/Examples/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon.png b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon.png similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon.png rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon.png diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon@2x.png b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon@2x.png similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon@2x.png rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateIcon@2x.png diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateInfo.plist b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateInfo.plist similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateInfo.plist rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/TemplateInfo.plist diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.h b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.h similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.h rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.h diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.m b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.m similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.m rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UICollectionView/___FILEBASENAME___.m diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.h b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.h similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.h rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.h diff --git a/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.m b/Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.m similarity index 100% rename from SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.m rename to Local Pods/SlackTextViewController/File Templates/SlackTextView Controller.xctemplate/UITableView/___FILEBASENAME___.m diff --git a/SlackTextViewController/File Templates/install.sh b/Local Pods/SlackTextViewController/File Templates/install.sh similarity index 100% rename from SlackTextViewController/File Templates/install.sh rename to Local Pods/SlackTextViewController/File Templates/install.sh diff --git a/SlackTextViewController/Gemfile b/Local Pods/SlackTextViewController/Gemfile similarity index 100% rename from SlackTextViewController/Gemfile rename to Local Pods/SlackTextViewController/Gemfile diff --git a/SlackTextViewController/Gemfile.lock b/Local Pods/SlackTextViewController/Gemfile.lock similarity index 100% rename from SlackTextViewController/Gemfile.lock rename to Local Pods/SlackTextViewController/Gemfile.lock diff --git a/SlackTextViewController/LICENSE b/Local Pods/SlackTextViewController/LICENSE similarity index 100% rename from SlackTextViewController/LICENSE rename to Local Pods/SlackTextViewController/LICENSE diff --git a/SlackTextViewController/README.md b/Local Pods/SlackTextViewController/README.md similarity index 100% rename from SlackTextViewController/README.md rename to Local Pods/SlackTextViewController/README.md diff --git a/SlackTextViewController/Screenshots/screenshot_auto-completion.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_auto-completion.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_auto-completion.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_auto-completion.png diff --git a/SlackTextViewController/Screenshots/screenshot_auto-expanding.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_auto-expanding.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_auto-expanding.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_auto-expanding.png diff --git a/SlackTextViewController/Screenshots/screenshot_dynamic-type.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_dynamic-type.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_dynamic-type.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_dynamic-type.png diff --git a/SlackTextViewController/Screenshots/screenshot_edit-mode.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_edit-mode.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_edit-mode.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_edit-mode.png diff --git a/SlackTextViewController/Screenshots/screenshot_markdown-formatting.gif b/Local Pods/SlackTextViewController/Screenshots/screenshot_markdown-formatting.gif similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_markdown-formatting.gif rename to Local Pods/SlackTextViewController/Screenshots/screenshot_markdown-formatting.gif diff --git a/SlackTextViewController/Screenshots/screenshot_markdown-formatting.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_markdown-formatting.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_markdown-formatting.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_markdown-formatting.png diff --git a/SlackTextViewController/Screenshots/screenshot_shake-undo.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_shake-undo.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_shake-undo.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_shake-undo.png diff --git a/SlackTextViewController/Screenshots/screenshot_template.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_template.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_template.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_template.png diff --git a/SlackTextViewController/Screenshots/screenshot_template2.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_template2.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_template2.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_template2.png diff --git a/SlackTextViewController/Screenshots/screenshot_typing-indicator.png b/Local Pods/SlackTextViewController/Screenshots/screenshot_typing-indicator.png similarity index 100% rename from SlackTextViewController/Screenshots/screenshot_typing-indicator.png rename to Local Pods/SlackTextViewController/Screenshots/screenshot_typing-indicator.png diff --git a/SlackTextViewController/Screenshots/slacktextviewcontroller_demo.gif b/Local Pods/SlackTextViewController/Screenshots/slacktextviewcontroller_demo.gif similarity index 100% rename from SlackTextViewController/Screenshots/slacktextviewcontroller_demo.gif rename to Local Pods/SlackTextViewController/Screenshots/slacktextviewcontroller_demo.gif diff --git a/SlackTextViewController/SlackTextViewController.podspec b/Local Pods/SlackTextViewController/SlackTextViewController.podspec similarity index 100% rename from SlackTextViewController/SlackTextViewController.podspec rename to Local Pods/SlackTextViewController/SlackTextViewController.podspec diff --git a/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.h b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.h rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.h diff --git a/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.m b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.m rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/AppDelegate.m diff --git a/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/LaunchScreen.storyboard b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/LaunchScreen.storyboard rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/LaunchScreen.storyboard diff --git a/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/Main.storyboard b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/Main.storyboard similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/Main.storyboard rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Base.lproj/Main.storyboard diff --git a/SlackTextViewController/SlackTextViewController/HostApp/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/HostApp/ViewController.h b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/ViewController.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/ViewController.h rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/ViewController.h diff --git a/SlackTextViewController/SlackTextViewController/HostApp/ViewController.m b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/ViewController.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/ViewController.m rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/ViewController.m diff --git a/SlackTextViewController/SlackTextViewController/HostApp/main.m b/Local Pods/SlackTextViewController/SlackTextViewController/HostApp/main.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/HostApp/main.m rename to Local Pods/SlackTextViewController/SlackTextViewController/HostApp/main.m diff --git a/SlackTextViewController/SlackTextViewController/Podfile b/Local Pods/SlackTextViewController/SlackTextViewController/Podfile similarity index 100% rename from SlackTextViewController/SlackTextViewController/Podfile rename to Local Pods/SlackTextViewController/SlackTextViewController/Podfile diff --git a/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.pbxproj b/Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.pbxproj similarity index 100% rename from SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.pbxproj rename to Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.pbxproj diff --git a/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/xcshareddata/xcschemes/SlackTextViewController.xcscheme b/Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/xcshareddata/xcschemes/SlackTextViewController.xcscheme similarity index 100% rename from SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/xcshareddata/xcschemes/SlackTextViewController.xcscheme rename to Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController.xcodeproj/xcshareddata/xcschemes/SlackTextViewController.xcscheme diff --git a/SlackTextViewController/SlackTextViewController/SlackTextViewController/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/SlackTextViewController/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/SlackTextViewController/SlackTextViewController.h b/Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController/SlackTextViewController.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/SlackTextViewController/SlackTextViewController.h rename to Local Pods/SlackTextViewController/SlackTextViewController/SlackTextViewController/SlackTextViewController.h diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/AutoCompletionTests.m b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/AutoCompletionTests.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/AutoCompletionTests.m rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/AutoCompletionTests.m diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/DisplayTests.m b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/DisplayTests.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/DisplayTests.m rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/DisplayTests.m diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.h b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.h rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.h diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.m b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.m rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Extensions/EXPMatchers+FBSnapshotTestExtensions.m diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/display_the_autocompletion_view_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/display_the_autocompletion_view_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/display_the_autocompletion_view_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/display_the_autocompletion_view_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/filter_results_in_autocompletion_view_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/filter_results_in_autocompletion_view_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/filter_results_in_autocompletion_view_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/filter_results_in_autocompletion_view_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/insert_the_first_autocompletion_item_to_the_text_input_with_prefix_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/insert_the_first_autocompletion_item_to_the_text_input_with_prefix_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/insert_the_first_autocompletion_item_to_the_text_input_with_prefix_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/AutoCompletionTestsSpec/insert_the_first_autocompletion_item_to_the_text_input_with_prefix_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_at_the_bottom_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_at_the_bottom_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_at_the_bottom_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_at_the_bottom_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_on_top_of_the_keyboard_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_on_top_of_the_keyboard_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_on_top_of_the_keyboard_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_on_top_of_the_keyboard_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_2_lines_of_text_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_2_lines_of_text_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_2_lines_of_text_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_2_lines_of_text_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_multiple_lines_of_text_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_multiple_lines_of_text_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_multiple_lines_of_text_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/display_the_text_input_with_multiple_lines_of_text_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/empty_the_text_input_after_hitting_right_button_iphone6_portrait_ios9.2@2x.png b/Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/empty_the_text_input_after_hitting_right_button_iphone6_portrait_ios9.2@2x.png similarity index 100% rename from SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/empty_the_text_input_after_hitting_right_button_iphone6_portrait_ios9.2@2x.png rename to Local Pods/SlackTextViewController/SlackTextViewController/SnapshotTests/ReferenceImages/DisplayTestsSpec/empty_the_text_input_after_hitting_right_button_iphone6_portrait_ios9.2@2x.png diff --git a/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.h b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.h rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.h diff --git a/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.m b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.m rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/NSString+LoremIpsum.m diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.h b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.h rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.h diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.m b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.m rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextInputbarStub.m diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.h b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.h rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.h diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.m b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.m rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewControllerStub.m diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.h b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.h rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.h diff --git a/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.m b/Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.m rename to Local Pods/SlackTextViewController/SlackTextViewController/Stubs/SLKTextViewStub.m diff --git a/SlackTextViewController/SlackTextViewController/UITests/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/UITests/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/UITests/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/UITests/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/UITests/UITests.m b/Local Pods/SlackTextViewController/SlackTextViewController/UITests/UITests.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/UITests/UITests.m rename to Local Pods/SlackTextViewController/SlackTextViewController/UITests/UITests.m diff --git a/SlackTextViewController/SlackTextViewController/UnitTests/FrameworkTests.m b/Local Pods/SlackTextViewController/SlackTextViewController/UnitTests/FrameworkTests.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/UnitTests/FrameworkTests.m rename to Local Pods/SlackTextViewController/SlackTextViewController/UnitTests/FrameworkTests.m diff --git a/SlackTextViewController/SlackTextViewController/UnitTests/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/UnitTests/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/UnitTests/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/UnitTests/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.h b/Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.h similarity index 100% rename from SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.h rename to Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.h diff --git a/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.m b/Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.m rename to Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/AppDelegate.m diff --git a/SlackTextViewController/SlackTextViewController/_Supporting Files/Info.plist b/Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/Info.plist similarity index 100% rename from SlackTextViewController/SlackTextViewController/_Supporting Files/Info.plist rename to Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/Info.plist diff --git a/SlackTextViewController/SlackTextViewController/_Supporting Files/main.m b/Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/main.m similarity index 100% rename from SlackTextViewController/SlackTextViewController/_Supporting Files/main.m rename to Local Pods/SlackTextViewController/SlackTextViewController/_Supporting Files/main.m diff --git a/SlackTextViewController/Source/SLKInputAccessoryView.h b/Local Pods/SlackTextViewController/Source/SLKInputAccessoryView.h similarity index 100% rename from SlackTextViewController/Source/SLKInputAccessoryView.h rename to Local Pods/SlackTextViewController/Source/SLKInputAccessoryView.h diff --git a/SlackTextViewController/Source/SLKInputAccessoryView.m b/Local Pods/SlackTextViewController/Source/SLKInputAccessoryView.m similarity index 100% rename from SlackTextViewController/Source/SLKInputAccessoryView.m rename to Local Pods/SlackTextViewController/Source/SLKInputAccessoryView.m diff --git a/SlackTextViewController/Source/SLKTextInput+Implementation.m b/Local Pods/SlackTextViewController/Source/SLKTextInput+Implementation.m similarity index 100% rename from SlackTextViewController/Source/SLKTextInput+Implementation.m rename to Local Pods/SlackTextViewController/Source/SLKTextInput+Implementation.m diff --git a/SlackTextViewController/Source/SLKTextInput.h b/Local Pods/SlackTextViewController/Source/SLKTextInput.h similarity index 100% rename from SlackTextViewController/Source/SLKTextInput.h rename to Local Pods/SlackTextViewController/Source/SLKTextInput.h diff --git a/SlackTextViewController/Source/SLKTextInputbar.h b/Local Pods/SlackTextViewController/Source/SLKTextInputbar.h similarity index 100% rename from SlackTextViewController/Source/SLKTextInputbar.h rename to Local Pods/SlackTextViewController/Source/SLKTextInputbar.h diff --git a/SlackTextViewController/Source/SLKTextInputbar.m b/Local Pods/SlackTextViewController/Source/SLKTextInputbar.m similarity index 100% rename from SlackTextViewController/Source/SLKTextInputbar.m rename to Local Pods/SlackTextViewController/Source/SLKTextInputbar.m diff --git a/SlackTextViewController/Source/SLKTextView+SLKAdditions.h b/Local Pods/SlackTextViewController/Source/SLKTextView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Source/SLKTextView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Source/SLKTextView+SLKAdditions.h diff --git a/SlackTextViewController/Source/SLKTextView+SLKAdditions.m b/Local Pods/SlackTextViewController/Source/SLKTextView+SLKAdditions.m similarity index 100% rename from SlackTextViewController/Source/SLKTextView+SLKAdditions.m rename to Local Pods/SlackTextViewController/Source/SLKTextView+SLKAdditions.m diff --git a/SlackTextViewController/Source/SLKTextView.h b/Local Pods/SlackTextViewController/Source/SLKTextView.h similarity index 100% rename from SlackTextViewController/Source/SLKTextView.h rename to Local Pods/SlackTextViewController/Source/SLKTextView.h diff --git a/SlackTextViewController/Source/SLKTextView.m b/Local Pods/SlackTextViewController/Source/SLKTextView.m similarity index 100% rename from SlackTextViewController/Source/SLKTextView.m rename to Local Pods/SlackTextViewController/Source/SLKTextView.m diff --git a/SlackTextViewController/Source/SLKTextViewController.h b/Local Pods/SlackTextViewController/Source/SLKTextViewController.h similarity index 100% rename from SlackTextViewController/Source/SLKTextViewController.h rename to Local Pods/SlackTextViewController/Source/SLKTextViewController.h diff --git a/SlackTextViewController/Source/SLKTextViewController.m b/Local Pods/SlackTextViewController/Source/SLKTextViewController.m similarity index 100% rename from SlackTextViewController/Source/SLKTextViewController.m rename to Local Pods/SlackTextViewController/Source/SLKTextViewController.m diff --git a/SlackTextViewController/Source/SLKTypingIndicatorProtocol.h b/Local Pods/SlackTextViewController/Source/SLKTypingIndicatorProtocol.h similarity index 100% rename from SlackTextViewController/Source/SLKTypingIndicatorProtocol.h rename to Local Pods/SlackTextViewController/Source/SLKTypingIndicatorProtocol.h diff --git a/SlackTextViewController/Source/SLKTypingIndicatorView.h b/Local Pods/SlackTextViewController/Source/SLKTypingIndicatorView.h similarity index 100% rename from SlackTextViewController/Source/SLKTypingIndicatorView.h rename to Local Pods/SlackTextViewController/Source/SLKTypingIndicatorView.h diff --git a/SlackTextViewController/Source/SLKTypingIndicatorView.m b/Local Pods/SlackTextViewController/Source/SLKTypingIndicatorView.m similarity index 100% rename from SlackTextViewController/Source/SLKTypingIndicatorView.m rename to Local Pods/SlackTextViewController/Source/SLKTypingIndicatorView.m diff --git a/SlackTextViewController/Source/SLKUIConstants.h b/Local Pods/SlackTextViewController/Source/SLKUIConstants.h similarity index 100% rename from SlackTextViewController/Source/SLKUIConstants.h rename to Local Pods/SlackTextViewController/Source/SLKUIConstants.h diff --git a/SlackTextViewController/Source/UIResponder+SLKAdditions.h b/Local Pods/SlackTextViewController/Source/UIResponder+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Source/UIResponder+SLKAdditions.h rename to Local Pods/SlackTextViewController/Source/UIResponder+SLKAdditions.h diff --git a/SlackTextViewController/Source/UIResponder+SLKAdditions.m b/Local Pods/SlackTextViewController/Source/UIResponder+SLKAdditions.m similarity index 100% rename from SlackTextViewController/Source/UIResponder+SLKAdditions.m rename to Local Pods/SlackTextViewController/Source/UIResponder+SLKAdditions.m diff --git a/SlackTextViewController/Source/UIScrollView+SLKAdditions.h b/Local Pods/SlackTextViewController/Source/UIScrollView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Source/UIScrollView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Source/UIScrollView+SLKAdditions.h diff --git a/SlackTextViewController/Source/UIScrollView+SLKAdditions.m b/Local Pods/SlackTextViewController/Source/UIScrollView+SLKAdditions.m similarity index 100% rename from SlackTextViewController/Source/UIScrollView+SLKAdditions.m rename to Local Pods/SlackTextViewController/Source/UIScrollView+SLKAdditions.m diff --git a/SlackTextViewController/Source/UIView+SLKAdditions.h b/Local Pods/SlackTextViewController/Source/UIView+SLKAdditions.h similarity index 100% rename from SlackTextViewController/Source/UIView+SLKAdditions.h rename to Local Pods/SlackTextViewController/Source/UIView+SLKAdditions.h diff --git a/SlackTextViewController/Source/UIView+SLKAdditions.m b/Local Pods/SlackTextViewController/Source/UIView+SLKAdditions.m similarity index 100% rename from SlackTextViewController/Source/UIView+SLKAdditions.m rename to Local Pods/SlackTextViewController/Source/UIView+SLKAdditions.m diff --git a/SwipeCellKit/.gitignore b/Local Pods/SwipeCellKit/.gitignore similarity index 100% rename from SwipeCellKit/.gitignore rename to Local Pods/SwipeCellKit/.gitignore diff --git a/SwipeCellKit/.swift-version b/Local Pods/SwipeCellKit/.swift-version similarity index 100% rename from SwipeCellKit/.swift-version rename to Local Pods/SwipeCellKit/.swift-version diff --git a/SwipeCellKit/.travis.yml b/Local Pods/SwipeCellKit/.travis.yml similarity index 100% rename from SwipeCellKit/.travis.yml rename to Local Pods/SwipeCellKit/.travis.yml diff --git a/SwipeCellKit/CHANGELOG.md b/Local Pods/SwipeCellKit/CHANGELOG.md similarity index 100% rename from SwipeCellKit/CHANGELOG.md rename to Local Pods/SwipeCellKit/CHANGELOG.md diff --git a/SwipeCellKit/Example/MailExample.xcodeproj/project.pbxproj b/Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/project.pbxproj similarity index 100% rename from SwipeCellKit/Example/MailExample.xcodeproj/project.pbxproj rename to Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/project.pbxproj diff --git a/SwipeCellKit/Example/MailExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SwipeCellKit/Example/MailExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/SwipeCellKit/Example/MailExample.xcodeproj/xcshareddata/xcschemes/MailExample.xcscheme b/Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/xcshareddata/xcschemes/MailExample.xcscheme similarity index 100% rename from SwipeCellKit/Example/MailExample.xcodeproj/xcshareddata/xcschemes/MailExample.xcscheme rename to Local Pods/SwipeCellKit/Example/MailExample.xcodeproj/xcshareddata/xcschemes/MailExample.xcscheme diff --git a/SwipeCellKit/Example/MailExample/ActionDescriptor.swift b/Local Pods/SwipeCellKit/Example/MailExample/ActionDescriptor.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/ActionDescriptor.swift rename to Local Pods/SwipeCellKit/Example/MailExample/ActionDescriptor.swift diff --git a/SwipeCellKit/Example/MailExample/AppDelegate.swift b/Local Pods/SwipeCellKit/Example/MailExample/AppDelegate.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/AppDelegate.swift rename to Local Pods/SwipeCellKit/Example/MailExample/AppDelegate.swift diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/AppIcon.appiconset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/AppIcon.appiconset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Archive Icon.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Archive Icon.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Archive Icon.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Archive Icon.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Archive.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Disclosure.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Disclosure.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Disclosure.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Disclosure.imageset/Disclosure.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/flag-circle.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/flag-circle.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/flag-circle.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag-circle.imageset/flag-circle.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Flag Icon.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Flag Icon.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Flag Icon.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Flag.imageset/Flag Icon.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/more-circle.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/more-circle.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/more-circle.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More-circle.imageset/more-circle.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/More Icon.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/More Icon.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/More Icon.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/More.imageset/More Icon.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/MoreOutline.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/MoreOutline.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/MoreOutline.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/MoreOutline.imageset/MoreOutline.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/read-circle.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/read-circle.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/read-circle.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read-circle.imageset/read-circle.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/read.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/read.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/read.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Read.imageset/read.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/trash-circle.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/trash-circle.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/trash-circle.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash-circle.imageset/trash-circle.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Trash Icon.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Trash Icon.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Trash Icon.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Trash.imageset/Trash Icon.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/unread-circle.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/unread-circle.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/unread-circle.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread-circle.imageset/unread-circle.png diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Contents.json b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Contents.json similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Contents.json rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Contents.json diff --git a/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Unread Icon.png b/Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Unread Icon.png similarity index 100% rename from SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Unread Icon.png rename to Local Pods/SwipeCellKit/Example/MailExample/Assets.xcassets/Unread.imageset/Unread Icon.png diff --git a/SwipeCellKit/Example/MailExample/Buttons.swift b/Local Pods/SwipeCellKit/Example/MailExample/Buttons.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/Buttons.swift rename to Local Pods/SwipeCellKit/Example/MailExample/Buttons.swift diff --git a/SwipeCellKit/Example/MailExample/Data.swift b/Local Pods/SwipeCellKit/Example/MailExample/Data.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/Data.swift rename to Local Pods/SwipeCellKit/Example/MailExample/Data.swift diff --git a/SwipeCellKit/Example/MailExample/IndicatorView.swift b/Local Pods/SwipeCellKit/Example/MailExample/IndicatorView.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/IndicatorView.swift rename to Local Pods/SwipeCellKit/Example/MailExample/IndicatorView.swift diff --git a/SwipeCellKit/Example/MailExample/Info.plist b/Local Pods/SwipeCellKit/Example/MailExample/Info.plist similarity index 100% rename from SwipeCellKit/Example/MailExample/Info.plist rename to Local Pods/SwipeCellKit/Example/MailExample/Info.plist diff --git a/SwipeCellKit/Example/MailExample/LaunchScreen.storyboard b/Local Pods/SwipeCellKit/Example/MailExample/LaunchScreen.storyboard similarity index 100% rename from SwipeCellKit/Example/MailExample/LaunchScreen.storyboard rename to Local Pods/SwipeCellKit/Example/MailExample/LaunchScreen.storyboard diff --git a/SwipeCellKit/Example/MailExample/MailCollectionCell.swift b/Local Pods/SwipeCellKit/Example/MailExample/MailCollectionCell.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/MailCollectionCell.swift rename to Local Pods/SwipeCellKit/Example/MailExample/MailCollectionCell.swift diff --git a/SwipeCellKit/Example/MailExample/MailCollectionViewController.swift b/Local Pods/SwipeCellKit/Example/MailExample/MailCollectionViewController.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/MailCollectionViewController.swift rename to Local Pods/SwipeCellKit/Example/MailExample/MailCollectionViewController.swift diff --git a/SwipeCellKit/Example/MailExample/MailTableCell.swift b/Local Pods/SwipeCellKit/Example/MailExample/MailTableCell.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/MailTableCell.swift rename to Local Pods/SwipeCellKit/Example/MailExample/MailTableCell.swift diff --git a/SwipeCellKit/Example/MailExample/MailViewController.swift b/Local Pods/SwipeCellKit/Example/MailExample/MailViewController.swift similarity index 100% rename from SwipeCellKit/Example/MailExample/MailViewController.swift rename to Local Pods/SwipeCellKit/Example/MailExample/MailViewController.swift diff --git a/SwipeCellKit/Example/MailExample/Main.storyboard b/Local Pods/SwipeCellKit/Example/MailExample/Main.storyboard similarity index 100% rename from SwipeCellKit/Example/MailExample/Main.storyboard rename to Local Pods/SwipeCellKit/Example/MailExample/Main.storyboard diff --git a/SwipeCellKit/Guides/Advanced.md b/Local Pods/SwipeCellKit/Guides/Advanced.md similarity index 100% rename from SwipeCellKit/Guides/Advanced.md rename to Local Pods/SwipeCellKit/Guides/Advanced.md diff --git a/SwipeCellKit/LICENSE b/Local Pods/SwipeCellKit/LICENSE similarity index 100% rename from SwipeCellKit/LICENSE rename to Local Pods/SwipeCellKit/LICENSE diff --git a/SwipeCellKit/Package.swift b/Local Pods/SwipeCellKit/Package.swift similarity index 100% rename from SwipeCellKit/Package.swift rename to Local Pods/SwipeCellKit/Package.swift diff --git a/SwipeCellKit/README.md b/Local Pods/SwipeCellKit/README.md similarity index 100% rename from SwipeCellKit/README.md rename to Local Pods/SwipeCellKit/README.md diff --git a/SwipeCellKit/SHOWCASE.md b/Local Pods/SwipeCellKit/SHOWCASE.md similarity index 100% rename from SwipeCellKit/SHOWCASE.md rename to Local Pods/SwipeCellKit/SHOWCASE.md diff --git a/SwipeCellKit/Screenshots/Expansion-Delegate.gif b/Local Pods/SwipeCellKit/Screenshots/Expansion-Delegate.gif similarity index 100% rename from SwipeCellKit/Screenshots/Expansion-Delegate.gif rename to Local Pods/SwipeCellKit/Screenshots/Expansion-Delegate.gif diff --git a/SwipeCellKit/Screenshots/Expansion-Destructive.gif b/Local Pods/SwipeCellKit/Screenshots/Expansion-Destructive.gif similarity index 100% rename from SwipeCellKit/Screenshots/Expansion-Destructive.gif rename to Local Pods/SwipeCellKit/Screenshots/Expansion-Destructive.gif diff --git a/SwipeCellKit/Screenshots/Expansion-None.gif b/Local Pods/SwipeCellKit/Screenshots/Expansion-None.gif similarity index 100% rename from SwipeCellKit/Screenshots/Expansion-None.gif rename to Local Pods/SwipeCellKit/Screenshots/Expansion-None.gif diff --git a/SwipeCellKit/Screenshots/Expansion-Selection.gif b/Local Pods/SwipeCellKit/Screenshots/Expansion-Selection.gif similarity index 100% rename from SwipeCellKit/Screenshots/Expansion-Selection.gif rename to Local Pods/SwipeCellKit/Screenshots/Expansion-Selection.gif diff --git a/SwipeCellKit/Screenshots/Hero.gif b/Local Pods/SwipeCellKit/Screenshots/Hero.gif similarity index 100% rename from SwipeCellKit/Screenshots/Hero.gif rename to Local Pods/SwipeCellKit/Screenshots/Hero.gif diff --git a/SwipeCellKit/Screenshots/Transition-Border.gif b/Local Pods/SwipeCellKit/Screenshots/Transition-Border.gif similarity index 100% rename from SwipeCellKit/Screenshots/Transition-Border.gif rename to Local Pods/SwipeCellKit/Screenshots/Transition-Border.gif diff --git a/SwipeCellKit/Screenshots/Transition-Delegate.gif b/Local Pods/SwipeCellKit/Screenshots/Transition-Delegate.gif similarity index 100% rename from SwipeCellKit/Screenshots/Transition-Delegate.gif rename to Local Pods/SwipeCellKit/Screenshots/Transition-Delegate.gif diff --git a/SwipeCellKit/Screenshots/Transition-Drag.gif b/Local Pods/SwipeCellKit/Screenshots/Transition-Drag.gif similarity index 100% rename from SwipeCellKit/Screenshots/Transition-Drag.gif rename to Local Pods/SwipeCellKit/Screenshots/Transition-Drag.gif diff --git a/SwipeCellKit/Screenshots/Transition-Reveal.gif b/Local Pods/SwipeCellKit/Screenshots/Transition-Reveal.gif similarity index 100% rename from SwipeCellKit/Screenshots/Transition-Reveal.gif rename to Local Pods/SwipeCellKit/Screenshots/Transition-Reveal.gif diff --git a/SwipeCellKit/Source/Extensions.swift b/Local Pods/SwipeCellKit/Source/Extensions.swift similarity index 100% rename from SwipeCellKit/Source/Extensions.swift rename to Local Pods/SwipeCellKit/Source/Extensions.swift diff --git a/SwipeCellKit/Source/Info.plist b/Local Pods/SwipeCellKit/Source/Info.plist similarity index 100% rename from SwipeCellKit/Source/Info.plist rename to Local Pods/SwipeCellKit/Source/Info.plist diff --git a/SwipeCellKit/Source/SwipeAction.swift b/Local Pods/SwipeCellKit/Source/SwipeAction.swift similarity index 100% rename from SwipeCellKit/Source/SwipeAction.swift rename to Local Pods/SwipeCellKit/Source/SwipeAction.swift diff --git a/SwipeCellKit/Source/SwipeActionButton.swift b/Local Pods/SwipeCellKit/Source/SwipeActionButton.swift similarity index 100% rename from SwipeCellKit/Source/SwipeActionButton.swift rename to Local Pods/SwipeCellKit/Source/SwipeActionButton.swift diff --git a/SwipeCellKit/Source/SwipeActionTransitioning.swift b/Local Pods/SwipeCellKit/Source/SwipeActionTransitioning.swift similarity index 100% rename from SwipeCellKit/Source/SwipeActionTransitioning.swift rename to Local Pods/SwipeCellKit/Source/SwipeActionTransitioning.swift diff --git a/SwipeCellKit/Source/SwipeActionsView.swift b/Local Pods/SwipeCellKit/Source/SwipeActionsView.swift similarity index 100% rename from SwipeCellKit/Source/SwipeActionsView.swift rename to Local Pods/SwipeCellKit/Source/SwipeActionsView.swift diff --git a/SwipeCellKit/Source/SwipeAnimator.swift b/Local Pods/SwipeCellKit/Source/SwipeAnimator.swift similarity index 100% rename from SwipeCellKit/Source/SwipeAnimator.swift rename to Local Pods/SwipeCellKit/Source/SwipeAnimator.swift diff --git a/SwipeCellKit/Source/SwipeCellKit.h b/Local Pods/SwipeCellKit/Source/SwipeCellKit.h similarity index 100% rename from SwipeCellKit/Source/SwipeCellKit.h rename to Local Pods/SwipeCellKit/Source/SwipeCellKit.h diff --git a/SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift b/Local Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift similarity index 100% rename from SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift rename to Local Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift diff --git a/SwipeCellKit/Source/SwipeCollectionViewCell.swift b/Local Pods/SwipeCellKit/Source/SwipeCollectionViewCell.swift similarity index 100% rename from SwipeCellKit/Source/SwipeCollectionViewCell.swift rename to Local Pods/SwipeCellKit/Source/SwipeCollectionViewCell.swift diff --git a/SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift b/Local Pods/SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift similarity index 100% rename from SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift rename to Local Pods/SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift diff --git a/SwipeCellKit/Source/SwipeExpanding.swift b/Local Pods/SwipeCellKit/Source/SwipeExpanding.swift similarity index 100% rename from SwipeCellKit/Source/SwipeExpanding.swift rename to Local Pods/SwipeCellKit/Source/SwipeExpanding.swift diff --git a/SwipeCellKit/Source/SwipeExpansionStyle.swift b/Local Pods/SwipeCellKit/Source/SwipeExpansionStyle.swift similarity index 100% rename from SwipeCellKit/Source/SwipeExpansionStyle.swift rename to Local Pods/SwipeCellKit/Source/SwipeExpansionStyle.swift diff --git a/SwipeCellKit/Source/SwipeFeedback.swift b/Local Pods/SwipeCellKit/Source/SwipeFeedback.swift similarity index 100% rename from SwipeCellKit/Source/SwipeFeedback.swift rename to Local Pods/SwipeCellKit/Source/SwipeFeedback.swift diff --git a/SwipeCellKit/Source/SwipeTableOptions.swift b/Local Pods/SwipeCellKit/Source/SwipeTableOptions.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTableOptions.swift rename to Local Pods/SwipeCellKit/Source/SwipeTableOptions.swift diff --git a/SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift b/Local Pods/SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift rename to Local Pods/SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift diff --git a/SwipeCellKit/Source/SwipeTableViewCell+Display.swift b/Local Pods/SwipeCellKit/Source/SwipeTableViewCell+Display.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTableViewCell+Display.swift rename to Local Pods/SwipeCellKit/Source/SwipeTableViewCell+Display.swift diff --git a/SwipeCellKit/Source/SwipeTableViewCell.swift b/Local Pods/SwipeCellKit/Source/SwipeTableViewCell.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTableViewCell.swift rename to Local Pods/SwipeCellKit/Source/SwipeTableViewCell.swift diff --git a/SwipeCellKit/Source/SwipeTableViewCellDelegate.swift b/Local Pods/SwipeCellKit/Source/SwipeTableViewCellDelegate.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTableViewCellDelegate.swift rename to Local Pods/SwipeCellKit/Source/SwipeTableViewCellDelegate.swift diff --git a/SwipeCellKit/Source/SwipeTransitionLayout.swift b/Local Pods/SwipeCellKit/Source/SwipeTransitionLayout.swift similarity index 100% rename from SwipeCellKit/Source/SwipeTransitionLayout.swift rename to Local Pods/SwipeCellKit/Source/SwipeTransitionLayout.swift diff --git a/SwipeCellKit/Source/Swipeable.swift b/Local Pods/SwipeCellKit/Source/Swipeable.swift similarity index 100% rename from SwipeCellKit/Source/Swipeable.swift rename to Local Pods/SwipeCellKit/Source/Swipeable.swift diff --git a/SwipeCellKit/SwipeCellKit.podspec b/Local Pods/SwipeCellKit/SwipeCellKit.podspec similarity index 100% rename from SwipeCellKit/SwipeCellKit.podspec rename to Local Pods/SwipeCellKit/SwipeCellKit.podspec diff --git a/SwipeCellKit/SwipeCellKit.xcodeproj/project.pbxproj b/Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/project.pbxproj similarity index 100% rename from SwipeCellKit/SwipeCellKit.xcodeproj/project.pbxproj rename to Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/project.pbxproj diff --git a/SwipeCellKit/SwipeCellKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SwipeCellKit/SwipeCellKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/SwipeCellKit/SwipeCellKit.xcodeproj/xcshareddata/xcschemes/SwipeCellKit.xcscheme b/Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/xcshareddata/xcschemes/SwipeCellKit.xcscheme similarity index 100% rename from SwipeCellKit/SwipeCellKit.xcodeproj/xcshareddata/xcschemes/SwipeCellKit.xcscheme rename to Local Pods/SwipeCellKit/SwipeCellKit.xcodeproj/xcshareddata/xcschemes/SwipeCellKit.xcscheme diff --git a/SwipeCellKit/SwipeCellKit.xcworkspace/contents.xcworkspacedata b/Local Pods/SwipeCellKit/SwipeCellKit.xcworkspace/contents.xcworkspacedata similarity index 100% rename from SwipeCellKit/SwipeCellKit.xcworkspace/contents.xcworkspacedata rename to Local Pods/SwipeCellKit/SwipeCellKit.xcworkspace/contents.xcworkspacedata diff --git a/SwipeCellKit/build_docs.sh b/Local Pods/SwipeCellKit/build_docs.sh similarity index 100% rename from SwipeCellKit/build_docs.sh rename to Local Pods/SwipeCellKit/build_docs.sh diff --git a/SwipeCellKit/docs/Classes.html b/Local Pods/SwipeCellKit/docs/Classes.html similarity index 100% rename from SwipeCellKit/docs/Classes.html rename to Local Pods/SwipeCellKit/docs/Classes.html diff --git a/SwipeCellKit/docs/Classes/SwipeAction.html b/Local Pods/SwipeCellKit/docs/Classes/SwipeAction.html similarity index 100% rename from SwipeCellKit/docs/Classes/SwipeAction.html rename to Local Pods/SwipeCellKit/docs/Classes/SwipeAction.html diff --git a/SwipeCellKit/docs/Classes/SwipeTableViewCell.html b/Local Pods/SwipeCellKit/docs/Classes/SwipeTableViewCell.html similarity index 100% rename from SwipeCellKit/docs/Classes/SwipeTableViewCell.html rename to Local Pods/SwipeCellKit/docs/Classes/SwipeTableViewCell.html diff --git a/SwipeCellKit/docs/Enums.html b/Local Pods/SwipeCellKit/docs/Enums.html similarity index 100% rename from SwipeCellKit/docs/Enums.html rename to Local Pods/SwipeCellKit/docs/Enums.html diff --git a/SwipeCellKit/docs/Enums/ExpansionFulfillmentStyle.html b/Local Pods/SwipeCellKit/docs/Enums/ExpansionFulfillmentStyle.html similarity index 100% rename from SwipeCellKit/docs/Enums/ExpansionFulfillmentStyle.html rename to Local Pods/SwipeCellKit/docs/Enums/ExpansionFulfillmentStyle.html diff --git a/SwipeCellKit/docs/Enums/SwipeActionStyle.html b/Local Pods/SwipeCellKit/docs/Enums/SwipeActionStyle.html similarity index 100% rename from SwipeCellKit/docs/Enums/SwipeActionStyle.html rename to Local Pods/SwipeCellKit/docs/Enums/SwipeActionStyle.html diff --git a/SwipeCellKit/docs/Enums/SwipeActionsOrientation.html b/Local Pods/SwipeCellKit/docs/Enums/SwipeActionsOrientation.html similarity index 100% rename from SwipeCellKit/docs/Enums/SwipeActionsOrientation.html rename to Local Pods/SwipeCellKit/docs/Enums/SwipeActionsOrientation.html diff --git a/SwipeCellKit/docs/Enums/SwipeTransitionStyle.html b/Local Pods/SwipeCellKit/docs/Enums/SwipeTransitionStyle.html similarity index 100% rename from SwipeCellKit/docs/Enums/SwipeTransitionStyle.html rename to Local Pods/SwipeCellKit/docs/Enums/SwipeTransitionStyle.html diff --git a/SwipeCellKit/docs/Enums/SwipeVerticalAlignment.html b/Local Pods/SwipeCellKit/docs/Enums/SwipeVerticalAlignment.html similarity index 100% rename from SwipeCellKit/docs/Enums/SwipeVerticalAlignment.html rename to Local Pods/SwipeCellKit/docs/Enums/SwipeVerticalAlignment.html diff --git a/SwipeCellKit/docs/Guides.html b/Local Pods/SwipeCellKit/docs/Guides.html similarity index 100% rename from SwipeCellKit/docs/Guides.html rename to Local Pods/SwipeCellKit/docs/Guides.html diff --git a/SwipeCellKit/docs/Protocols.html b/Local Pods/SwipeCellKit/docs/Protocols.html similarity index 100% rename from SwipeCellKit/docs/Protocols.html rename to Local Pods/SwipeCellKit/docs/Protocols.html diff --git a/SwipeCellKit/docs/Protocols/SwipeActionTransitioning.html b/Local Pods/SwipeCellKit/docs/Protocols/SwipeActionTransitioning.html similarity index 100% rename from SwipeCellKit/docs/Protocols/SwipeActionTransitioning.html rename to Local Pods/SwipeCellKit/docs/Protocols/SwipeActionTransitioning.html diff --git a/SwipeCellKit/docs/Protocols/SwipeExpanding.html b/Local Pods/SwipeCellKit/docs/Protocols/SwipeExpanding.html similarity index 100% rename from SwipeCellKit/docs/Protocols/SwipeExpanding.html rename to Local Pods/SwipeCellKit/docs/Protocols/SwipeExpanding.html diff --git a/SwipeCellKit/docs/Protocols/SwipeTableViewCellDelegate.html b/Local Pods/SwipeCellKit/docs/Protocols/SwipeTableViewCellDelegate.html similarity index 100% rename from SwipeCellKit/docs/Protocols/SwipeTableViewCellDelegate.html rename to Local Pods/SwipeCellKit/docs/Protocols/SwipeTableViewCellDelegate.html diff --git a/SwipeCellKit/docs/Structs.html b/Local Pods/SwipeCellKit/docs/Structs.html similarity index 100% rename from SwipeCellKit/docs/Structs.html rename to Local Pods/SwipeCellKit/docs/Structs.html diff --git a/SwipeCellKit/docs/Structs/ScaleAndAlphaExpansion.html b/Local Pods/SwipeCellKit/docs/Structs/ScaleAndAlphaExpansion.html similarity index 100% rename from SwipeCellKit/docs/Structs/ScaleAndAlphaExpansion.html rename to Local Pods/SwipeCellKit/docs/Structs/ScaleAndAlphaExpansion.html diff --git a/SwipeCellKit/docs/Structs/ScaleTransition.html b/Local Pods/SwipeCellKit/docs/Structs/ScaleTransition.html similarity index 100% rename from SwipeCellKit/docs/Structs/ScaleTransition.html rename to Local Pods/SwipeCellKit/docs/Structs/ScaleTransition.html diff --git a/SwipeCellKit/docs/Structs/SwipeActionTransitioningContext.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeActionTransitioningContext.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeActionTransitioningContext.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeActionTransitioningContext.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionAnimationTimingParameters.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionAnimationTimingParameters.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionAnimationTimingParameters.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionAnimationTimingParameters.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle/CompletionAnimation.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/CompletionAnimation.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle/CompletionAnimation.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/CompletionAnimation.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Target.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Target.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle/Target.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Target.html diff --git a/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Trigger.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Trigger.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeExpansionStyle/Trigger.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeExpansionStyle/Trigger.html diff --git a/SwipeCellKit/docs/Structs/SwipeTableOptions.html b/Local Pods/SwipeCellKit/docs/Structs/SwipeTableOptions.html similarity index 100% rename from SwipeCellKit/docs/Structs/SwipeTableOptions.html rename to Local Pods/SwipeCellKit/docs/Structs/SwipeTableOptions.html diff --git a/SwipeCellKit/docs/advanced.html b/Local Pods/SwipeCellKit/docs/advanced.html similarity index 100% rename from SwipeCellKit/docs/advanced.html rename to Local Pods/SwipeCellKit/docs/advanced.html diff --git a/SwipeCellKit/docs/css/highlight.css b/Local Pods/SwipeCellKit/docs/css/highlight.css similarity index 100% rename from SwipeCellKit/docs/css/highlight.css rename to Local Pods/SwipeCellKit/docs/css/highlight.css diff --git a/SwipeCellKit/docs/css/jazzy.css b/Local Pods/SwipeCellKit/docs/css/jazzy.css similarity index 100% rename from SwipeCellKit/docs/css/jazzy.css rename to Local Pods/SwipeCellKit/docs/css/jazzy.css diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Info.plist b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Info.plist similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Info.plist rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Info.plist diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/carat.png b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/carat.png similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/carat.png rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/carat.png diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/dash.png b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/dash.png similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/dash.png rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/dash.png diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/gh.png b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/gh.png similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/gh.png rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/gh.png diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx diff --git a/SwipeCellKit/docs/docsets/SwipeCellKit.tgz b/Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.tgz similarity index 100% rename from SwipeCellKit/docs/docsets/SwipeCellKit.tgz rename to Local Pods/SwipeCellKit/docs/docsets/SwipeCellKit.tgz diff --git a/SwipeCellKit/docs/img/carat.png b/Local Pods/SwipeCellKit/docs/img/carat.png similarity index 100% rename from SwipeCellKit/docs/img/carat.png rename to Local Pods/SwipeCellKit/docs/img/carat.png diff --git a/SwipeCellKit/docs/img/dash.png b/Local Pods/SwipeCellKit/docs/img/dash.png similarity index 100% rename from SwipeCellKit/docs/img/dash.png rename to Local Pods/SwipeCellKit/docs/img/dash.png diff --git a/SwipeCellKit/docs/img/gh.png b/Local Pods/SwipeCellKit/docs/img/gh.png similarity index 100% rename from SwipeCellKit/docs/img/gh.png rename to Local Pods/SwipeCellKit/docs/img/gh.png diff --git a/SwipeCellKit/docs/index.html b/Local Pods/SwipeCellKit/docs/index.html similarity index 100% rename from SwipeCellKit/docs/index.html rename to Local Pods/SwipeCellKit/docs/index.html diff --git a/SwipeCellKit/docs/js/jazzy.js b/Local Pods/SwipeCellKit/docs/js/jazzy.js similarity index 100% rename from SwipeCellKit/docs/js/jazzy.js rename to Local Pods/SwipeCellKit/docs/js/jazzy.js diff --git a/SwipeCellKit/docs/js/jquery.min.js b/Local Pods/SwipeCellKit/docs/js/jquery.min.js similarity index 100% rename from SwipeCellKit/docs/js/jquery.min.js rename to Local Pods/SwipeCellKit/docs/js/jquery.min.js diff --git a/SwipeCellKit/docs/undocumented.json b/Local Pods/SwipeCellKit/docs/undocumented.json similarity index 100% rename from SwipeCellKit/docs/undocumented.json rename to Local Pods/SwipeCellKit/docs/undocumented.json diff --git a/Github API.playground/Contents.swift b/Playgrounds/Github API.playground/Contents.swift similarity index 100% rename from Github API.playground/Contents.swift rename to Playgrounds/Github API.playground/Contents.swift diff --git a/Github API.playground/contents.xcplayground b/Playgrounds/Github API.playground/contents.xcplayground similarity index 100% rename from Github API.playground/contents.xcplayground rename to Playgrounds/Github API.playground/contents.xcplayground diff --git a/Github API/.config.json b/Playgrounds/Github API/.config.json similarity index 100% rename from Github API/.config.json rename to Playgrounds/Github API/.config.json diff --git a/Github API/comment.json b/Playgrounds/Github API/comment.json similarity index 100% rename from Github API/comment.json rename to Playgrounds/Github API/comment.json diff --git a/Github API/done/authorizations.json b/Playgrounds/Github API/done/authorizations.json similarity index 100% rename from Github API/done/authorizations.json rename to Playgrounds/Github API/done/authorizations.json diff --git a/Github API/event.json b/Playgrounds/Github API/event.json similarity index 100% rename from Github API/event.json rename to Playgrounds/Github API/event.json diff --git a/Github API/examples/instagram-iglistkit-issues-715-comments.json b/Playgrounds/Github API/examples/instagram-iglistkit-issues-715-comments.json similarity index 100% rename from Github API/examples/instagram-iglistkit-issues-715-comments.json rename to Playgrounds/Github API/examples/instagram-iglistkit-issues-715-comments.json diff --git a/Github API/examples/instagram-iglistkit-issues-715-events.json b/Playgrounds/Github API/examples/instagram-iglistkit-issues-715-events.json similarity index 100% rename from Github API/examples/instagram-iglistkit-issues-715-events.json rename to Playgrounds/Github API/examples/instagram-iglistkit-issues-715-events.json diff --git a/Github API/examples/instagram-iglistkit-issues-715.json b/Playgrounds/Github API/examples/instagram-iglistkit-issues-715.json similarity index 100% rename from Github API/examples/instagram-iglistkit-issues-715.json rename to Playgrounds/Github API/examples/instagram-iglistkit-issues-715.json diff --git a/Github API/examples/instagram-iglistkit-pulls-715-comments.json b/Playgrounds/Github API/examples/instagram-iglistkit-pulls-715-comments.json similarity index 100% rename from Github API/examples/instagram-iglistkit-pulls-715-comments.json rename to Playgrounds/Github API/examples/instagram-iglistkit-pulls-715-comments.json diff --git a/Github API/examples/instagram-iglistkit-pulls-715.json b/Playgrounds/Github API/examples/instagram-iglistkit-pulls-715.json similarity index 100% rename from Github API/examples/instagram-iglistkit-pulls-715.json rename to Playgrounds/Github API/examples/instagram-iglistkit-pulls-715.json diff --git a/Github API/examples/notifications.json b/Playgrounds/Github API/examples/notifications.json similarity index 100% rename from Github API/examples/notifications.json rename to Playgrounds/Github API/examples/notifications.json diff --git a/Github API/issue.json b/Playgrounds/Github API/issue.json similarity index 100% rename from Github API/issue.json rename to Playgrounds/Github API/issue.json diff --git a/Github API/notification.json b/Playgrounds/Github API/notification.json similarity index 100% rename from Github API/notification.json rename to Playgrounds/Github API/notification.json diff --git a/Github API/pull_request.json b/Playgrounds/Github API/pull_request.json similarity index 100% rename from Github API/pull_request.json rename to Playgrounds/Github API/pull_request.json diff --git a/Github API/reactions.json b/Playgrounds/Github API/reactions.json similarity index 100% rename from Github API/reactions.json rename to Playgrounds/Github API/reactions.json diff --git a/Github API/repository.json b/Playgrounds/Github API/repository.json similarity index 100% rename from Github API/repository.json rename to Playgrounds/Github API/repository.json diff --git a/Github API/user.json b/Playgrounds/Github API/user.json similarity index 100% rename from Github API/user.json rename to Playgrounds/Github API/user.json diff --git a/LabelPopover.playground/Contents.swift b/Playgrounds/LabelPopover.playground/Contents.swift similarity index 100% rename from LabelPopover.playground/Contents.swift rename to Playgrounds/LabelPopover.playground/Contents.swift diff --git a/LabelPopover.playground/contents.xcplayground b/Playgrounds/LabelPopover.playground/contents.xcplayground similarity index 100% rename from LabelPopover.playground/contents.xcplayground rename to Playgrounds/LabelPopover.playground/contents.xcplayground diff --git a/TextViews.playground/Contents.swift b/Playgrounds/TextViews.playground/Contents.swift similarity index 100% rename from TextViews.playground/Contents.swift rename to Playgrounds/TextViews.playground/Contents.swift diff --git a/TextViews.playground/contents.xcplayground b/Playgrounds/TextViews.playground/contents.xcplayground similarity index 100% rename from TextViews.playground/contents.xcplayground rename to Playgrounds/TextViews.playground/contents.xcplayground diff --git a/Podfile b/Podfile index 26d6e4a1..e24ee662 100644 --- a/Podfile +++ b/Podfile @@ -16,6 +16,9 @@ pod 'NYTPhotoViewer', '~> 1.1.0' pod 'FLEX', '~> 2.0', :configurations => ['Debug', 'TestFlight'] pod 'HTMLString' pod 'Tabman', '~> 1.0' +pod 'SlackTextViewController', :path => 'Local Pods/SlackTextViewController' +pod 'SwipeCellKit', :path => 'Local Pods/SwipeCellKit' +pod 'MMMarkdown', :path => 'Local Pods/MMMarkdown' target 'Freetime' do end diff --git a/Podfile.lock b/Podfile.lock index d64de64c..88e4fa99 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -12,6 +12,7 @@ PODS: - IGListKit/Diffing - IGListKit/Diffing (3.1.1) - JDStatusBarNotification (1.5.5) + - MMMarkdown (0.5.5) - NYTPhotoViewer (1.1.0): - NYTPhotoViewer/AnimatedGifSupport (= 1.1.0) - NYTPhotoViewer/Core (= 1.1.0) @@ -24,7 +25,9 @@ PODS: - SDWebImage (4.0.0): - SDWebImage/Core (= 4.0.0) - SDWebImage/Core (4.0.0) + - SlackTextViewController (1.9.5) - SnapKit (3.2.0) + - SwipeCellKit (1.9.0) - Tabman (1.0.0): - Pageboy (~> 2.0.0) - PureLayout (~> 3.0.0) @@ -38,9 +41,12 @@ DEPENDENCIES: - HTMLString - IGListKit (from `https://github.com/Instagram/IGListKit.git`, branch `master`) - JDStatusBarNotification (~> 1.5.5) + - MMMarkdown (from `Local Pods/MMMarkdown`) - NYTPhotoViewer (~> 1.1.0) - SDWebImage (~> 4.0.0) + - SlackTextViewController (from `Local Pods/SlackTextViewController`) - SnapKit (~> 3.2.0) + - SwipeCellKit (from `Local Pods/SwipeCellKit`) - Tabman (~> 1.0) - TUSafariActivity (~> 1.0.0) @@ -48,6 +54,12 @@ EXTERNAL SOURCES: IGListKit: :branch: master :git: https://github.com/Instagram/IGListKit.git + MMMarkdown: + :path: Local Pods/MMMarkdown + SlackTextViewController: + :path: Local Pods/SlackTextViewController + SwipeCellKit: + :path: Local Pods/SwipeCellKit CHECKOUT OPTIONS: IGListKit: @@ -63,14 +75,17 @@ SPEC CHECKSUMS: HTMLString: 57f421a65b10c4eba75a16c329d1cc82a2167ab3 IGListKit: cb97f405ae43e59fe1da74271e19427ec20d3c07 JDStatusBarNotification: 2b4f29bd68a60d7aa2f190b5265f1ce59c18aaf8 + MMMarkdown: 4cf421144508b319a3c7ba6efaa0dcee8e86d9fd NYTPhotoViewer: e80e8767f3780d2df37c6f72cbab15d6c7232911 Pageboy: a43a4e34fad98ebfa415a5d33cd0389e5005a101 PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd SDWebImage: 76a6348bdc74eb5a55dd08a091ef298e56b55e41 + SlackTextViewController: fbcdadbb8090673f604484ff5b6eb8d77baed42a SnapKit: 1ca44df72cfa543218d177cb8aab029d10d86ea7 + SwipeCellKit: c5199021f354565c955fe8e2f45f79d3b1713e41 Tabman: 128d19d2e5bc4a54d0a899efb4a66715d9706fab TUSafariActivity: afc55a00965377939107ce4fdc7f951f62454546 -PODFILE CHECKSUM: 688f9fa1a162cf53f07605533eed2039360aa430 +PODFILE CHECKSUM: 55989c4cf7b34635fdaa064f2453f62492d50877 -COCOAPODS: 1.3.1 +COCOAPODS: 1.2.1 diff --git a/Pods/Local Podspecs/MMMarkdown.podspec.json b/Pods/Local Podspecs/MMMarkdown.podspec.json new file mode 100644 index 00000000..17b87275 --- /dev/null +++ b/Pods/Local Podspecs/MMMarkdown.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "MMMarkdown", + "version": "0.5.5", + "summary": "An Objective-C static library for converting Markdown to HTML.", + "homepage": "https://github.com/mdiep/MMMarkdown", + "license": { + "type": "MIT", + "file": "LICENSE.md" + }, + "authors": { + "Matt Diephouse": "matt@diephouse.com" + }, + "source": { + "git": "https://github.com/mdiep/MMMarkdown.git", + "tag": "0.5.5" + }, + "platforms": { + "ios": "8.0" + }, + "requires_arc": true, + "source_files": "Source/**/*.{h,m}" +} diff --git a/Pods/Local Podspecs/SlackTextViewController.podspec.json b/Pods/Local Podspecs/SlackTextViewController.podspec.json new file mode 100644 index 00000000..915b4aa2 --- /dev/null +++ b/Pods/Local Podspecs/SlackTextViewController.podspec.json @@ -0,0 +1,25 @@ +{ + "name": "SlackTextViewController", + "version": "1.9.5", + "summary": "A drop-in UIViewController subclass with a custom growing text input and other useful messaging features.", + "description": "Meant to be a replacement for UITableViewController & UICollectionViewController. This library is used in Slack's iOS app. It was built to fit our needs, but is flexible enough to be reused by others wanting to build great messaging apps for iOS.", + "homepage": "https://slack.com/", + "screenshots": "https://github.com/slackhq/SlackTextViewController/raw/master/Screenshots/slacktextviewcontroller_demo.gif", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "Slack Technologies, Inc.": "ios-team@slack-corp.com" + }, + "source": { + "git": "https://github.com/slackhq/SlackTextViewController.git", + "tag": "v1.9.5" + }, + "platforms": { + "ios": "7.0" + }, + "requires_arc": true, + "header_mappings_dir": "Source", + "source_files": "Source/**/*.{h,m}" +} diff --git a/Pods/Local Podspecs/SwipeCellKit.podspec.json b/Pods/Local Podspecs/SwipeCellKit.podspec.json new file mode 100644 index 00000000..e87755d6 --- /dev/null +++ b/Pods/Local Podspecs/SwipeCellKit.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "SwipeCellKit", + "version": "1.9.0", + "license": "MIT", + "summary": "Swipeable UITableViewCell based on the stock Mail.app, implemented in Swift.", + "homepage": "https://github.com/jerkoch/SwipeCellKit", + "documentation_url": "http://www.jerkoch.com/SwipeCellKit/", + "social_media_url": "https://twitter.com/jerkoch", + "authors": "Jeremy Koch", + "source": { + "git": "https://github.com/jerkoch/SwipeCellKit.git", + "tag": "1.9.0" + }, + "source_files": "Source/*.swift", + "platforms": { + "ios": "9.0" + } +} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index d64de64c..88e4fa99 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -12,6 +12,7 @@ PODS: - IGListKit/Diffing - IGListKit/Diffing (3.1.1) - JDStatusBarNotification (1.5.5) + - MMMarkdown (0.5.5) - NYTPhotoViewer (1.1.0): - NYTPhotoViewer/AnimatedGifSupport (= 1.1.0) - NYTPhotoViewer/Core (= 1.1.0) @@ -24,7 +25,9 @@ PODS: - SDWebImage (4.0.0): - SDWebImage/Core (= 4.0.0) - SDWebImage/Core (4.0.0) + - SlackTextViewController (1.9.5) - SnapKit (3.2.0) + - SwipeCellKit (1.9.0) - Tabman (1.0.0): - Pageboy (~> 2.0.0) - PureLayout (~> 3.0.0) @@ -38,9 +41,12 @@ DEPENDENCIES: - HTMLString - IGListKit (from `https://github.com/Instagram/IGListKit.git`, branch `master`) - JDStatusBarNotification (~> 1.5.5) + - MMMarkdown (from `Local Pods/MMMarkdown`) - NYTPhotoViewer (~> 1.1.0) - SDWebImage (~> 4.0.0) + - SlackTextViewController (from `Local Pods/SlackTextViewController`) - SnapKit (~> 3.2.0) + - SwipeCellKit (from `Local Pods/SwipeCellKit`) - Tabman (~> 1.0) - TUSafariActivity (~> 1.0.0) @@ -48,6 +54,12 @@ EXTERNAL SOURCES: IGListKit: :branch: master :git: https://github.com/Instagram/IGListKit.git + MMMarkdown: + :path: Local Pods/MMMarkdown + SlackTextViewController: + :path: Local Pods/SlackTextViewController + SwipeCellKit: + :path: Local Pods/SwipeCellKit CHECKOUT OPTIONS: IGListKit: @@ -63,14 +75,17 @@ SPEC CHECKSUMS: HTMLString: 57f421a65b10c4eba75a16c329d1cc82a2167ab3 IGListKit: cb97f405ae43e59fe1da74271e19427ec20d3c07 JDStatusBarNotification: 2b4f29bd68a60d7aa2f190b5265f1ce59c18aaf8 + MMMarkdown: 4cf421144508b319a3c7ba6efaa0dcee8e86d9fd NYTPhotoViewer: e80e8767f3780d2df37c6f72cbab15d6c7232911 Pageboy: a43a4e34fad98ebfa415a5d33cd0389e5005a101 PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd SDWebImage: 76a6348bdc74eb5a55dd08a091ef298e56b55e41 + SlackTextViewController: fbcdadbb8090673f604484ff5b6eb8d77baed42a SnapKit: 1ca44df72cfa543218d177cb8aab029d10d86ea7 + SwipeCellKit: c5199021f354565c955fe8e2f45f79d3b1713e41 Tabman: 128d19d2e5bc4a54d0a899efb4a66715d9706fab TUSafariActivity: afc55a00965377939107ce4fdc7f951f62454546 -PODFILE CHECKSUM: 688f9fa1a162cf53f07605533eed2039360aa430 +PODFILE CHECKSUM: 55989c4cf7b34635fdaa064f2453f62492d50877 -COCOAPODS: 1.3.1 +COCOAPODS: 1.2.1 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index b04ff3a5..89f09c4f 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -8,574 +8,654 @@ /* Begin PBXBuildFile section */ 00967AA64019E081F8B7417DAB8FE450 /* IGListSectionMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 5589C2CEC018F64599CBBB521E91ADEB /* IGListSectionMap.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0204AF52304D7759E07AF09AC11B9C4C /* UIResponder+SLKAdditions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 628C6C8030FCA9E57E3C15FC3338EFDD /* UIResponder+SLKAdditions.h */; }; 02D9F6E1CBEE7540067E85FEC8D5993D /* NYTPhotoTransitionAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 753649F2D12FAD22EBABF0834D06D16C /* NYTPhotoTransitionAnimator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0343AD6AF5A20D99628DC09F0243EA56 /* Pageboy-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 299D99CC61D795E345F9889C4EC8A3B6 /* Pageboy-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0380009CEA647C7643A34D054C5F2C58 /* ApolloClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEAB6577CCBF41913E174FD4519F1367 /* ApolloClient.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 038010309203D0E6F8C0FB509C942E65 /* Pageboy-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D90B1A4EC71305045CB4E18F641358 /* Pageboy-dummy.m */; }; - 039924CA119B6AE75F9D71687FB1B804 /* ConstraintMakerPriortizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E1BDCBAAACFA20DB48D0D6E1F9C3A0 /* ConstraintMakerPriortizable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 03C5B660E8A36641D71C446248F1B00F /* FLEXUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B43DF3FA4CEF2A7E7E2F2C74308E264 /* FLEXUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0445F4EBF62180BC99C84E08CB13EE33 /* FLEXArgumentInputJSONObjectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0410D75D189D48BC269465AAEBA4B6A8 /* FLEXArgumentInputJSONObjectView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 053DD60D24B555546C0E35A59E74B55F /* TUSafariActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 43344B29F74AEC161E0F48EF2C4F0D27 /* TUSafariActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04D1C3BDE09A55430EAAAA80B4C3D074 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + 04E5AB3303C90112A9D74E93A1D71AF6 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E3B9B99EB4E7D69E5D74DDA3CB60E5 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 06429BEFD78768026DBADBFE7538A713 /* AlamofireNetworkActivityIndicator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BD254EF0D26DDE31A187864717C7B62 /* AlamofireNetworkActivityIndicator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 066EC80C9A0C8DF85CCE4943E721C1C1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 0674CC39DC597E419FF79BC468001C18 /* UIPageViewController+ScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 048FD4EA6A67964C8C5E5CB9139DFFA9 /* UIPageViewController+ScrollView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 06A2C450A12C2C6C31DE3DB5AF8A2903 /* FLEXArgumentInputFontView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2479081C32C7D3F07E0C3794EAC2B7DD /* FLEXArgumentInputFontView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06A92122419707EBD2565ADFB6547576 /* IGListCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 89CE0D1ADF0BB9DD097BC7F8B7E1971C /* IGListCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; 06BDD45CAE24395D4F0368AE4E54D67F /* IGListSectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = E4EB65C83A584289C48777E807B7D9FD /* IGListSectionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0722BBBEE67821C2A097E67F0459F548 /* Pageboy.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E5C9AC56B3BA067BA066C4C1E8480C4 /* Pageboy.framework */; }; + 073A1439B05F013F4CA22657F46AEBAC /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F3CC68FE7DE0CFF1D67026D4BA3120C /* UILayoutSupport+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 075803632524C0F7BDBD80274C1F7245 /* IGListSectionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D3F9E58DB5ABF8FD40C62FCA7D05C3 /* IGListSectionMap.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 07AF0E6E7D3BB3A0851CC8A3619F0094 /* CircularView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 635301747F6878D7D665EFB205BDA90C /* CircularView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0835E17F04F22A9BDAB1BCACCCE03083 /* FLEXImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C64CA42B20A4C8EBC5DE356C275BAAE /* FLEXImagePreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0853C9DDBDFE33AE14979CFF50F0DD9A /* FLEXViewControllerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CF2D7C37DE359B109415B72C65FF28 /* FLEXViewControllerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 08E88DE594FADA7A06C272F44DF50671 /* IGListSingleSectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC522A14A9D7CDC3D3E738219853FF7 /* IGListSingleSectionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0923E242B01346339813EE0DFB46E7AD /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = AB927A1736BC98D4AEACB65778B238C1 /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0972BA42CD2E422FA7723033FBBE1BD2 /* FLEXArgumentInputStringView.h in Headers */ = {isa = PBXBuildFile; fileRef = C114D7224AB616AF0DB1DA1085FDBE66 /* FLEXArgumentInputStringView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09E74D50AF292FD2A2699110BEB09FD7 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4033C93B21031A530B9D68A84F6829 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0AB4E1D2DEA3ED8496648AA43C7EFF2F /* IGListCollectionViewLayout.mm in Sources */ = {isa = PBXBuildFile; fileRef = 03463CE8BFA3A766BC9711BD98C8C8F0 /* IGListCollectionViewLayout.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0B09F701F60923D6647A3E493F8A6D50 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A6F61DE0438C3831DBCFB2F1FFDB276 /* QuartzCore.framework */; }; 0B60C255EFECA62EF2915A60AA0103B7 /* IGListIndexPathResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C09DD6B4FDCF36FBF357DB4762958D /* IGListIndexPathResult.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0BAEA7638562933FE0FF13FCDBFA2AF1 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D3C8C2CB1AE6E816D9079472F077401 /* ConstraintRelation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0BCABD5055E56D1C625199F7E096F6E5 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E3B9B99EB4E7D69E5D74DDA3CB60E5 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0BF5193567A0E3C5C9396AC6ED63B9F6 /* FLEXRealmDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD19D71063CD4D8A679120326B253A70 /* FLEXRealmDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0C033587E3C8B87C16E92D360D32948F /* FLEXWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F40075E395DDF92E13DDCA0AF2F288 /* FLEXWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0C9F7718B2A15ACF5DCB8FF2862A5E /* PureLayout+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3FD62E6CEAED9798E63BC05FF09DB7 /* PureLayout+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C9A681024557C6D14C9AA37548574A2 /* TabmanStaticButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E35260A46CE0937AB888047D52E625C4 /* TabmanStaticButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0CD6D3E825BD83D43ED20B4E865586C6 /* IGListSectionControllerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E0EBF6C3D184B75A86095ED483F033 /* IGListSectionControllerInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0CEE7F43D71D70EC701210923AE35BD5 /* ALView+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 375C2CF3ADE539BE0BF0289B3F3C5E7E /* ALView+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D9C120FB4E07BF9B6CDC74FA6153F33 /* TabmanBlockIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6554345988302AE684EB3A86BEE77492 /* TabmanBlockIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0D11D8AEEBB8E8EE8237B6B66B36057A /* SLKTextViewController.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 83034DE75E78CD02075156B77BEB2C48 /* SLKTextViewController.h */; }; + 0E3C92BC33B0055468E59EB936CFAA7A /* TUSafariActivity.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D423B8028B36AAE8DB78971DFED43701 /* TUSafariActivity.bundle */; }; 0E76E9D7F83376E27107E0782305F18B /* IGListUpdatingDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E11AEDE7678A4D67DAD2921CAB74A8B2 /* IGListUpdatingDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E7791CC9E60640894D8A0F041758993 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C758F605CA5731540DFBF7B7754955F7 /* en.lproj */; }; 0E821B9D4927779FEB36062EE2B91E61 /* FLEXTableColumnHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AEE62AF91CFC9CC8ED36A0AA2B25365 /* FLEXTableColumnHeader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0EE6CFE0C1AA3FCFD6D75B109E2574E1 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9681238CCA103EB88EF83245327F0A7 /* Alamofire-dummy.m */; }; 0F31D3BDAA8093352FAD5E7FDDDFBC86 /* FLEXArgumentInputViewFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9E50DB64187AD6F5C83B80605D2521 /* FLEXArgumentInputViewFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3B59FCA63A2F8A437E485A325ADD3A /* FLEXDictionaryExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89247E11D83687ED3DAB89203CA7E17F /* FLEXDictionaryExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0FB061E94A9CB4CD3E4081722637DC50 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE067453FBC57330D6D49216DB0C0BF /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0FCE26CCEDA363368446263941EA123C /* NSNumber+IGListDiffable.m in Sources */ = {isa = PBXBuildFile; fileRef = 99BA1952CC07D4924AD66DEB96A077F8 /* NSNumber+IGListDiffable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 0FF37C7B5EA08EF1C21F841CA5C6BBC0 /* FLEXNetworkHistoryTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCFF6D61046F4E267CC04183F6AC6C2 /* FLEXNetworkHistoryTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10119422439C3B13CA052B81711ED9BD /* FLEXArgumentInputDateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F13A7F3CACED7A7F84932BD1BF2B053 /* FLEXArgumentInputDateView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 10194ADE860B908E47E51C71FDA600C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 101F7222720CCF1904470A98FCE47A66 /* NYTPhotoCaptionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B490B3283E75CF7AF6D7491FDE18799 /* NYTPhotoCaptionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 108BF802962622C84C188637889217D7 /* Pods-FreetimeTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB0C552B66E613C80318FC7BF89BD9F /* Pods-FreetimeTests-dummy.m */; }; + 109717B523B2A0DE1E7E9BF147B62612 /* SLKTextViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83034DE75E78CD02075156B77BEB2C48 /* SLKTextViewController.h */; }; 10F943434C88ECC617987EBC0BDA972D /* FLEXSetExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D1554DF48507378815D8F4C78FADCEE2 /* FLEXSetExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1101639DFE619D3424401D32E98DFB92 /* TabmanBar+Item.swift in Sources */ = {isa = PBXBuildFile; fileRef = 857CC8B5D5953A4D727047069C6F6938 /* TabmanBar+Item.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 112A0C6D13BBA2459D4B3C31EB4624C5 /* IGListSectionMap+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 594632EC46818F40BC326ECC47A0793F /* IGListSectionMap+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; 114D1A860824205A32B36717FAB5955F /* IGListBatchUpdateState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFD10645EB188049AB9892B2CF776B9 /* IGListBatchUpdateState.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1248670DCCAF0764CE0CD7723233D719 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 95379E486CF76E64B44EB8BEFE3B5F37 /* pt.lproj */; }; 128CC1B0A6569FC21E49B1629567DE32 /* NYTPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D61E7C958A67298CC39C3B541D4837 /* NYTPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12B9D61116D5D5FD50033B71BCF16938 /* FLEXMethodCallingViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C33FE5B85D0E937675C6C83FD61CFD /* FLEXMethodCallingViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12EF9458B1ED6E54A5DB82C0F2FAD5C9 /* NYTPhotoDismissalInteractionController.m in Sources */ = {isa = PBXBuildFile; fileRef = E054E5D38F8DF1CFAE8E584F1FCD24FB /* NYTPhotoDismissalInteractionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 131E6A616A17A5BA5C75FE5DD9FCECB3 /* Tabman.h in Headers */ = {isa = PBXBuildFile; fileRef = 370ABB8C4F7E073586410F97834A89C3 /* Tabman.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 13581AE99B15C90B48B79E8FD7EA421A /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A5C6281FB41057EC52E5025CAC7A35 /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 137737CF843F4EB61B6EC290D259DDA5 /* IGListReloadIndexPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 42493A5F893C0C540855D11EC0C5B434 /* IGListReloadIndexPath.h */; settings = {ATTRIBUTES = (Private, ); }; }; 13A3E15AE52CCB6987903E092086805D /* IGListSingleSectionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B878394E202FBB3534D5819F6C87EB /* IGListSingleSectionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 140B6CB3290C679390B67423FDCAB34E /* FLEXArgumentInputTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D991E3ED79E0C24F9074C101623568 /* FLEXArgumentInputTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 141DA7415A8240A6924A7028BF344B18 /* HTMLString-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8143A6BE889905B07CEBDE156FD43858 /* HTMLString-dummy.m */; }; - 14705E3101F9683384CCF04AB46548EE /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9D0E84F60550F4313739706E0045AB3 /* ConstraintInsetTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 144D526E66EEE88867604FAF441D0370 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFC757DADA282B4A589E39860973D16 /* ConstraintConfig.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 14822C9C8033A54A7ACC5DE27662A1D6 /* Apollo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DF12DE09F8C8C6C984567A208A21EFC4 /* Apollo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14B7EF4D5FFD7734C00C87D645CF49E4 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FF929F0226B6F242FA0A6B68CB6315A /* Constraint.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1573996E26D643DCB9AB85DB3F5EBF27 /* IGListMoveIndexPathInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B803392B29B21EF90D3DAD870C3D49 /* IGListMoveIndexPathInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; 167C82A3E7312A9D6E4994FF39CB8EC5 /* IGListStackedSectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = E686E0001D4DF9DCCCBF3ED16260C614 /* IGListStackedSectionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 16F31531C6FCC3339229739AAFC3B8B7 /* ChevronView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357F8A7253148383778149E17C023794 /* ChevronView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 16D69D05AABE1C6E560B6C0D3BF2A871 /* safari-7@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = A8199F3ABEDC92E1BD084AD83BB3000C /* safari-7@3x.png */; }; + 16F524F506C04167CA3C56FD8A631F04 /* MMGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8204C58E6BB014EEBD0E8BC8D08835BC /* MMGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17D29FB023C94987BA8392B11687E833 /* FLEX-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 906E16D62C97554EC8B6EB24AA88A8F4 /* FLEX-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17F8D47DBFDFC13718B9DA0AA662A674 /* Swipeable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F271CEE43E819B895896C2D73B8377 /* Swipeable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1804E58FD08AED05FF6DCF8EC2E0569C /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4DF401D76AA82DF13880774BAF728A /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; 186539EA86629CB08D3E604C9776AEE7 /* IGListDiff.mm in Sources */ = {isa = PBXBuildFile; fileRef = 630F9E87B1225DA4E71EB0C3CE5521FD /* IGListDiff.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 18876D3FA7FF0EB402AB61E3E908B091 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 455483D714ACCBEFB80F15EFE80F115D /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 18C61690F9CC640240488034D5E15B43 /* SLKTextInput+Implementation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B91AE5FA25913FE517D9ECF6D4532AD /* SLKTextInput+Implementation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1935AF030632F549BF5A225BD0310889 /* IGListIndexSetResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DEFA2FA90F41FE8BFABB7CD411F0080 /* IGListIndexSetResultInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1936B93AF93CBB46EB0B584393EF01CC /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9D666D858F71EFDFFF8D4D4044F1C8FC /* vi.lproj */; }; - 1971759C4890BB516BF38FC7616A3459 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C40BDDBCA76C1FFFFA71C40E0F3997E /* ConstraintLayoutGuide+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 198B5DE06843597CDDA409338F58AF41 /* FLEXIvarEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F66587B709241041F22746643EF04C /* FLEXIvarEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1A1CC87A734F34EB6FC72CAC85470F51 /* TabmanIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A5A8A5F53BB565752B189C0AEB8B3A /* TabmanIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1A1D130A61C16FE74467938D23D9201D /* PageboyViewController+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F053F7C17E8E73C6DB41FF61907C0C6 /* PageboyViewController+Extras.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1A57A63F1F7C1B6D850F31681B8EFADF /* NetworkTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD2D35D690427760C32CBE94F612C569 /* NetworkTransport.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1B776EEBB442BF318391D4A32691FBBD /* IGListArrayUtilsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 705842B618D4D3D1F9E9BB62A52EF81D /* IGListArrayUtilsInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1B98F3B77CBDBC42FB11C512EA6D949A /* TabmanBar+BackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 260DF7E465FCEF4331CF75EC2419F33D /* TabmanBar+BackgroundView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1BAA0E971E7741659DCB95B69C453A89 /* UIView+AutoLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5C49D33BB6F6B73E5866DED93E3AA8 /* UIView+AutoLayout.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1C4F5F7E3FCB5375AECF30524FB0572C /* MMMarkdown.m in Sources */ = {isa = PBXBuildFile; fileRef = AE188429B664DED66E2D7CD3F0155019 /* MMMarkdown.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1C5636834434FBAAED3FB5E7A8E36370 /* IGListCollectionViewLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A0D0F44126E13D33F44D3516E11209 /* IGListCollectionViewLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C613189A6C530EE1A978EAEC2BB6C84 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C4ADAF78D37749A1500D9CDA03258E /* ConstraintInsets.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1CDA4C981A9F60E6DF1203221C56771C /* TabmanDotIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B799AE6F3FADF642F0B3BACED598B1 /* TabmanDotIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1CF91DDED239FC3172F50E29C2349166 /* FLEXKeyboardHelpViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 390EFEFEF9660C8EBEB139110D24C9AD /* FLEXKeyboardHelpViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D6137EC6AEF0323756ECFE13E116E9F /* NYTPhotosOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC745E676C032B7950AF2E691D05511 /* NYTPhotosOverlayView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1DA0C5DAD40D74EFFD2096D44A953B36 /* FLEXFieldEditorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EE3540A1A9B23BB5F3064EED7DADC0B /* FLEXFieldEditorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1DA64B5D53CD0C232940EF432B24F6AA /* NYTPhotoViewerCloseButtonXLandscape@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = FA1ACD1BE446BA004B64C0E6A3F749A0 /* NYTPhotoViewerCloseButtonXLandscape@3x.png */; }; 1E0F5345975CF8C213EE81580097EDEF /* NYTPhotoCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C9EEBA29D725B876B14B642B026C94 /* NYTPhotoCaptionView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1E1864B28460DBFDD830B074DC6BB7DC /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 175000655A878B23CBE6A8B8C4D03C02 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1E6B5E4A9EFB33FB0A7020E44394EB6F /* ApolloStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 765A320CA56A0FCFC7D87EA4357475F9 /* ApolloStore.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1EDE9AD617E4B28EF30CEE2688A2BE15 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3426016BF841FE322940A46DE5D3C5B /* SnapKit-dummy.m */; }; 1EFC431F58308F2FEF8DA07C3AF950E2 /* FLEXArgumentInputViewFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 14EB19DFC8B6C7BB8477863A8B2A2365 /* FLEXArgumentInputViewFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1FA73989CC60BA8173D926C15D47C49E /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CC9B803FC40D107679F6B29E47F652E /* ConstraintItem.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 203EE6616AF512065A60DA107BDD9917 /* TabmanItemColorCrossfadeTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 424076AFC6B32585C47EB254C03667A8 /* TabmanItemColorCrossfadeTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 20A9B7027407F4FDBF278B7AB2781CA6 /* IGListAdapterUpdater.m in Sources */ = {isa = PBXBuildFile; fileRef = D863AD39322995630BEB3C999B8A81E3 /* IGListAdapterUpdater.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 215EB8E12354D9DA55BA763A7382F1AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + 21A5A1DCE8975FE2D9ED9348ECF919FB /* SLKTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B045A09B6F331C4C445760F2A523A7 /* SLKTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 226CA3186F06B27163219661679A4E5B /* NYTPhotoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 24FF0F3F0AE716E5755825CC734D7F7A /* NYTPhotoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 229F50E243AD6011CD72512897804ED5 /* FLEXImageExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 281F5D7ED36E21149A5B1BE0763E0345 /* FLEXImageExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 22B87AE28176EA990D9697B7692C5331 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 12E78F37388AD96B5D231F51BEA8F416 /* fr.lproj */; }; - 23901D12CC3E07E285561FEBABFCB5B7 /* TUSafariActivity-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D51468A122AADB85FFD00A5E804FB471 /* TUSafariActivity-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 233A09A56A348360BF4D578CE4DFAAAD /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F79BFB39F2A8D695EAB3366780B2537 /* ConstraintMakerExtendable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 23AA612A80FF767583F23015D84BE2D6 /* NYTPhotoViewerCloseButtonXLandscape.png in Resources */ = {isa = PBXBuildFile; fileRef = CA05D9E8B4CB02FE78AE20590E2298EB /* NYTPhotoViewerCloseButtonXLandscape.png */; }; - 23FCE36B0A77A886A91C340C85474DAE /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1670DFB952A062D6351D8C137172DA /* ALView+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2416A0633DD24758360190C8CE8AEB4E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 163CFF98962212A97C10027EE4D816E4 /* Validation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2506F8FF7BC14986257D3A1C79A37022 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F79BFB39F2A8D695EAB3366780B2537 /* ConstraintMakerExtendable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 25E4B57BAA728F792CE6FAF388BE0AAB /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9B89ABC26240DDAF80D66B6CACA0FF /* NSArray+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 25101D61F73EB9B8937655DCFE10389B /* SLKTextView.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4211EECC706E2FF8B6A35117F877EFAE /* SLKTextView.h */; }; 263A4BE5D27518082202BF1D740BCFC2 /* FLEXFileBrowserFileOperationController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE7613F9B62A86BCB36AFDFB5E8C85F /* FLEXFileBrowserFileOperationController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2695C5A9BBBACD00AAD264BE4769F272 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 26F43B64D95694B80D49EB3C1D9DEDCE /* IGListSectionController.h in Headers */ = {isa = PBXBuildFile; fileRef = EBCFF8C189A935E5844137204E2A44CA /* IGListSectionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 270D1601368205790E45F82058BDF7D1 /* FLEXTableColumnHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F080AB9A2F0EE0C8A8F9162BE0D1EA /* FLEXTableColumnHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 273B627FA982FE3E47F8B3F9D52844E7 /* UIViewController+PageboyExtras.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7D83E2234105C49DD0C589C9B062D4 /* UIViewController+PageboyExtras.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 287D1DCA86D34E3D5E3C03E819936627 /* FLEXCookiesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 05ACA7FC47C4F59349B5AC3788DF2C0D /* FLEXCookiesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 28BCF213288A3DC3BC3EA48E2435565B /* TabmanItemTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D85348402BF875E3C602B6BC01B0C7 /* TabmanItemTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 28CCBCA00AF49A23D45AFCF8D6C0615B /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B62ED859FD1C5AE00F3063492AA86CD /* LayoutConstraint.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 298CED62A581DA3D5F9C3E8C7F3261DD /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3436BCF68D1058EDF4681E46F329F80 /* ConstraintOffsetTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2B6E76F9D4ACEC94F1DCD974E9ABA981 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 431203D9CE487814EAECE6E197DB4621 /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2967D3CABD9805E1DA7397843BB325DE /* MMSpanParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 48D41D2326F2A31873B6B592AC05B972 /* MMSpanParser.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2A5FB148DAB00CAECD0EB220F836DF09 /* MMHTMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E20B79134C320356F900B66B29AE99EF /* MMHTMLParser.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2B57FD84E67D338D40A388FCA3986DC6 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D538736C1B6CB884409A4F8AB6FE75 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B76D870275B631B3FE208DF99EC5A09 /* TabmanIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC85B32833AF9A23C9889BD32EC00D6 /* TabmanIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2B931C8A1BCB4514ADCD30C1D6F716B6 /* FLEXSystemLogTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BBC72026E114603EF910ED16226BAF4 /* FLEXSystemLogTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2BC840AA1C82B2EC916E3B3C1E960BE3 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A26C67878A91AAED4B54D28BCCAEC5DA /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2BC85DAC879884B451D5B851600DCE6E /* UICollectionView+IGListBatchUpdateData.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D3256FAEEE164BE10D7A384875F27C /* UICollectionView+IGListBatchUpdateData.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2BE1E1C90EA9B7EA2D8F7B44DF4D0C06 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 695EEBD8F51BE08643EC533BB4CBBA4F /* AFError.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2BF4CE6E63D8A7A3E97F293F2FA1C181 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1DA7D501A5162B32146DDFAB90C0AAB /* ConstraintView+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2C46011610FBFD3AF419C5A015B5B103 /* GraphQLResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 245B6448F69DC6961E722F6A07CF8E35 /* GraphQLResult.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C5302D260DCD22F621EF1FA04ECCE56 /* ColorUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543230CC5E7A17CDADDCCB6E2881B274 /* ColorUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2C8D8EA977F5EAA4197626A7F5C9D29A /* safari-7.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BE9982E8BBD59B9AD3FDD4CE85F4A2D /* safari-7.png */; }; 2D0BFDCAB8A14AC7C3D43D197256C454 /* NYTPhotosDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 237F9BFA7CF3D31C518BA7A069FAF992 /* NYTPhotosDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2DE276D39CFDB334E7490457AF72E243 /* IGListBatchContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 8545623A129402E69E02F4CAB2DF8E0A /* IGListBatchContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2E4061195551ED5FB4E776E3B330EF5E /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C4ADAF78D37749A1500D9CDA03258E /* ConstraintInsets.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2E99DB29945CBAA82609C744A9B0B9EF /* IGListBatchUpdateData+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 8322997BFC548EF99B3CEF86C3893646 /* IGListBatchUpdateData+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2F74243ABC4FA927506E0658BC46FAF2 /* SwipeAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86CD16C779DC1AD3E821FB8E3105D817 /* SwipeAction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2F859713603AE98F38ED7FDDB6710083 /* HTTPNetworkTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EBD660FFC988DCE56C9EAA26B5C32ED /* HTTPNetworkTransport.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2FB55D6F36C2FD55FD68763C0B2CC29E /* Record.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77E5503DC03B8BC99E4E48594627270F /* Record.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2FC71D675B9738448CF14D580960320A /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D48CF8B0BD1933199CAB7F43BFB8D41C /* SDWebImageDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 300AAF84B21E4010E49AB22936F840B8 /* safari-7@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = A8199F3ABEDC92E1BD084AD83BB3000C /* safari-7@3x.png */; }; 309A296DE007394BA0680264AFEE37B4 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A491DAFA91147D00FB4D607B0006CD59 /* SessionDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 30EF7339FA8AC50E8B74E67D6C66AAB7 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B73596AAEE69E6D3285219F99E32ABD /* FLAnimatedImage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 310D3F03A388026083F1D54E9E172207 /* NYTPhotoViewer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 371E70DCA1D6172DA12F54C0E46603C2 /* NYTPhotoViewer.bundle */; }; + 310D3F03A388026083F1D54E9E172207 /* NYTPhotoViewer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6E3F05CB909D0998193F1D29DCF9E790 /* NYTPhotoViewer.bundle */; }; 311318FFEF8EE0E1A78899E20F98C69E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A6F61DE0438C3831DBCFB2F1FFDB276 /* QuartzCore.framework */; }; 312CAB7EED6371BE663578A31E83FD3D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 315AE5575AA87D976F9A79CD53423765 /* FLEXRuntimeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F666F1AD3A0FF61DD7258D066C722186 /* FLEXRuntimeUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 315EC92125F6D4046E12F682C644C10F /* TabmanBar+Layout.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA68B8D0A1FD20A10C9B8C5C1C9BA674 /* TabmanBar+Layout.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 31D5F5B5FFA9A7A45A854661DAA8A2F3 /* MMGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F41E67FE1C98249FEDB1C4BC7C8425 /* MMGenerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3200BA7205C711927D746239F0FF294D /* SwipeCollectionViewCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B16D6F25A2770FF876765B508676E28 /* SwipeCollectionViewCellDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 32AC33A2BFA200A4C63072ECE99BC501 /* RecordSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA5A37589A7B55FDE9250B6A26159D8 /* RecordSet.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 32B3F8862B2C1442C9F96C048B7F94A1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 32E3621023E37A0B8D2AC5BA00F5FE5C /* NSString+HTMLString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C41F4668ADE7D66584306C2505B2514 /* NSString+HTMLString.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 339B13D9126153B18072E7D41BEF8245 /* FLEXArgumentInputFontView.m in Sources */ = {isa = PBXBuildFile; fileRef = F52058745A3ED36EC4EF85AACF087C57 /* FLEXArgumentInputFontView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 33CF7AFDDEA5107B926297FE4ACE92F8 /* UIScrollView+Interaction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 467C1A395572261496686D86A44EB014 /* UIScrollView+Interaction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 33F6ABC946A165F8B3C01F26A989778D /* PageboyViewController+Transitioning.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51E681B09CB479C40DC622F8DA540D5D /* PageboyViewController+Transitioning.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 34285D2DE0054128481E6DC0E682F0A9 /* FLEXExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 48D8E19D470FE7CE6B15EFDD4B295E44 /* FLEXExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 348B9D2FCC916B53EB9F5B8C212677BE /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 456A3148481D541885433838BA169966 /* JSON.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3518246A43DA3FCF7009B377934E23C8 /* PureLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B28CCA12DB4D48455977E2266DA72F3 /* PureLayout.framework */; }; 355B5B30C056138FABF1524EDF0E4794 /* AlamofireNetworkActivityIndicator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E911DE60033C0F8C0ACE51961CB50B63 /* AlamofireNetworkActivityIndicator-dummy.m */; }; 3578AF0B78542829981E6C5BE9DFA9A8 /* FLEXWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A98BF0F9164F12E075168A62451CCE7 /* FLEXWindow.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 35807DA02C4E9562EAC371455D95963C /* SwipeTransitionLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8465833AE086109F05C3FBE17A4A7590 /* SwipeTransitionLayout.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 35EBA8F9C20C950BED564F4824300BF2 /* TabmanFixedButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B93DCC706BDA12E4449ACE07DA11996 /* TabmanFixedButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3648981D0112819E6E10D3E9F2DB6A31 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 426401DFEC8B7744001ECE947FAA9F0A /* JDStatusBarStyle.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 371E36E72830C37605D0BDC07CC8AC6D /* SwipeTableViewCell+Display.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52FDDB4B8AFAE7652C4F9FDB5D52A345 /* SwipeTableViewCell+Display.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3744B7E17B7858A468221AA7D68135E7 /* FLEXPropertyEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F62B575F85AA747C03F6285189C5D13B /* FLEXPropertyEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3769BCDB72415C788DEADFE7C49799A7 /* safari-7~iPad.png in Resources */ = {isa = PBXBuildFile; fileRef = F531D1E21FA2363155E17070FEAEA5F6 /* safari-7~iPad.png */; }; 3770B58B67992CE849098B8FF1DF2DBA /* FLAnimatedImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F85056E2AF3D96E48B2797FFE6E015 /* FLAnimatedImage-dummy.m */; }; - 377A991541B6D1E0D21EF39FA0625DFF /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A7F2277FBCEBC33ED78EAEE02BA72E25 /* fi.lproj */; }; + 386B731F38FAC2F314A3EC6B2A5F3501 /* TabmanBar+Insets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ADDB64296489C97565AA18BC22A87A6 /* TabmanBar+Insets.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 387FDC1791EEDFC6251F9F8A5DCB55AC /* FLEXArrayExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9613DB6E6ED8B7107B6F7B04F7CB06 /* FLEXArrayExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 39157BBF444BB3B655D7A7FF2E518B5D /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85674F4220A2B50D354046397008F3C1 /* ConstraintLayoutSupportDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 398E054E33AD50E9172523EDE57AFCA6 /* FLEXHierarchyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BD6C28933015B0E9642A51432CA759D4 /* FLEXHierarchyTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 399438677DFD2C80FB69462C8ECC4363 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 583E18A58616E7166DED41060D6D1E2F /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3A72585D49840BA272BFE709BBA18714 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B47B1E40D80EB5E7C53CA9C17354850 /* UIKit.framework */; }; 3A73282840D1C46F4B916CB2A88CEFA4 /* FLEXManager+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E35B327141829E7B95E151C427367DB /* FLEXManager+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A8116A9F1D8B9EA1A477643E2E53F1C /* IGListDebuggingUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 30415EF6AE9DAB6B69ACAE1343862EB3 /* IGListDebuggingUtilities.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3AF17067CB3FD936B7EE33C48E37B5AB /* TabmanBar+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 999FEE66991B3AE069FE190211829C34 /* TabmanBar+Appearance.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3B286ED34BD6D1823E28B2C8338D8ADF /* TUSafariActivity-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E11AB51BFB5B7FA4E81DD558925C83F5 /* TUSafariActivity-dummy.m */; }; 3B41DC4752E6E186DB95BCAE77332670 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1729E166FEDB19996388D2350DC22BB /* SessionManager.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3BAD2D6B59546500CE27EFEAA95BE6AD /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C8783F6CDDEEE41FDDA682AAA5E8C1 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3BAF957B733FBDFBDEE704AECD4A0122 /* check-and-run-apollo-codegen.sh in Resources */ = {isa = PBXBuildFile; fileRef = 38E8F0286C3C748B8B27E97DEABCEA91 /* check-and-run-apollo-codegen.sh */; }; + 3BF76A5F8A5F9E93001F2EECD6DDE259 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 95379E486CF76E64B44EB8BEFE3B5F37 /* pt.lproj */; }; + 3C1139A5DB367F28BD7B1B32377DE85A /* UIView+SLKAdditions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2C7E975E22ABF61B13EC6653CEC27C8D /* UIView+SLKAdditions.h */; }; 3C553E08116259DAB4295B59FC261B1F /* FLEXNetworkRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = E869DE6C7CB588A6CD0B0B3C6581101B /* FLEXNetworkRecorder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3C6E036B42A2A9BE0C65214B28EDAF93 /* FLEXClassExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EAAA71C4CF383D9ED7726E1100734B /* FLEXClassExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CFD676BA05EAFA08EC99E801E41F441 /* FLEXExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE0A67FE2FBBC8FA587E62BCF3DA2EC /* FLEXExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3D103853D048256E9B34CA828BBD426C /* FLEXHeapEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = E9CD567B50AFE221EDCF666584FE2FEB /* FLEXHeapEnumerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3D7C4607D12DAE6262A72B7737149C6A /* TabmanScrollingButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F415853A673BF8DEC8731263E176A261 /* TabmanScrollingButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3E2BDF165E0603A5A2775327300AD3DD /* IGListAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = C13543861F81731AB8FEF4B588356C3D /* IGListAssert.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3E76D47B47C66223EDA3990099518DE5 /* Fragments.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B4675537AA7C13D3CA4C2C9FCA1FF5A /* Fragments.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3F2D97E0D9619AECDA6BCD3909245D62 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C41C231DCE1DA1CDC55A7B59F08DC468 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3EF8E1DA846882E308A15D7CB42C796A /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6891917A0E29CA5E05B34729B78D06E3 /* es.lproj */; }; 3F5AA810E62E56A29F0B3C6134861187 /* IGListDebugger.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7B73A18318EDF6B21C340555A00605 /* IGListDebugger.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 3F6CA7855A5A106BD1E7698687705BE5 /* IGListDisplayDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 40512DEDD28BF8BF98480B03D163E1A7 /* IGListDisplayDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4067EEA66D7163B8E836F755857EB688 /* TabmanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D6001BEC9B8BE613A40E722290518B4 /* TabmanViewController.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 406B6F78DCE759763CF9DF64F4417250 /* IGListScrollDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D4C8F235121A0432B73219422D6E66 /* IGListScrollDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 40B416DD5C609FD23329851C40C5F0DA /* NSBundle+NYTPhotoViewer.h in Headers */ = {isa = PBXBuildFile; fileRef = B139C81B652CEC086EB3217B195DE409 /* NSBundle+NYTPhotoViewer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4104A0CEE140FBB1450B81D99D8FA060 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = E210176C7E910498B8001EC4E0B22619 /* ConstraintLayoutGuide.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 41429B016F66BE1F39333FCF7DBD5E5C /* TabmanBar+Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2350349BB755F2DD56108A2D86AC4180 /* TabmanBar+Config.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 41B6B3977AFD00932BB05DC99752BD41 /* SLKTextView+SLKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAFCE7EB72D8F8908C9AA16136442F9 /* SLKTextView+SLKAdditions.h */; }; 41BD721D9C09C31D8C0020630DAE78CE /* FLEXNetworkCurlLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EEA7F6D7F1C6241D081B884E00E8BFF /* FLEXNetworkCurlLogger.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 424A76CDC942D01BECCD24E156A4A944 /* ContentViewScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4D1BB753C4920AFC0E8A172C9B31227 /* ContentViewScrollView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4326BDCA79C769D1B47EAF0172E2131D /* ALView+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 375C2CF3ADE539BE0BF0289B3F3C5E7E /* ALView+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4365BB3943212CDE31553BD06A0E84CB /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 51FCC184CE8D7305712DD321725453BE /* NSImage+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 43D402A0EA81B4F002076105A9395516 /* IGListAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 113BCBDE2B4A82BD141CB00176912082 /* IGListAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 43D9F07A4415B0A9A03306DAF45B2EB0 /* SLKTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C5FE7F338BC050257D1CD9BFC47C633A /* SLKTextViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 43E27B24A2EE8406DCE3B5BC0994D02B /* TabmanBlockTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24B81E4ECDA63814C6D9E5106644B6E /* TabmanBlockTabBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4405FC48A61EBE335CAA56075DDEFB10 /* FLEXDefaultsExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A240A1E3FE2E4DEB8221F2BC42EC62DD /* FLEXDefaultsExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45577BE274D2AE8FB333228699A97CB6 /* PositionalUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B497A573CD432520E90A114C01FE5AE /* PositionalUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 44985C4E5F3A9B5918C192D0863B2E17 /* TabmanItemTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D85348402BF875E3C602B6BC01B0C7 /* TabmanItemTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 457F045230370E562411B3F3CFB80DEF /* IGListWorkingRangeHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEC93957524792CCE4EC3179B62426AB /* IGListWorkingRangeHandler.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 45BD290B4D58DE945FA300DB25DDBD40 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = A54D6B326C2A480F6415DCDA59E22E2B /* ConstraintMultiplierTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4617FE34F72250F200088DB23695ACA9 /* TUSafariActivity.bundle in Resources */ = {isa = PBXBuildFile; fileRef = BF77258ADA908235729B37EA62284000 /* TUSafariActivity.bundle */; }; - 46298B5B83F2A6C1FDF1F87DDA0CEA6A /* TabmanClearIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D0A28972BE634B7DB8A34CD6A35BCED /* TabmanClearIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 463BF3AA365B047DFFDF75B4A7D2282A /* TabmanIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC85B32833AF9A23C9889BD32EC00D6 /* TabmanIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 46C6D09C27ADB87CDF02FFA356866A4B /* TabmanScrollingButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F415853A673BF8DEC8731263E176A261 /* TabmanScrollingButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 46F93D89A98296A34912D533D11F03F5 /* TabmanBlockIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6554345988302AE684EB3A86BEE77492 /* TabmanBlockIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 47676B66020FB7D37377D5F612D026E0 /* NYTPhotoTransitionController.h in Headers */ = {isa = PBXBuildFile; fileRef = C8BF70410380407B6785B22CDA192B99 /* NYTPhotoTransitionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47F34D51F1D4522FB60A61BAC4798550 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1670DFB952A062D6351D8C137172DA /* ALView+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 485183A8A433843AC9CE7FD0EA93E415 /* TabmanBar+Item.swift in Sources */ = {isa = PBXBuildFile; fileRef = 857CC8B5D5953A4D727047069C6F6938 /* TabmanBar+Item.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 487B6617BF0E1B7596547003EAD9C4CF /* IGListAdapter+UICollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 32728C3EC144AF639CE7832514223FD3 /* IGListAdapter+UICollectionView.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4935CFD3B0451EE27B2EA02201E5F70B /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04DBB6C15787F3A1535D78713CB4945 /* ConstraintMakerFinalizable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4994ACE3FADBD1B8360C3B8EC245236B /* NYTPhotoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 468EB275D2599B2683CCBAD6D9B73385 /* NYTPhotoViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 49AC0E4B9D8CE4CFCB35BF453347F35A /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1033296CB703596D6A26A5F1BAA536 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4A1422B1EEAE88C4584885F90B70BAC3 /* IGListAdapterDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 753C91689B826A560E778E0C4D6AB127 /* IGListAdapterDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4A14AA7AE4423A4293A822BAD68A8DB1 /* FLEXExplorerToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 80B5D1CF5915349279D94DE0D978D65A /* FLEXExplorerToolbar.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4A208CB9DB3C1047AD5FB71DA5B2CEC9 /* ChevronView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357F8A7253148383778149E17C023794 /* ChevronView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4AA63AB6D76DBAED87DD2F74EB72DBB8 /* Pageboy.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E5C9AC56B3BA067BA066C4C1E8480C4 /* Pageboy.framework */; }; 4ACF1EA15D90736FF463481ED3BADD67 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13C01310C25AEBA97676D7FE846A277D /* ResponseSerialization.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4B1D6A1317B1B3D2D6A188A567BDD1AC /* SwipeCellKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34989DEF0C7C56B9FF58AA94C6A7655D /* SwipeCellKit-dummy.m */; }; + 4B4E845402DCFDCFD27F45FE43186DB4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CA2C13DADA04F5BECDA34B345C69FF /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4BAC16E31D3AEF179D978CB8FBD353AD /* MMMarkdown-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4F3109CB7E14C83C1E50F39DF9BE1A /* MMMarkdown-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4CB59A3D5B420B702B16CE4A8ACA4E62 /* FLEXClassesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C013BE2A62F7D81B0291616AFE7D6F15 /* FLEXClassesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4D501F490972859865A30D03E4640D5F /* Field.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1029E41186AB92D817CFFA80E13E0C34 /* Field.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4D6BE896C1B875BA28A7471AF20A2846 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9FEC42A0B2B152F1979BD2603964F95C /* nl.lproj */; }; - 4DBF1630BDD0CC3B7CE8A370F0C433E2 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 0721A7D39CDA84DF4F3A663578781B49 /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4D837DB2FF29F1B6485CA015305A1DD1 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0ABAFBD4C48DF64F23AE0DC4A355E73 /* ConstraintConstantTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4DA758C164DA509446D15AE5F9D2CF18 /* TabmanBar+Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2350349BB755F2DD56108A2D86AC4180 /* TabmanBar+Config.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4E606E9E2EEA2B70FB4698C877D941A1 /* UICollectionView+IGListBatchUpdateData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B50C5A3C1EBA2981420F90B15A1551B /* UICollectionView+IGListBatchUpdateData.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4EA36D45A662D6D02FA359817F556AA3 /* Pods-Freetime-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C93D84F496EAF73365F33613D09D4E /* Pods-Freetime-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EA761BA012483A0E992280836D8E596 /* TabmanChevronIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42EB555A0477427D41034661A7F1F719 /* TabmanChevronIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4EE3A02B7B4D62BF8A4AC23C35152742 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C758F605CA5731540DFBF7B7754955F7 /* en.lproj */; }; - 4EECC81A10F6A8E364CEAB2913C3186E /* safari@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 14B4BDADEEFFE0CAD71E92FEF33B942B /* safari@3x.png */; }; - 4F135E2B8F1666EB7468EB7176F96ABA /* TabmanBar+Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA19B0EF72B0C5617EC14D6F85CBB7FC /* TabmanBar+Indicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4E8A51E78A476EEE25CF38165E937A53 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF30C6229C2D995F7E8FDDB6D0C314BA /* de.lproj */; }; + 4FE5F6B7A4EC2C634C567D43625DD6B0 /* eu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0D8867F3E0FD6970395EE28E7C14BA04 /* eu.lproj */; }; + 4FEE594C081D07F7A6BE7CBB307C616A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 5043D197E34B4F48E6D725190B539DD9 /* FLEXObjectExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BB1CF6D87E6CD088D9F6F8285DB29864 /* FLEXObjectExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 505140FEC59278EEA0E0B0E8D2E0E57C /* TUSafariActivity-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D51468A122AADB85FFD00A5E804FB471 /* TUSafariActivity-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 507378CAB9B28F32C62ACC70EF9BF3FC /* SwipeFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = 645D17154F4297CC66461A81425B59EC /* SwipeFeedback.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 512676CDCDD56F7364864E4BC48FA60D /* FLEXTableListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 964A16E569572640660CA4AB318840C2 /* FLEXTableListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5222BC42CE7F8AABE4364DBD347AEA98 /* FLEXArgumentInputNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 686FB483E1BD417441D6DA62DD456CD7 /* FLEXArgumentInputNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 529114BB0D366B0CD6D2D04FE8CF50CD /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD0EF6645CE033DCA5ACCA77F9AA497 /* ConstraintAttributes.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 531F06198D469C43F0C4FB4FE634E2EE /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB3FE9260FF62D8DE9711BF3243DCBA /* ConstraintPriority.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 532B1678A66694DB5B18EC5D24E3439C /* FLEXSQLiteDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6983F2008C1802F8E01D13B9077CFA9 /* FLEXSQLiteDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5361823B03C831134697C3C065AEFF6D /* no.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4512FC4CC476A14F47EC8BB813EF1C79 /* no.lproj */; }; 536D27DFD7C661A6C3AB8EA0D79A03D4 /* FLEXFieldEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 354842767C17988A1FA3617C68781DD8 /* FLEXFieldEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 53E1CAAD3ABEDAB620181BCC904AE6BA /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB632AEA72E5B61B931FA8385F811E4 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5399C9623ABAED169BA199CA6CF7A368 /* NSArray+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B088C83DC058343F3F9FEFC09B20CD5 /* NSArray+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 547C4C750541F1F40D12C07092A87689 /* SwipeActionTransitioning.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61D5FA98857B5EA68448C7EF572BF70A /* SwipeActionTransitioning.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 54DC1E2B79B2D529F4B9CCCCF1107609 /* JDStatusBarNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2274620AF2529A54613D48FB472495F9 /* JDStatusBarNotification-dummy.m */; }; 553B3EF69EBFDE50681CC6803B99FECE /* FLEXDictionaryExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 358E6B1693EF9F1B70EB37FBCB74A225 /* FLEXDictionaryExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5574BBFAF7B5EFEF7BBBCE199D83CF0D /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = F04FFEE3F21641B8B61A1A6C6568DF4D /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; 55AF99C9CE116D8F85FDD809E258F5D6 /* IGListKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D538D02AB3BAB852E2AA2B0FF3EF4A21 /* IGListKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5613F53A80DD681F8AE716F5E95732C8 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B87657BE3FC4278860D8D8D3B4F8A77D /* ConstraintLayoutGuideDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 568800ED76D90BF0F67A5D22575343BF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B47B1E40D80EB5E7C53CA9C17354850 /* UIKit.framework */; }; - 56B62F7E3D00BDBB33ED7F6790E56E5C /* PureLayoutDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 39BC0DEDEE10EA9B373163241F5B0816 /* PureLayoutDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; 56C4CA765ACFDCCA63B9233912EA2069 /* FLEXViewExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D48D8709AC17D0129796004BFD339B8 /* FLEXViewExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5768452D5AA0F78372B01AA5F8D987A0 /* JDStatusBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA84E01B196295B5712FDD42AA761E7 /* JDStatusBarView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 58340E41767C1D942B4F94902F030398 /* FLEXMultiColumnTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = E62503F92B2F65D1CD26D3284FD18604 /* FLEXMultiColumnTableView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 588440304054B92313E98E13D79E675A /* UIView+SLKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7E975E22ABF61B13EC6653CEC27C8D /* UIView+SLKAdditions.h */; }; 589C4FBDA8B5B44FBA0065B5924F5B6C /* FLEXLayerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0FB00DD78267B859D001F3F57B170F /* FLEXLayerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58CA1B7C24C19C7F5E5CB2470A248BF8 /* IGListBatchUpdates.h in Headers */ = {isa = PBXBuildFile; fileRef = 603709008EE50B6B0CE1A82FD1051F77 /* IGListBatchUpdates.h */; settings = {ATTRIBUTES = (Private, ); }; }; 58E3133A0327124D049DAFDBCAB7543A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; - 591967255F9BA6816AB6CA14C74CFD7F /* TabmanBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB1708648607CE79DE814292E4975E0 /* TabmanBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 58EC3058E6930A4E716A981B5F0DC945 /* MMDocument.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F8032EA0897F5A026781F697D5325F /* MMDocument.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5945001DDF5A59DE7D5B69962644110A /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = F72502D9675A8E91A7B537DBB57C87AD /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5974EB61847F881FDDF1C8596C71A943 /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D48CF8B0BD1933199CAB7F43BFB8D41C /* SDWebImageDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5A7CF138C1CD7615C40061BD74E88F49 /* FLEXDefaultEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 955A8CA71F5A7F1AD5D48F294F4B8F60 /* FLEXDefaultEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5ADCABBD3C5F98CC35E506CFEC9495AC /* FLEXSystemLogTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5507D9A9013358910B3E34E5DFAD50EB /* FLEXSystemLogTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5B264AFB6F080FF6A52FECCDE396F0D0 /* IGListBatchUpdates.m in Sources */ = {isa = PBXBuildFile; fileRef = 8479EFD63A03F2B177D72537D6A6746A /* IGListBatchUpdates.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5B51401E660DC0A72C594000FA71E7E4 /* MMDocument_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B07F4EB7EE85E6CDDD2A9BBCF8D98E /* MMDocument_Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BEC6A8B643740ADE86392698D8856B9 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF12667C1040A6F1DE47B2CF0A4E6BEE /* Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5C00F369D682D649A787BBC7FFB5F775 /* PageboyViewController+ScrollDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57322E1272B709ED471193888FA8FEC1 /* PageboyViewController+ScrollDetection.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5C5DC88466B3CD9C1B072E77885F4C2F /* SLKTextView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 28BCAEDF70385A96FC0701FAD51B6697 /* SLKTextView+SLKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5D51754F1FED671F51E6F93137497FCA /* GraphQLResultNormalizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 661CD1C179FA49DACA6CAC715CAD0F3B /* GraphQLResultNormalizer.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5D5F6382304D4F2D322730FFB385C374 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF30C6229C2D995F7E8FDDB6D0C314BA /* de.lproj */; }; 5DD17733095AB4A510817CD337BB4DF3 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C2005BCBCF49D024C106103CE49BC2 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EBDE313A0F611135AE35C6D44BA7BC9 /* TabmanFixedButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B93DCC706BDA12E4449ACE07DA11996 /* TabmanFixedButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5E129C5B849A451B845A56B07335289D /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C8C54782EFA2A4C795A3678913CE94 /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5F55BC992E00BD8210D767F868B61A18 /* SwipeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E908B6520A234A07F2651DF30558C8DB /* SwipeTableViewCell.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 60318CEF64EDA99623D6A4B390C02CB4 /* FLEXArgumentInputStructView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BA601FAF3CF3F11B64E0A27D77A8FF /* FLEXArgumentInputStructView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6037E102D536E14D3AC28C03C33252DF /* IGListIndexSetResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 334326D0B61ABCB32334726939505649 /* IGListIndexSetResult.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 60913885C1AE5AC13B78C1BC676C0F68 /* FLEXRuntimeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BCC792A829CB7FF50F078115A0654C /* FLEXRuntimeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60965452226CA372C6B147BC057E500C /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8513AC6BB9CA90DC877BACEF3AF0CEA9 /* ConstraintMaker.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6097CE206AF930A32B47BE18FAD64F9C /* IGListKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A937789383DFC76F7530F0EFF198C7 /* IGListKit-dummy.m */; }; - 60AF2CC179B2BDDEBDD30718CB7726B0 /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8513AC6BB9CA90DC877BACEF3AF0CEA9 /* ConstraintMaker.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 611E2D8BFF39BA330324B14C89A7EFF7 /* PureLayoutDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 39BC0DEDEE10EA9B373163241F5B0816 /* PureLayoutDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6216FD5188D7F5A0F10200A33501749F /* FLEXArgumentInputColorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D04F54B2FF3A6858586E4C95C91F9FD /* FLEXArgumentInputColorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 624EF96DDD85CED321388B2EC531E67F /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3435EF29134CFA6CADED091FE8DD40E0 /* MobileCoreServices.framework */; }; + 63C5ED8C53FFD5952220CF0EF6A90B54 /* TUSafariActivity-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E11AB51BFB5B7FA4E81DD558925C83F5 /* TUSafariActivity-dummy.m */; }; + 63D0A94FD8662E31CE1DBA368C5DF21F /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85674F4220A2B50D354046397008F3C1 /* ConstraintLayoutSupportDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 63DBB9C74BB6A74064C7025A29512722 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 858A671120929357BF264DE3EACA9D3B /* Debugging.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 64B8713516E7D17DA31C79401058D602 /* IGListAdapterInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B035468EDF02E6BBE83C4F18128540C /* IGListAdapterInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 650E5E6FA80C9D2DC55F9DA0B6C4CF0C /* MMScanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A0E768EE2D229A3DFFB8004F10B223 /* MMScanner.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 65202E45F4787AD0C13F8719F2F50EA1 /* FLEXArgumentInputNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9593FBE36776680992ED8F627AE69905 /* FLEXArgumentInputNumberView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 652600A4371881162AC423DB70FF61F6 /* NYTPhotoViewerCloseButtonX.png in Resources */ = {isa = PBXBuildFile; fileRef = 75061A49BB62271E2A6CF3C1228EC00E /* NYTPhotoViewerCloseButtonX.png */; }; - 654EC2CEC961A9417C81CE34D11ACE81 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A86A5B40B1E38601AF456863BFDE814C /* ImageIO.framework */; }; 65534D77EDCBE84C496A5AD2C81960DE /* FLEXNetworkTransactionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6E92CC66EBF5192E63436AC31B669F /* FLEXNetworkTransactionTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 656103D5003B92DC75AC49A3C373443A /* IGListExperiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 750DEDA4104481A21C81DC22D77FDA91 /* IGListExperiments.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 658C72E5D3467A0724748915417B92A7 /* TabmanLineIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 056478415B43A0BABD537BDCE3E962A6 /* TabmanLineIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 660E26E971156EA7373F73788A0EF2E1 /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD0297147696497B4C6F603E1DEB855 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 66441F0EC3C94919C4FCBE1EF59DE611 /* FLEXArgumentInputStringView.m in Sources */ = {isa = PBXBuildFile; fileRef = 713856CCC329FA4F0AE09EA803F9D0FD /* FLEXArgumentInputStringView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 664B1039D2EB0155F7157D9564717D8A /* IGListSupplementaryViewSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8C43707607EE4C797C24272BA288CB /* IGListSupplementaryViewSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; 667BBE0288251E2021BD0895A7CDD148 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B13ED943C98E04645146BBA64824CA7 /* MultipartFormData.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6710F3EAFC7D3878E4D34C300BF3F504 /* FLEXKeyboardHelpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2037A3077144ECAF572DEDB2A2246BC2 /* FLEXKeyboardHelpViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 67F2ACB5A4379CC3F06BFC96B6CE20A7 /* FLEXArgumentInputColorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99CC72BE69C05E5905E8A6CEBA24BE40 /* FLEXArgumentInputColorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 685C43342DDBC668EA98F99C8C479196 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C8C54782EFA2A4C795A3678913CE94 /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6938DE9C7F502C8B594EFA3BB7DD4AE2 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73AF1F0B2D73C0CCDEBCA94CB5846B2D /* ConstraintLayoutSupport.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 69D043CA17A24B9C251A7D965E047500 /* TabmanDotIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B799AE6F3FADF642F0B3BACED598B1 /* TabmanDotIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6A3F96BF3BB7D26D796D1D55DB877B83 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FA67DCAC50223C8EF9B91B0D558C65B /* ConstraintRelatableTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6AC5908A2062189E21B4BA4F191A60D7 /* TUSafariActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F9647E637968F33BA3301501122CB887 /* TUSafariActivity.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 68E8117167F105F3C0930A27539BE741 /* cs.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C2CD2CA4D5D1A265170816AF0F810C2B /* cs.lproj */; }; + 6A3C0186478C5921B7D511B0285D6AA1 /* NSImage+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B20E2055FA570CAC7D3320DA048DAEB /* NSImage+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6AEF706D7850848624824697752555AB /* FLEXClassesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE3D1F8ADA306559BBEB9B63614F5D9 /* FLEXClassesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B594F3E56F4E78D7F45DE9D1E09BA54 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F3CC68FE7DE0CFF1D67026D4BA3120C /* UILayoutSupport+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6B7473E88932EC571DE000F574098AB9 /* TransitionOperation+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F5DDC51DC52B932BD3D529EE7AA207A /* TransitionOperation+Action.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6BF6749DD5FD9DF37D0E38E60E72CF4B /* FLEXArgumentInputNotSupportedView.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D8C5FD11EAB8B4EA01AC9A1B6A3AC7 /* FLEXArgumentInputNotSupportedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1B9F59833F40C13FF9A9E6021B7468 /* IGListAdapterUpdater+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A6656C091BF912D3AE24D8DD690168 /* IGListAdapterUpdater+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6C4FFBA623FB20D90A441282A9BD94AE /* PureLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F8D4DA5DD13C16B6EA67915C6AD0D7 /* PureLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CA8BE16EE8D4491439BA4F57083D2A9 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 112A85C6E3257E508C63191C2AFF5682 /* SDWebImage-dummy.m */; }; 6CAE2D6029CA6984E63F51B702DAE2DF /* NYTPhotoCaptionViewLayoutWidthHinting.h in Headers */ = {isa = PBXBuildFile; fileRef = F91A45848319F61619BF3AE300FE12EE /* NYTPhotoCaptionViewLayoutWidthHinting.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6CB9CA45B8BD0CF3F3C4E6DE5E0D554F /* IGListDebuggingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 164DCD0A4C4ECA576B8A657F6AD46CB4 /* IGListDebuggingUtilities.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6D951F6D8AE6B8CC61E3C9886638C685 /* MMElement.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FA6B84775AC93003A2423DB0C235F9 /* MMElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E0B77BD70355E4A9636EC526647BF5D /* MMSpanParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C00DD3CB61579D29CAA959BB83946DFC /* MMSpanParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6E0D2F014F967EDC80A750C0FBE5956B /* PageboyAutoScroller.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BBD6C5EED6F51357F90EB8E121377B0 /* PageboyAutoScroller.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6E1BF81AC0E3E83F4BD86800FF14C36D /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 35EE425B50D3868A61CB29DFD8582186 /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6E564599386B5ADFABBE0D8AD5EED728 /* TUSafariActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F9647E637968F33BA3301501122CB887 /* TUSafariActivity.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6ED4E89F825DA0B355D340F29442EAA2 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDA9E30D962B0D4A56635C45FB30E77D /* Alamofire.framework */; }; - 6EE6348E86E546983609843C715C0AA8 /* NSArray+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B088C83DC058343F3F9FEFC09B20CD5 /* NSArray+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6F4813FEC99B1150EF44CC87F59782A0 /* FLEXArgumentInputFontsPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA841F1E2DE4D572B06D01AF573DE1E9 /* FLEXArgumentInputFontsPickerView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 6F593933C150C2AF3163BE09C16E490F /* IGListCollectionViewLayoutInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 53ECB900F01997481B470451C3BD07B3 /* IGListCollectionViewLayoutInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 7002102CCF3573A9809A96F032F24412 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4854C5DEE22BD3FCE1F207DC38AC11D4 /* ConstraintPriorityTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 703595F137C7507BEE990F93406F803E /* safari-7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7A5FE0D204245175B0988D3723F8BB88 /* safari-7@2x.png */; }; - 7086884914FA969C58DC54693BD563EC /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CA2C13DADA04F5BECDA34B345C69FF /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F7C1AD74562DE4489F36DB2A4B4410C /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4394C4BE864EC32FE08B871A298A266 /* LayoutConstraintItem.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6FF32C88EB0FF7BAED0066B97B734B90 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4AA7337851FD6A984C1D8102CE6C364B /* ja.lproj */; }; 70DB3EC449A7C33FBA6EDD7C543A56B9 /* NYTPhotoViewerCloseButtonXLandscape@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 206B89886786C1A7D29EAA7DF1464C01 /* NYTPhotoViewerCloseButtonXLandscape@2x.png */; }; - 70FAB2256BC1A9F99AFB675855F78D3E /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 385746A9AA2FF2F305EFAFE698DF5AFF /* UIView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7137F9AF6080994A8467527CE3BDB097 /* TransitionOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7542F5644A426DE771A8285B57CD88DA /* TransitionOperation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7142C1741A4B43ABB599DA4B9CF1A478 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; - 71BD208A44AE9E207479FCFA2103CAAD /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = F04FFEE3F21641B8B61A1A6C6568DF4D /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; 71FDDC05D2AFE7E1AF60D1907D66277F /* NYTPhotoViewer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B2617D4D6E90FE33E89E1BF07FC46F /* NYTPhotoViewer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7247DE884924EF9BC346B505C8ABE70E /* FLEXDefaultEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B46174DDE27F50E5DD5B0C61D8803D7 /* FLEXDefaultEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72849429150A278BF8143655EF19299F /* Pods-Freetime-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E45C09B78EA16D811C1D1EE886E8D7A8 /* Pods-Freetime-dummy.m */; }; 730541E3B868EC18B61CCC42334C69E3 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = E481D546BF3BCCDA81B79345F2A1D34F /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74136E64706CC03299F491810D055FBC /* safari@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC83EA871D6B7B836884B04FEDC15784 /* safari@2x.png */; }; + 742AED002D4323C64793F56F9C725D56 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 0721A7D39CDA84DF4F3A663578781B49 /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 747FFCCAAEBC0AA41C633B986D8EDB04 /* sk.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B5B88C1200AEB23B7716808BD70BA65C /* sk.lproj */; }; 748FB51A85D2262C00456408FED8A926 /* GraphQLError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D7144B88BE58E9B80E36430FA1F30FD /* GraphQLError.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 74AB7D4790E932F8EB0F20ED3D4FA095 /* FLEXNetworkSettingsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AEDABF7D0A8B7809385A2388706B851 /* FLEXNetworkSettingsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 75527FC17B383AE05F788DC6F29E4A75 /* IGListDiffable.h in Headers */ = {isa = PBXBuildFile; fileRef = A783E049CB7041952CA0C427FA8E51BA /* IGListDiffable.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7579B89F5B7F56B6F99BF9880671EB41 /* FLEXFieldEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FA75CE7C3B018727081341C96566AF /* FLEXFieldEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75A5469C1B293FFC7D7A0328FF54A057 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE7111558C7E4833F783E94B25B360 /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 75ADC9B173E0BF757893787BE2EDAD5C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 7648D95C53F38A316164BCCDB56CB04B /* NYTPhotoViewerCloseButtonX@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 24D5A38C65896194FF388278BABD6D46 /* NYTPhotoViewerCloseButtonX@2x.png */; }; - 7736A1C2ACA5C16A51087CED3E4FA2F9 /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A8F1F626B30A0BEC6381B64A3BD15DC /* UIView+Utils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 77589FE1BC5DA3AAE156D241E9DC36B2 /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0361DA8FE5908E4020AC6479CC5944 /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 778215E12C8273C5F8417AA64709BBFD /* TabmanViewController+Embedding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D7C1B29D3278DEB28D0B3E424C444C4 /* TabmanViewController+Embedding.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7894239AFAC74967FA96A1834282B2D7 /* FLEXArgumentInputTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = CD622CDB875FF31F9D347FD96CDA7DDC /* FLEXArgumentInputTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 79304CDECB7A33A552A70254951D7F57 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65C3E53509985BC9083D029749800CF /* ConstraintMakerRelatable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 796711119EF0222781FAC99280562ADD /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 760A5E8C65EC742CAD5355F41AD7CEB2 /* ConstraintDescription.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7985E8745473044FC35AE4899EC37077 /* safari@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 14B4BDADEEFFE0CAD71E92FEF33B942B /* safari@3x.png */; }; 798744A5B18E254731625FDF49061422 /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB7FCE58DF6F722A0D031488AFDC1EC7 /* Utilities.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 79A5B7EC95A60F29842034AAC4965DA4 /* FLEXPropertyEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CDD65D183C3B7B1136F6208281DF26 /* FLEXPropertyEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 79BE27B8881CD09F4706E4C7BAE36DFF /* PureLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B28CCA12DB4D48455977E2266DA72F3 /* PureLayout.framework */; }; 79CCD308F8DB49C7ED165E7A743AD260 /* FLEXMultilineTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F99852B995B7D9C653EC043CA5BDCD1F /* FLEXMultilineTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79DF4B7B3B6E4E80D2EBA0CBA32BEEC7 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FA67DCAC50223C8EF9B91B0D558C65B /* ConstraintRelatableTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7A53F19D615D569EE984A960FB54C9A7 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65C3E53509985BC9083D029749800CF /* ConstraintMakerRelatable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7A57CC4A3314AE85FD202F17096C0C6F /* NYTPhotoViewerCloseButtonX@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4A4D6FF2DDB8223D1FE85C2D32362BF9 /* NYTPhotoViewerCloseButtonX@3x.png */; }; 7A73079126DD523E2EA8DBB3727AB7D6 /* FLEXIvarEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 701E0B8FC85E809FD716A4157B802EF1 /* FLEXIvarEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7ACA1D5364F89C50E0791C67E5172531 /* FLEXHeapEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C9A9BFB24E6BCB054AE16E811AFAF5 /* FLEXHeapEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7ADC0F8C8125D01B0894A6DD4B4E0D0A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B47B1E40D80EB5E7C53CA9C17354850 /* UIKit.framework */; }; - 7B71366D6B7F1F80D2766D8BA1EF3B02 /* TabmanIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A5A8A5F53BB565752B189C0AEB8B3A /* TabmanIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7B8428B1EDBBFACE2AA418F081017B30 /* IGListIndexSetResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 3421DCB34106FF90C0711C1796155116 /* IGListIndexSetResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B9F80316E14BB395E47D051B927B2BF /* NSLayoutConstraint+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 645B454A3AA4F93BA8F4CB5D90A46034 /* NSLayoutConstraint+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7C6EFD5FE807558A2F724A0FC544A298 /* FLEXObjectExplorerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E8589139BA91E4F1B16B20D1F38E67 /* FLEXObjectExplorerFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7C79F06F25AB5D072F18F5F3B88A2521 /* IGListMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 14FBCD335B9D4C1D1E4008F6E585BAA7 /* IGListMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7CB203491EA96E2A8DA68E40AF42BF97 /* safari-7.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BE9982E8BBD59B9AD3FDD4CE85F4A2D /* safari-7.png */; }; - 7D645AF3EFD0C88A91F5FF61022A8998 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6891917A0E29CA5E05B34729B78D06E3 /* es.lproj */; }; + 7C8F49D13F5EFF016068F2C1D9F0B9F4 /* Pods-FreetimeTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB0C552B66E613C80318FC7BF89BD9F /* Pods-FreetimeTests-dummy.m */; }; + 7CA43F203962FA0AD8DF52D4B35B2DDD /* SLKTextInputbar.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8275B3E7AC7E1C0CC1EBBED8B2D6A054 /* SLKTextInputbar.h */; }; + 7D36510603BFD87A129EB54BD8E9A939 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 7D6D0913B7F788C48A9A1CB7CE526C85 /* UIView+Localization.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEDB781F16915D6F02A32B943199D5E6 /* UIView+Localization.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7D7050D1886F649878BCF9021E72F8F4 /* NYTPhotosDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = FB550C27EB8A3846D2C6EEFBD8A26A73 /* NYTPhotosDataSource.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7DA3CADE1385390A161D90CB9FDCB06C /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3781FFDA48A4E8CFA436C1465FD9FC0 /* ConstraintView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7D94815CEACF47FB67BFB19FC955F39B /* SwipeActionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A86AABACFA284A4E9D179F5860C3242 /* SwipeActionsView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7DA6EAD1B2BB02139EBD2E85EBA6B8AB /* IGListAdapterUpdaterInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C208C610DDE1443918C4EE8A1DF21A /* IGListAdapterUpdaterInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 7E529BF170582CC651EB96BB16D3E725 /* TabmanScrollingBarIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7CD37CF9ABCDCD6450990FFB7CE3CA5 /* TabmanScrollingBarIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7E22789999B4722C9C63DFBD7F33BD5B /* PositionalUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B497A573CD432520E90A114C01FE5AE /* PositionalUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7E429A917415BB98266FAB4054203BE2 /* TabmanTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20499BF73109E3AF3DBB447856E52B79 /* TabmanTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7E8BCB204983C093711EE4F1A2689919 /* TabmanBar+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 999FEE66991B3AE069FE190211829C34 /* TabmanBar+Appearance.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7EBA2259D5A03EE2792E1120CC291FF0 /* FLEXHierarchyTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E9AE1AC263BB42A5D1BEABA4FF48113A /* FLEXHierarchyTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7FE1CB95BB194B2F931D50572400F21A /* SwipeAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9B28CC9315FDE83A8B125A0FCD97587 /* SwipeAnimator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7FE57EE1F9AC9FB1A57DD225C1C32DCF /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1442DE2E3DC74B2FAEBE8A95D6A3A8F5 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 807B9E1F865016FA0BE573C5003AEC10 /* MMScanner.h in Headers */ = {isa = PBXBuildFile; fileRef = C21A39CD4D3549D4F66ED5597AA0527D /* MMScanner.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80814B57F356127FE61A43E3F67E10DF /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3436BCF68D1058EDF4681E46F329F80 /* ConstraintOffsetTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 80821464F584E459A310227EE7FA9854 /* FLEXArrayExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 136DA3F08BD35D9FFAA449F323F92AC0 /* FLEXArrayExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80B51F212A491DD1E00182FA20B9DDEC /* zh_CN.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8DE5571C908F0F9BDAEFC833EBDD198E /* zh_CN.lproj */; }; 80BDAB00A951A992EC04732A0B9ECB8C /* FLEX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB5F07A9DD19EA7A5687446DC9098F4 /* FLEX-dummy.m */; }; - 80BDE2C949B93A4F23815CFDEF9B63F2 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4394C4BE864EC32FE08B871A298A266 /* LayoutConstraintItem.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 80DE4550EB414CD2516F908FB37FE8C9 /* FLEXImageExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C2964172F5B3E4F2A1F3BA3B0FD917 /* FLEXImageExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80F8FE2DC54F14BD6F8C4D719F5648C9 /* safari-7~iPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F616B4AC585FA14025BCEA8AE9073696 /* safari-7~iPad@2x.png */; }; 8154054ABC41388CDBF34CC590FC5858 /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7866C6F15E66C8F20792D81C313C5525 /* JDStatusBarView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8299A04E4E8B7F7576076AFDD1596986 /* TabmanStaticButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E35260A46CE0937AB888047D52E625C4 /* TabmanStaticButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 83343616F41E8C650EC8A5168CD7E16B /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 858A671120929357BF264DE3EACA9D3B /* Debugging.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 829661EF8308BF3CD709C831B70A43B6 /* TabmanScrollingBarIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7CD37CF9ABCDCD6450990FFB7CE3CA5 /* TabmanScrollingBarIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 835A0D1A61CFFFA47CB924E81B32F953 /* FLEXGlobalsTableViewControllerEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 71702E4DE7E9FB7673E0B0B008F3B393 /* FLEXGlobalsTableViewControllerEntry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8375903882221630F8A6B95DB36DE3D5 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A793CFA33B25F472E04D9E6F321C032 /* Result.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 83A28B3593C1EB0B038DBC888981E33A /* FLEXTableContentCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 406A56F5EBD0BB1155D8AEDD6010C924 /* FLEXTableContentCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83DF24E884337D3F9A1520E2EAEE0848 /* FLEXLayerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FDD7B011CC2ECE5AAE1C97CE3EBFD4 /* FLEXLayerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 83F551C2AC07193B94428263993BF26D /* FLEXGlobalsTableViewControllerEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = F77D6DB7494152D970FFB65E5C493C81 /* FLEXGlobalsTableViewControllerEntry.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8461446002A9ECCF46EB47026AFF11E8 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B62ED859FD1C5AE00F3063492AA86CD /* LayoutConstraint.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 84780907E46FAE6B8B8C01A0DB91B2DE /* IGListCollectionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C3959274B59AC13A36DFEA6BAA5DD1 /* IGListCollectionContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; 847D221417BA5658966CB24A656F9EE6 /* FLEXFileBrowserTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A1AB0A39E4233830493FF1BCBF5CF8 /* FLEXFileBrowserTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 84DEDF92AC1234B596C77B9BA9A7E40B /* TabmanViewController+Insetting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40289E7780E1D818A746E0F9B74FE8FE /* TabmanViewController+Insetting.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 84FAD7730842EB9CC563AA902CD07D77 /* NYTPhotosViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B257F0390F6B13B028DE5ABF886A95 /* NYTPhotosViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 85623489466EDEFB0463FFE0F323ED8C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + 858A87501B2CCF0852B5E25EA02368C0 /* TabmanLineIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 056478415B43A0BABD537BDCE3E962A6 /* TabmanLineIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 85FC0E9564FD32E2F61CC47ECBF52F2F /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1E458099F4E17645DB3451783697408 /* DispatchQueue+Alamofire.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 86D559F7C0AB2005EB698C6C84C832DB /* FLEXLiveObjectsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F1E1424A2098E2C9DAC4941BA0B78B /* FLEXLiveObjectsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 86E8FAEACF719F123CBC6486738E9484 /* IGListBatchUpdateData.h in Headers */ = {isa = PBXBuildFile; fileRef = 291A54FDC8D6961F49D0D3D6259CDF36 /* IGListBatchUpdateData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8703DADA3393E0403B00313CCC70C354 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A7F2277FBCEBC33ED78EAEE02BA72E25 /* fi.lproj */; }; 8730D2CCEADF4A2AA0514EB2CB378E97 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1513D7060BB4F86EA18A0CCECB4B77 /* CoreGraphics.framework */; }; 879234D47512C3AA7310851138956435 /* Pageboy.h in Headers */ = {isa = PBXBuildFile; fileRef = 654C346EDD171A5E9B91A2EEEDC439C5 /* Pageboy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 879649B66C867C3D2A22936AB6A08116 /* Tabman-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F786DBAE9BBDA9392B8BC6F20828DC84 /* Tabman-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 87C2176093BCBF1E6AA9C0791863D08C /* IGListAdapterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 55280930AB067960F1A9AC6099525F23 /* IGListAdapterProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 8AA48673C0CAA050ACC1EB736409ADA1 /* ContentViewScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4D1BB753C4920AFC0E8A172C9B31227 /* ContentViewScrollView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 88A6066F29F08CD1F74A203C0DFC3054 /* UIScrollView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 761A733DA93383767AA8646CE320B47C /* UIScrollView+SLKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 89E52916011FD3B4F314B3491DAB86C1 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1A4A16DD4A88993BE81C6574801C2755 /* pl.lproj */; }; + 8AE3E8E241C4959F7B93E30E6F956E02 /* SwipeCollectionViewCell+Display.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918CC0A9660FCEAB7575DA7FA1068176 /* SwipeCollectionViewCell+Display.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8B4D91264D58F2FB83446629E426DE5F /* safari~iPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 69C5D99B7CB277601BE4687E34742695 /* safari~iPad@2x.png */; }; 8B81A95FEF6B87DD243A5E977E44A151 /* IGListDiffKit.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D955596A006CC9937A15EBA0A38AC1 /* IGListDiffKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8C20A73F3766F58B16DFB38224A0088B /* NYTScalingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AC4F5C7E301F5B04E6737ABCAD2408 /* NYTScalingImageView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8C25EDABE6C584A764AE64B9971A8C6B /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 112A85C6E3257E508C63191C2AFF5682 /* SDWebImage-dummy.m */; }; 8C59CCCB22EF1D9CEA50F9EFE01FFC9B /* FLEXFileBrowserFileOperationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B9C83310C0329FAE9F42EF3A81CF49 /* FLEXFileBrowserFileOperationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C9149E37A2AF9ADBFEF870D74ED0C72 /* FLEX.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C19413710F94848CB7103BED9514AD /* FLEX.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8E304CCB900087EB347100BF3610BEF9 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDDFC6848BC473AEBF4D62F2C3DD9D0 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D26FED0DDE340945E30DD269E69FDFD /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 937975DB86A76C80EBD95F773A8CAA20 /* ko.lproj */; }; + 8DA6271D71454DDCA2F1BE3B30E0CE52 /* CircularView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 635301747F6878D7D665EFB205BDA90C /* CircularView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8DDCE5CD1C6729746CACE9A7FA3307F4 /* TabmanButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BE70D92A1F6ED87687A6493C11A7B51 /* TabmanButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8EA9CC30C75B90926E27CC724FF351C4 /* SLKTextInputbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 8275B3E7AC7E1C0CC1EBBED8B2D6A054 /* SLKTextInputbar.h */; }; + 8EE06B81A4115AF65CD4FC127F4A1A92 /* safari~iPad.png in Resources */ = {isa = PBXBuildFile; fileRef = 267F694E669C30244DFA15FCBC04B6A2 /* safari~iPad.png */; }; + 8F3AC5C8EEB7C8CAC52A663EC4F50C23 /* SwipeTableViewCell+Accessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022362F8DCAF9E851C3953A272C21FB7 /* SwipeTableViewCell+Accessibility.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8FAB320D91473F549345AA2AF1164D50 /* SLKUIConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A81EF059793CF3D3E71BFDF642C69A3 /* SLKUIConstants.h */; }; 8FABA799C5951736D3B2DEA3911B5D4D /* FLEXKeyboardShortcutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AA1DC2CCBCA67F94251B6A663FD63C /* FLEXKeyboardShortcutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FF3B4E13BF0EAF0C35281BC0BAFD23D /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0348CF690D93B748590341445498B2FF /* ConstraintViewDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 906AF477FD499744BCCE68457FB833F2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + 8FE6E2435A80FD2762BFAFCCDA88CF88 /* SwipeCellKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB3C30F08C01CEB63A8FFC1B1635554 /* SwipeCellKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9077DD8F7235F641041DB41B1A8F0B07 /* SLKTypingIndicatorProtocol.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9FF76FB85B7287B5B89391346CB64565 /* SLKTypingIndicatorProtocol.h */; }; 9105B76A5B35617EC09F9FC23DC644A4 /* IGListReloadDataUpdater.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D2D044958321067E6B21573A95D622 /* IGListReloadDataUpdater.h */; settings = {ATTRIBUTES = (Public, ); }; }; 91210BF67B0B1AC04E7D8EF80B73341C /* IGListBindingSectionController+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FCA2FB3222E14CA2CBB6F7D959E7D90 /* IGListBindingSectionController+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9176C7FDB151E449E68A3A1F83A70212 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C458EF992766D7CC89ED1037E8E9E28B /* Deprecated.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 929AEE4B3F440E3A5EC440B5346B0225 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 583E18A58616E7166DED41060D6D1E2F /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 92A3E7BF1B2F3FC576382900C9DFA8CB /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A5C6281FB41057EC52E5025CAC7A35 /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 931A4E06B7F01A2A8B3993FB535DD416 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 790986CF9E2E5111DB8640F6E43DDF43 /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 91A5133472DDD700A369B86FF35A3417 /* Tabman-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F786DBAE9BBDA9392B8BC6F20828DC84 /* Tabman-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93081247BADA27A11B459099C2C62BE2 /* MMParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D06E85E70F68AB59BC215C1DE648ADD /* MMParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; 93BABF0F5CB57547A1BDAA9C12717C19 /* FLEXFieldEditorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D504A3D172528A4EFE70CAE007AD75E /* FLEXFieldEditorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93FEDB5C571F90B6D8E2C8255D3E2835 /* safari-7~iPad.png in Resources */ = {isa = PBXBuildFile; fileRef = F531D1E21FA2363155E17070FEAEA5F6 /* safari-7~iPad.png */; }; - 94256F80CFD781B3999607A86A35FEE6 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 972DB8EFDC90B92B69D6C84BD403B7E2 /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 94849E4CA4A9E7F9BE487DAC8CC0D1A6 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4033C93B21031A530B9D68A84F6829 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 95291CFAD0599DCE5F5918FEEF40A7FA /* TabmanBar+Construction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9D8E6DC662A5CF1891F1193C5B08FE7 /* TabmanBar+Construction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9439748649D1F3FBD2803DDF2380A8E1 /* TabmanBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB1708648607CE79DE814292E4975E0 /* TabmanBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 947E7AEC61B50E194E98219AFD09A539 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E49624D2539B69708D81035DC502F7 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 94FF5F5FED942E4BE2C25485B46553A3 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = AB927A1736BC98D4AEACB65778B238C1 /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 959E320B3C06EE932261719FB3C19884 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1513D7060BB4F86EA18A0CCECB4B77 /* CoreGraphics.framework */; }; 95CE9BB76987F5E406A2ABB2A00FCD79 /* FLEXWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A71073F1CFCF3AA12A38A13BB37358E2 /* FLEXWebViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 95E648751A30DBCB3F8827ABA261D8B9 /* IGListWorkingRangeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FBC70192F1233A33D2CE6FA9017B23 /* IGListWorkingRangeHandler.h */; settings = {ATTRIBUTES = (Private, ); }; }; 96162114C2E3685CB4E3B672BB0963F8 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2D5CE2886B4FC51F7F5F0D32E584C2F /* Alamofire.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9750D50DF399B6D163439934256FF655 /* Pods-FreetimeTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4EBEF6D1144DC277CF3E685A2719F3 /* Pods-FreetimeTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 98801B1482776AEDA6F32CE9CAEA504A /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 51FCC184CE8D7305712DD321725453BE /* NSImage+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 96F11ABF85B829DFA430A10F7CA851E4 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9FEC42A0B2B152F1979BD2603964F95C /* nl.lproj */; }; + 96F1B786B9CD59AFA52E5D72A9F13728 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D3C8C2CB1AE6E816D9079472F077401 /* ConstraintRelation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9755D17C479454585F6A69A20F6FCD5C /* TabmanBarTransitionStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F59427B29CFF53F15488F6B4546E71F3 /* TabmanBarTransitionStore.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 97978EFCA76726FBDF538DF7035F3416 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5869A6B60ECF7F2EA24FA43FEC4E36B5 /* NSLayoutConstraint+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9993A4E68752F9D1EAF53B7ED86491F3 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9B89ABC26240DDAF80D66B6CACA0FF /* NSArray+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 999FA808528B4385C196C45866B30C70 /* FLEXArgumentInputFontsPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA1139B96C6F8559982297FF9BBB50D /* FLEXArgumentInputFontsPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A02405F76402141BDDFD4D53FBD865E /* FLEXInstancesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6596E0F7C59D43C567855502083A4CB /* FLEXInstancesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9ABF0998F4842195C8B01267F8460844 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 760A5E8C65EC742CAD5355F41AD7CEB2 /* ConstraintDescription.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9B837646BD333D70EA3918C5F4C883CF /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1A4A16DD4A88993BE81C6574801C2755 /* pl.lproj */; }; - 9C891CD30BE33D6FD1D9BD1730C5ECB7 /* safari~iPad.png in Resources */ = {isa = PBXBuildFile; fileRef = 267F694E669C30244DFA15FCBC04B6A2 /* safari~iPad.png */; }; + 9AFE7757D05FC0566E84812D5C42E7D5 /* UIResponder+SLKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 628C6C8030FCA9E57E3C15FC3338EFDD /* UIResponder+SLKAdditions.h */; }; + 9B68697BFB6363ED6150A951844BBBF8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; 9D48FD607292A71472288062273DBC02 /* FLEXNetworkTransactionDetailTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CDAF32A9CDF6150DC51EBE57818DBF28 /* FLEXNetworkTransactionDetailTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9D8C35C3567EAD1017D0121279EA5F3A /* IGListAdapterDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = AE358632CB8AB4AE59E259549482C466 /* IGListAdapterDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9DD58D7C4FC826297D3171A3CB3630B7 /* NSLayoutConstraint+PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 645B454A3AA4F93BA8F4CB5D90A46034 /* NSLayoutConstraint+PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9E63FC9D3A5131DDEE246D63DD5C3857 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00EDBFCFBCD855E2424B14D7978E7C08 /* ParameterEncoding.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9E730F584C81562367E0FF723C3B19E5 /* IGListAdapter+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0F9B71C87BB719B7E8B46379F507BA /* IGListAdapter+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; 9E855EA763182D43A470D530EDB1E529 /* IGListReloadDataUpdater.m in Sources */ = {isa = PBXBuildFile; fileRef = 45675FD696E4AF1C55FED93F48338508 /* IGListReloadDataUpdater.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9F093D3A4832A66AFF32B704720ED437 /* Separator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C243DF441122D2A53AEBD68735A85A8C /* Separator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9FE4BFD509DF009BB23C5AA285691310 /* FLEXViewExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FF07F41CF0C08B060B4FA7B4042D74F7 /* FLEXViewExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A00BD5DF1511C7F3F0A35223ACF5DB60 /* FLEXImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AFA3880A78561F0F2CA8BE00FDEE82C /* FLEXImagePreviewViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A05168208C9E326CC842DD977A4A62CA /* FLEXSetExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 127EAD88F030164CCE98DFB85B313204 /* FLEXSetExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0569683ACD6689C50D2309AD780588D /* SLKInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF11FC88CC23E7A99587F6E4D8A5DAD5 /* SLKInputAccessoryView.h */; }; A086BFCB62F84353F249D834A5F94EA8 /* NYTPhotoDismissalInteractionController.h in Headers */ = {isa = PBXBuildFile; fileRef = E18C61B646BA60282F505B07F171F88E /* NYTPhotoDismissalInteractionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A096417E2C0A384F0EF23BF42FDEE558 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C41C231DCE1DA1CDC55A7B59F08DC468 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; A15E7168BD4D1E914D4D12389068E960 /* IGListDebugger.h in Headers */ = {isa = PBXBuildFile; fileRef = E9926C32D5D23F34157BD9433692E934 /* IGListDebugger.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A218992B867812E75C5B8BE9CBCFC518 /* TabmanBar+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB60EC8C3FE46CA08E39E5E0057A6B9B /* TabmanBar+Protocols.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A291E22D6B25BF6E0BD9704424209E8D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; - A2ADBC6D67114BCC7BD0AF3717F22483 /* sk.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B5B88C1200AEB23B7716808BD70BA65C /* sk.lproj */; }; A2BA0773D6703DCB25E4CD336A9B8B68 /* FLEXArgumentInputSwitchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E11DA398A3CC9B69556850A50F0A9A /* FLEXArgumentInputSwitchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4119A2CC575E4356FB425A4B8469B5C /* IGListAdapterUpdater.h in Headers */ = {isa = PBXBuildFile; fileRef = 175378D828B6BB35F67DA0B1E46B4589 /* IGListAdapterUpdater.h */; settings = {ATTRIBUTES = (Public, ); }; }; A4F8710B8381F113D7486A7CFF8E42B3 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DCCA43FE7E5F02B5EBF2242D1D08586 /* FLAnimatedImageView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A4FD518386A6D6BF6C5DC7275BE1357C /* FLEXTableContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B9400A6D720E951649F47D1A7791330 /* FLEXTableContentCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A634FA2D5B0219224B95333DB7DC668E /* cs.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C2CD2CA4D5D1A265170816AF0F810C2B /* cs.lproj */; }; A64A75F0F6D9B513997E18FF6D421C3F /* FLEXMultiColumnTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = EA6760B87BDCE80079A9E70D184627FE /* FLEXMultiColumnTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6FB1919940722F282B999FC7EBB3D75 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B87657BE3FC4278860D8D8D3B4F8A77D /* ConstraintLayoutGuideDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A7A2D50793802A632430EE3F90321D6C /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 431203D9CE487814EAECE6E197DB4621 /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A7C405BE3EBD5BD20EE080EDE6222E32 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0348CF690D93B748590341445498B2FF /* ConstraintViewDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A812F84B44712A9E1FACB700022E86FE /* FLEXHierarchyTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C6B31B04EDAC02D4F7341C7982FF19 /* FLEXHierarchyTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8EB1D494FD8A1B62020BA3E05AC5718 /* Pods-Freetime-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E45C09B78EA16D811C1D1EE886E8D7A8 /* Pods-Freetime-dummy.m */; }; + A8E9B4EA965C177DC272E9884F9CCAC8 /* SLKTypingIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E782396C20F1C2F8371B697FC6524C /* SLKTypingIndicatorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A9638CA12160D78247B4ED0FBB456F1B /* NYTPhotosViewControllerDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B05C9F0779A0180AA4AB4E2BB91643B /* NYTPhotosViewControllerDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; A98F9155E2176A0EB87208B39CA3B32A /* IGListMoveIndexInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEF7B9C7989EB622E7B8B01BBA8C07E /* IGListMoveIndexInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A9D33D119B98966B0B370E9C4B774090 /* SwipeCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B28BE15D154AE44D910C8D8C81C4A0EE /* SwipeCollectionViewCell.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A9D3971D8DEC225DD49ABE5BACBDE4CF /* FLEXNetworkTransactionTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E97C5FFCA9B6CD2E61FA48F3E8FFDA /* FLEXNetworkTransactionTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAEF75D5EC8B05A213946692BAAFB55F /* SlackTextViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9B86893A68A61E3FADA522EADB5A918 /* SlackTextViewController-dummy.m */; }; AAF01FF6C9638BF55FABB5AC54B58CC2 /* FLEXRealmDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A75656C1A83064C85429A4F63DDF22CD /* FLEXRealmDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB004CD985394534DD6173655C8E0C1F /* JDStatusBarStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1992D3CD7E5A24A2C244F63C55B2693F /* JDStatusBarStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB6E3BD8EFD8F775AF6FF25BF66E43B6 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5869A6B60ECF7F2EA24FA43FEC4E36B5 /* NSLayoutConstraint+PureLayout.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AB2E2A413366F0D48BFBAEC9AFEB0CBE /* UIResponder+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E108188571251F6BFC55518B5C3E10AC /* UIResponder+SLKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; ABDE93864D95C2500448EE19AE73D7F6 /* FLEXSystemLogTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BC0D0E407AA4441731F5EBC4EDA701 /* FLEXSystemLogTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC720F254910E041E8CC272210A8568E /* safari.png in Resources */ = {isa = PBXBuildFile; fileRef = 06AB965BE21346AD522FC367D36896DA /* safari.png */; }; AC8169F198A564BB672D69E0DF71014E /* FLEXSystemLogMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B3417BE82F3970A0DA73ED5BEC72F8 /* FLEXSystemLogMessage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + ACB15DF1064055B263AB04CC88660135 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3781FFDA48A4E8CFA436C1465FD9FC0 /* ConstraintView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; ACD315C5FB82F0246E84AF3003CE4B47 /* FLEXTableContentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EAD706B50A9AE958898FBB1E0C6A204C /* FLEXTableContentViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + ACE50E907A2AACB0A24EE7D3B0E2ED5E /* SLKTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4211EECC706E2FF8B6A35117F877EFAE /* SLKTextView.h */; }; AD1A25E8AA2D53E7ADAFB61040BC3AEC /* NYTPhotoTransitionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F38EB3C2496DD713CF433A7630D2D5 /* NYTPhotoTransitionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AE152C5C197EA2DC7E87C9302A94AF8C /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91A20E6D6BCE9FA1CDA2CA92C7B3199E /* ConstraintDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; AE387CD5C12D58D0B531425B24F51C4A /* FLEXManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C54EFA8E4801EF632C2FE8428E1CEAEE /* FLEXManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AE3DBEE63603F508284115C5835DCCAD /* safari-7~iPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F616B4AC585FA14025BCEA8AE9073696 /* safari-7~iPad@2x.png */; }; AE5B74BAD7ECE6050EB6D92F3D511C06 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A692A8201BD1484265BD50CC6E0997D /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AEA9F2951E9954526ABE0BF65444741A /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04DBB6C15787F3A1535D78713CB4945 /* ConstraintMakerFinalizable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; AEE7C586C5B6AD93BC7AC31563BE08DE /* IGListBindable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA4F99A866A74DE9E02DC1AC7868963 /* IGListBindable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF0202DB3637F16E15F83DFC834C7251 /* PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FECB302DC188423649B1589194AFE729 /* PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; AF1C2F22788767FAD06ACBAC96AE1ADC /* FLEXKeyboardShortcutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C432AD1904B5A25D46422CEC87D0DA /* FLEXKeyboardShortcutManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AF3E5C7DAF80D37F8BD10B8971B4E295 /* safari-7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7A5FE0D204245175B0988D3723F8BB88 /* safari-7@2x.png */; }; + AFB5FC7F954810BDB2255BB318707924 /* TabmanStaticBarIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E24936910A9385FF85CC235320C2C /* TabmanStaticBarIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AFFCB34784175A02CA1D9AE3B962187B /* PureLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FECB302DC188423649B1589194AFE729 /* PureLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; B0ABF177DC962508CAD75EE59FC03487 /* FLEXInstancesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B83CDD5BBACEF21F2AEC1372CD3FE756 /* FLEXInstancesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0EEFB5454BF1802E5BD5F5E38C5D0AB /* ConstraintMakerPriortizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E1BDCBAAACFA20DB48D0D6E1F9C3A0 /* ConstraintMakerPriortizable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B157AAF1F1CC9A461953052C06D89F89 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + B159EC93CE584A1E328420D14B7F85DD /* Separator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C243DF441122D2A53AEBD68735A85A8C /* Separator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B188EF39C8D6A06D359336E6D7BE1361 /* JSONSerializationFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9598AB7C3DDB008CCB53F188A02FEF43 /* JSONSerializationFormat.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B1B29A48DFF77A32CCBE62691FBD57E6 /* PageboyViewController+Management.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6631CD93F623C7CE9D9B518A5AD7C6BE /* PageboyViewController+Management.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B269E7A2D54B6CEFADFF3AB875746CF4 /* NSBundle+NYTPhotoViewer.m in Sources */ = {isa = PBXBuildFile; fileRef = BDCB6C7C391CF93F341913695D9FD3F3 /* NSBundle+NYTPhotoViewer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B49D047FA01287F1877BF8F523DDEE55 /* TabmanBarTransitionStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F59427B29CFF53F15488F6B4546E71F3 /* TabmanBarTransitionStore.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B2C6C797DB82DF717809D29BE50E09EB /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB632AEA72E5B61B931FA8385F811E4 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; B5460DEC44CB4B7BC12BE054AD145CA5 /* IGListWorkingRangeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F42548B659990B64760FC22671202AC0 /* IGListWorkingRangeDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B58A4B9AB5361A8F86C951B97890D4D4 /* ImageUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B56B4C4258EE081649FBDB6E7E6A973 /* ImageUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B5916B0437195C8804F46AED981C56BC /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0799819BAF67F8003101DBB793F574DE /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5FC896640BE388F869378FC1D5E15DB /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CC9B803FC40D107679F6B29E47F652E /* ConstraintItem.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B65E47AFB5B8602E006D5FA37E5C0E99 /* UIScrollView+SLKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A51F39A2CF5CFDEB2AF55676ED8DB1 /* UIScrollView+SLKAdditions.h */; }; + B7A6DA953DE04FA364EA7ED3AE19F10E /* MMParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0B33E77AA9A1C2C0BE9574E04548D3 /* MMParser.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B7A7396B64E44B09045D82D760484D28 /* FLEXTableListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C72DB5C2286ABBA4EC5AD129009B5AC /* FLEXTableListViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B7BE4A5F5F58D2F91F127AC3E6534A9E /* sv.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DFB4D6B30225588C1B3BD36316A7D19B /* sv.lproj */; }; B833952B19323BD0A9F426CEE6EAFB54 /* IGListReloadIndexPath.m in Sources */ = {isa = PBXBuildFile; fileRef = E40C5E41DBF6194C7568F396992F409A /* IGListReloadIndexPath.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B8EE4150D927610FAC3FDD6AB8AD083D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; - B9385216D47922F45FA89BC4494A7026 /* PureLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F8D4DA5DD13C16B6EA67915C6AD0D7 /* PureLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA2894AD187D63986294F10993040961 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D9EFD5502161AD4A4AAFF98A2CB2560 /* ConstraintMakerEditable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B8557EEA47EDF2983037CA6F23CFC14F /* MMDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EFFC1199E57B86B0939267765E016C7 /* MMDocument.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BA87E0EB03E090DF92C4CD943F25A1F7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + BAC788E4220C0EB778B401BEC24DA6A4 /* Pods-FreetimeTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4EBEF6D1144DC277CF3E685A2719F3 /* Pods-FreetimeTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; BAF6FC418DF0D89571602B95314E1F7E /* NYTPhotoContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D52A974C6B51088C8869D0AA57762E2 /* NYTPhotoContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; BC4EA933C2E97BEE83A3D12943D2BBF4 /* FLEXArgumentInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E341D5E827F3B05ADB4063D6AACF03 /* FLEXArgumentInputView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BC998AFC0E5F43FA797E234F398A28E7 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 972DB8EFDC90B92B69D6C84BD403B7E2 /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; BDA0586E219C5F5EE00CCAFCF5891E18 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A19363DEA756AC07E734E1942A8CD8E /* JDStatusBarNotification.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BDF3A1BFD37AE3D1D02CA2BCAA622595 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A26C67878A91AAED4B54D28BCCAEC5DA /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; BE0BDF2180895321002EC04B64249FAB /* UICollectionView+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E4991059F867867B77E6C07FA7FBA00 /* UICollectionView+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; BE390AEEDD3269F584A24E3085EAE1A4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; BE7521749603BDE6904BF28F425FCA69 /* IGListBindingSectionControllerSelectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0E9409A5F7B2FAED2CCB0AB949E955 /* IGListBindingSectionControllerSelectionDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; BED9B056E10644BF19EBFEEEE00CA77A /* HTMLString-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C10524C9B6BE6FA632C3B3322DBF0C /* HTMLString-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; BF31436857787EB20E7857B11ABD114A /* IGListMoveIndexPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC40A9883DA878333FDF735EB67FD90 /* IGListMoveIndexPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF96299DFCB58CA06B3B5B2E5BADD4DA /* TabmanLineBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01E5DFF00AAA5314A0B303B80046C4CE /* TabmanLineBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BF4B50F6ED511ED9C677C8AC96443E9C /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3426016BF841FE322940A46DE5D3C5B /* SnapKit-dummy.m */; }; + BF9A0309BAFC1EBECD24DED5E4D682F3 /* SLKTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB9076A00E6253F4FB252318201269E /* SLKTextInput.h */; }; + BFC97FB6CF780BA20E9D978DEC0A92BF /* TabmanBar+Construction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9D8E6DC662A5CF1891F1193C5B08FE7 /* TabmanBar+Construction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C02CF0B7491A56950DFE5428A58CF454 /* FLEXSystemLogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = B60B6D71448023764836C535D169481A /* FLEXSystemLogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1002173492E00D30F5BD1677550AFB1 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1442DE2E3DC74B2FAEBE8A95D6A3A8F5 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0CA45A879959FABD48FBBC59A581B61 /* UIScrollView+SLKAdditions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 70A51F39A2CF5CFDEB2AF55676ED8DB1 /* UIScrollView+SLKAdditions.h */; }; + C14DAA42CC0958124C214746522AF9A0 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = E210176C7E910498B8001EC4E0B22619 /* ConstraintLayoutGuide.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C227EB1417201B16A21315C980BD4B20 /* Mappings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EFC4E2C1B55EF86288ADF6915E69542 /* Mappings.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C245717BBCC10267A8E9FEC35F6590A9 /* UICollectionView+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = BC834B9E257DCDFF34C7772A384B1460 /* UICollectionView+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; - C2784504A1C35A0AA02C41471A1677CA /* NSImage+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B20E2055FA570CAC7D3320DA048DAEB /* NSImage+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C249FAC1A302B0BC7B0A814794632172 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 385746A9AA2FF2F305EFAFE698DF5AFF /* UIView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C299DDDBD82E2839CF088522D4DA8D06 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4854C5DEE22BD3FCE1F207DC38AC11D4 /* ConstraintPriorityTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C2E8593FD99A7FEA1C6B657AE92DFCD9 /* FLEXRealmDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F0B6C1978247AD0A0DC380CAF9A6D6 /* FLEXRealmDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2ED1A5D053119880125D3EB137B636E /* NetworkActivityIndicatorManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 861BDC05EEE88D1B0B7C7ECB2E67519C /* NetworkActivityIndicatorManager.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C38F01B385FBF88D397804D5D77A8C48 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1033296CB703596D6A26A5F1BAA536 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C394AC2FF2A3749C770D43941A14AD10 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 790986CF9E2E5111DB8640F6E43DDF43 /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C3ADD9A2AB7FF9091A6AB71E4D6D3BB4 /* NSString+IGListDiffable.h in Headers */ = {isa = PBXBuildFile; fileRef = 907FC26009CFB8651ABDD325F0ACD39A /* NSString+IGListDiffable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4192F049CD7CA8D09639E1C77F51006 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; C49139852925D9A0522295BE8161CAC3 /* IGListDisplayHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4047F6075D743B41033A298E7FBC9D6C /* IGListDisplayHandler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C4E396458974DC5B49EE0775693D3BDA /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 455483D714ACCBEFB80F15EFE80F115D /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C5244D0D6024E288DDBD390C749FB439 /* NYTPhotoTransitionAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7D0D38619DDC569FB78AC8A1DAA17F /* NYTPhotoTransitionAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C68AB42BF999EFA485FD5BAC90A4D5D1 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFC757DADA282B4A589E39860973D16 /* ConstraintConfig.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C64BE8454B5F772911B53CBF1447B310 /* ViewUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DA3A8F26E2DD2158C0D256B5EF85A96 /* ViewUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C6952F8399723D5EB5772336316766A1 /* FLEXArgumentInputDateView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E36BDC8FF286A3378141ED128939C72 /* FLEXArgumentInputDateView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6B5A7D276CC1AFBBEF3B1D032EF9A5E /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9D666D858F71EFDFFF8D4D4044F1C8FC /* vi.lproj */; }; C6D1037E6B13811022FC8DE267A4D654 /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212A0DBCE2FC775CCDFEAB502400F0FD /* TaskDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C76D9D329012F739D52D9B661CED23B9 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 12E78F37388AD96B5D231F51BEA8F416 /* fr.lproj */; }; + C7D24CCCCE3AF6924F8D30EEECE93CA0 /* TabmanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D6001BEC9B8BE613A40E722290518B4 /* TabmanViewController.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C7D53312104BE444372931036B0ECB9D /* NYTPhotoViewer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E40BAF5BC3AFA23778D8B8E6AF65AF28 /* NYTPhotoViewer-dummy.m */; }; C7E7A19EC098F125798F96CA4E37DF14 /* FLEXTableLeftCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 538CD6BB1F5D78CA712B185A1228C292 /* FLEXTableLeftCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C8A4B6529CFC7E3F5C51D0265011371B /* SLKUIConstants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6A81EF059793CF3D3E71BFDF642C69A3 /* SLKUIConstants.h */; }; + C8CD79941ECE12EA234472E506EB37B7 /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD0297147696497B4C6F603E1DEB855 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; C8F20737BA5570A7E437797159B25B40 /* FLEXDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B0A4304EBC353D1794226401A313FD /* FLEXDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C93F6F58178F3BCADC30B8435C514979 /* FLEXNetworkCurlLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A05DAADFC6AD61623496BA60007EC4 /* FLEXNetworkCurlLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C942EE9C0B8EAB3974240910F791DD40 /* MMHTMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 395B20871FFC598F56BF892533F58CC3 /* MMHTMLParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; C99CFD4CC02D7CE5E73C2F7554E069A4 /* NYTPhotosOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 200B37F3CF2CA24BC7F0D766A21BFA82 /* NYTPhotosOverlayView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; C9DB626810E8666DB5B47D682A8052B3 /* FLEXArgumentInputJSONObjectView.h in Headers */ = {isa = PBXBuildFile; fileRef = A080B459E0840FC7A45059EDA19B4CA2 /* FLEXArgumentInputJSONObjectView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9E5B9E12CD2BAFBF0C985E60AB63435 /* JSONStandardTypeConversions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D364AD5DDFE8E606ACED1AE9AC12DA60 /* JSONStandardTypeConversions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; CA3577756174D17FE3F7B16634369D82 /* NYTPhotosViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAA0E434E2D9DAF254FC83D166354E2 /* NYTPhotosViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CAEE8DD1C9939427FAD7A5E139074AFF /* TabmanViewController+Insetting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40289E7780E1D818A746E0F9B74FE8FE /* TabmanViewController+Insetting.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; CB45227F4081247E625D2513530894D6 /* FLEXLibrariesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F4CE585FA9F0493ED034E32F8422560 /* FLEXLibrariesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; CB7F2D18537ECDEF305F3A306F39262E /* FLEXHierarchyTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B05889136D41FD732C0D82C8984A2B /* FLEXHierarchyTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBEB98EFC76134F908AD2C70BA5A1B28 /* SLKTypingIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB430DC3E5DD021E8EDEA028F0A2774 /* SLKTypingIndicatorView.h */; }; CC2639BEAD14AEDDAE6C1D4A10924E15 /* IGListIndexPathResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB27C2D036B9DF722E2E35507F492E6 /* IGListIndexPathResultInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + CCBB04462BB76FCCAF129B83A98EA306 /* zh_CN.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8DE5571C908F0F9BDAEFC833EBDD198E /* zh_CN.lproj */; }; CD0AA2AAB281EA04B7E48758C6045134 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A86A5B40B1E38601AF456863BFDE814C /* ImageIO.framework */; }; + CD31DF2DBD802A91847050CB3A527B26 /* TabmanViewController+Embedding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D7C1B29D3278DEB28D0B3E424C444C4 /* TabmanViewController+Embedding.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CDD90A0431256FF9D8313A9B0CFDED0F /* SLKInputAccessoryView.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DF11FC88CC23E7A99587F6E4D8A5DAD5 /* SLKInputAccessoryView.h */; }; CDF85CE4491B30AD6B00744CD05E5CAA /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2D6C0A15488D2ACE5A1C4166FF75397 /* Response.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CE45753C0ABD6B35DDA5305FAAFF37DF /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91A20E6D6BCE9FA1CDA2CA92C7B3199E /* ConstraintDSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CE2FEC926CE09A53F8D4AA77DD29948D /* SlackTextViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5EBF9C960D68EB0054F444B7A919FA /* SlackTextViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CECDB1BABE7AB80FC67F20A1174FDEF4 /* SLKInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 772E05FE4D6E5B2795AC831D4695C1F5 /* SLKInputAccessoryView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; CF559C7286FF03C9E40BBC879CE3B609 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 77D7DAA6C4DB551FE996528C8A6FB8BA /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CFF0870D037A2C30928E3F20697FEB0B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A5D684CF8A9E6A625E7D505F81221200 /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CFB039251B4945A044EE7C8901DB1866 /* SLKTextInputbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 23CDC1103FB87B11388B2C8FB496D920 /* SLKTextInputbar.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D060C0100CB178D12CCE3370BE1ED6B0 /* IGListBindingSectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D10BF4583D802B7C34EC776823A5EC /* IGListBindingSectionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D0B423857DEA597FCD6C083393851D14 /* JDStatusBarNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DB71A1370F817793CC0CB9D69B9E0BB6 /* JDStatusBarNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D0DA1218B471A09D482DE890CF7443E4 /* TabmanLineBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01E5DFF00AAA5314A0B303B80046C4CE /* TabmanLineBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D0F87573DE0CD56835E806B6BAD1BAA7 /* IGListBindingSectionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEF806D16CD045B9EEE2B517289FAB7 /* IGListBindingSectionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; D1052B70F35631C1FA73BB17D05BA0C7 /* FLEXSQLiteDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D236A0B736BCDEF3392AFCE7D98E279 /* FLEXSQLiteDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D10AB8B535BC136D9AEFC8679212D958 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0ABAFBD4C48DF64F23AE0DC4A355E73 /* ConstraintConstantTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D119004C3AC257F14A9EEF269E0E684A /* TabmanStaticBarIndicatorTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E24936910A9385FF85CC235320C2C /* TabmanStaticBarIndicatorTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D1480432792CE79D0ECA11A0C4881767 /* FLEXToolbarItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 739EB8AD5F1E7B5A1A9B4B608D0DBA95 /* FLEXToolbarItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; D17E2D1502ADBE7AA45D002CB777E012 /* IGListAdapter+UICollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = D00CFA259AD0DE131050696F8AA6A6C4 /* IGListAdapter+UICollectionView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D242AA74A6956DE0C70668C0E1F70916 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = A54D6B326C2A480F6415DCDA59E22E2B /* ConstraintMultiplierTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D2BA8C91DD8C0604C8F4065E76820197 /* TabmanClearIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D0A28972BE634B7DB8A34CD6A35BCED /* TabmanClearIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D2BC8636B60C9F25B6DD07DD5A270620 /* SwipeActionButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEE6232BBDFC8AF93D0A572D9B04EEC /* SwipeActionButton.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D2FC20B71756E9473850A147D3645AAF /* FLEXObjectExplorerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 993CD0C5D0420351685D4E424BD2997B /* FLEXObjectExplorerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D327764582ADF5D9DA854AFE29A52ED0 /* ImageUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B56B4C4258EE081649FBDB6E7E6A973 /* ImageUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D46A4E5542580FB85B770493206B5C16 /* FLEXDefaultsExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AF35D8A86FCD3B3B358E1A1C4D427E91 /* FLEXDefaultsExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D4E0E813AB4EA57B06E73DE34FBCC8CE /* safari@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DC83EA871D6B7B836884B04FEDC15784 /* safari@2x.png */; }; + D4EC2FA41D31A2F84CD7D4249295238C /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D9EFD5502161AD4A4AAFF98A2CB2560 /* ConstraintMakerEditable.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D58F67A4BE2E0CC48E8665C42A2EE02F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; D5AD672165DD5E74134BA121F717BAF2 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C222A28A0113CFFE5DEDAF28C4C99B9 /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; D5AEB69A934FAF7E942481CFCC478997 /* IGListBatchUpdateData.mm in Sources */ = {isa = PBXBuildFile; fileRef = D712B6CC6EEF62A539CBE0BC6DF0A32D /* IGListBatchUpdateData.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; D5E4D894D8986AE98A21DE4C01AE3F24 /* GraphQLResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C3C9FA435E6D49BE2175007F06D0925 /* GraphQLResponse.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D71E864F10432F7AB958CDE4EF330093 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C52489087FB33ED9DBCBA6F4A22334 /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D689FBAEC3BC1A8578E346E90B8FDD24 /* Pods-Freetime-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C93D84F496EAF73365F33613D09D4E /* Pods-Freetime-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; D83644F76ACD91BD1C9055A415116B82 /* FLEXSystemLogTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF4B6140F1A022A006F3D0746E16341 /* FLEXSystemLogTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D86B868340F3C8282FE68D4D00D8532B /* MMElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5965E8B737830D03A8AAFC36D1C9D8 /* MMElement.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D877E5D402E6431BAF8E772CE960E251 /* HTMLString.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCA7E89E862FD16BED4AD33F6515957 /* HTMLString.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D87A90AA6228E5FE5A362D40C4B43A24 /* GraphQLResultReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B47FD97FAA89B2C4C825D7A7737A385 /* GraphQLResultReader.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D88A7F1ECAB981F769B1A5EB59AB4A51 /* IGListAdapterUpdater+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6865D7D5F73AA5705C0B1FDEB5D0B1 /* IGListAdapterUpdater+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; - D8A0351B97A06BC7ADD57145C8E73610 /* TabmanTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20499BF73109E3AF3DBB447856E52B79 /* TabmanTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D8C61AFD0B077871391BE53A9224036A /* TabmanItemColorCrossfadeTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 424076AFC6B32585C47EB254C03667A8 /* TabmanItemColorCrossfadeTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; D944F96A6BBB43412A2BDE95D5FBC51A /* IGListMoveIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F46C33D52F04F9B2B8405B76746F30 /* IGListMoveIndex.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D9946A126695EAED17FEC354AE555898 /* MMMarkdown-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C28AAF88CA8416524A43B7AF756EC7A /* MMMarkdown-dummy.m */; }; + D9C6AAF8B0F94B1EB597EBA2CCC5C03C /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A8F1F626B30A0BEC6381B64A3BD15DC /* UIView+Utils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DA18312398613EE9807F408BA46B7A4C /* FLEXMultilineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 095EE93A013ECC20A561853972C6F8FC /* FLEXMultilineTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DAA2E4F253C2762715835CC67110883D /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9D0E84F60550F4313739706E0045AB3 /* ConstraintInsetTarget.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DAB4F9B3DF1A279BF7FF7DB2F77201D9 /* SwipeExpansionStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB699484D8925AC847679149D7E231BF /* SwipeExpansionStyle.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DAB75DB39A74BFFF8DAF3DA1FD1B5B8C /* IndexedMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A72E8DD6B11460704E776400882B9B /* IndexedMap.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DBA17DC8EFF0C07F12A6950614351665 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE067453FBC57330D6D49216DB0C0BF /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC509CB36058B28A13F93CFF1B8DFD74 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 981303E640FC18C78650F86C8A2083DE /* SDImageCacheConfig.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DCC1BCB6529E12D30C195DC6D087BC62 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; - DD74D0CA8911F5222C9E97C168AE4158 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2DFB337698B2D41DB8589E6B2DEEAD /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC6CEA806EAD71E10889A5F384D92454 /* SwipeTableViewCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2B6A7FDE9C02E5631444EAFEABE2FF4 /* SwipeTableViewCellDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DC8394EFD100272143DE977DD6956D94 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB3FE9260FF62D8DE9711BF3243DCBA /* ConstraintPriority.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DD70B874DE1F23C2E0126CF953C5DCF4 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73AF1F0B2D73C0CCDEBCA94CB5846B2D /* ConstraintLayoutSupport.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DD919D643A68BBAC199AB35599037B17 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68B8C42068AD3BCBDF7280CA34F82E44 /* NetworkReachabilityManager.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DE7DF0FA2DB3E46B71CBE981B2A490D6 /* IGListIndexPathResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D57A972E07248927BD6CE9158351424A /* IGListIndexPathResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; DE8BE10990C815FDD8D29CD67A90D1DA /* FLAnimatedImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B673B6BA695BCBF7DF90C6B872A16F5C /* FLAnimatedImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DEF48B42D5EE4C806089F9090B6664ED /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE7111558C7E4833F783E94B25B360 /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DF083AE596ECB68C9085DC3F8E2B6520 /* IGListMoveIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C9C0DC82A2C2D18D601C84D9292CE7 /* IGListMoveIndex.h */; settings = {ATTRIBUTES = (Public, ); }; }; DF12215A4E9A4711811D1E6B4D718D6F /* IGListStackedSectionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBBAEAB33D6C764704BB5F14AC08722 /* IGListStackedSectionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; DFA3CBADAE2C478DB2CF90D4B339DDC7 /* IGListAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A21724992771E032C57EC6F9D2C79E7F /* IGListAdapter.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFB44EE132876433615BCA6A91DB8C22 /* ColorUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543230CC5E7A17CDADDCCB6E2881B274 /* ColorUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFD210889FC6826509896D66DB6BEA39 /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 665F94AD915F21D76EA8F2A9855D704C /* ru.lproj */; }; + DFDC3C5BAAA3A86C120C70D23DE8B494 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 981303E640FC18C78650F86C8A2083DE /* SDImageCacheConfig.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFDF4CD941BB4D49652FE0D27ECD7401 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2DFB337698B2D41DB8589E6B2DEEAD /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; DFEDBEF0389BCC85192D19B281FA53A1 /* IGListAdapterUpdaterDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC5DCCC5DCB2783716EC99FBBA43094 /* IGListAdapterUpdaterDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E11A6154EB7EA67773F4B7ED743B9803 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = F72502D9675A8E91A7B537DBB57C87AD /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E092B4945F0AEE5B027FD8567313D97F /* SLKTextView+SLKAdditions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1BAFCE7EB72D8F8908C9AA16136442F9 /* SLKTextView+SLKAdditions.h */; }; + E0E024F4C6371C8EA55F4D74F142A3D3 /* SLKTypingIndicatorView.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5FB430DC3E5DD021E8EDEA028F0A2774 /* SLKTypingIndicatorView.h */; }; E1234C372E4EE90E1D85A40D8BC173BC /* IGListBindingSectionControllerDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D09ABD151A648860BBF10CD6CE19CA80 /* IGListBindingSectionControllerDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1674AF09396BC05AAA9A333CC8EDFEC /* SwipeTableOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E96819E72D7BFF1013E965BFCE68FE9F /* SwipeTableOptions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E19F544FA2619E895D004F2FDDCC75DA /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A77B4A508DD0992CF75EB69778667A0 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; E28350C1F555DB75623A29D134CF4854 /* AsynchronousOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 478C8E5149B8C77A4D3DCD8356D29B99 /* AsynchronousOperation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E2AB06F0024736DC143CBFDC93E4E5F6 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DB6A81C876C7142551684B3975FE32E /* ServerTrustPolicy.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E2B6847BBBDF0AE30958BC73A22ECCC4 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD0EF6645CE033DCA5ACCA77F9AA497 /* ConstraintAttributes.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E3E1FB9FF1F1D38194E67A2F22B7B320 /* MMMarkdownExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E374E3033C5BF23B31B169D66D77E0 /* MMMarkdownExtensions.h */; settings = {ATTRIBUTES = (Public, ); }; }; E3FBA98778E02E08C884030A9DFCAE02 /* GraphQLQueryWatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F60C2AC22FE9F4ACA51ADC4E72481495 /* GraphQLQueryWatcher.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E41CDDBD5ABA2B8A3A5CDD24C9DB9925 /* TabmanBar+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB60EC8C3FE46CA08E39E5E0057A6B9B /* TabmanBar+Protocols.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E449731529779CAD26B88335353079E8 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F1E3A0F832D27CA1F2F6791E1CACE932 /* it.lproj */; }; E4A28AA9C03E5F52FE2B77CA8851FC7D /* FLEXNetworkObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 04E4E4E67DFD0E9A8077C4DF28553DF7 /* FLEXNetworkObserver.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E4EBC0283B77FEF4E5F574194F4EA9C5 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4AA7337851FD6A984C1D8102CE6C364B /* ja.lproj */; }; E591E5F8226A6B75929B6BD686E02047 /* FLEXLiveObjectsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BAAB26A0A3A199D36A17331933A5BA5D /* FLEXLiveObjectsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E65B3D9B6867DEC25799120C42489BC6 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1DA7D501A5162B32146DDFAB90C0AAB /* ConstraintView+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E5DBB7800109A7FC8922EE986B196EFD /* PureLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B878C8B0E98D96587416419743A98B04 /* PureLayout-dummy.m */; }; E681751059CD6031FC507340E41FA33D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; + E736CF8EC631637DA2E01938A0953147 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A86A5B40B1E38601AF456863BFDE814C /* ImageIO.framework */; }; E73FB824B25AD8C5262C44242E27B778 /* IGListAdapterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1C1C1CDB9745D2402C03C353C37C006 /* IGListAdapterProxy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E751819C9BBA019B521394641483407F /* FLEXManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF3B95712F1B8EC6B9978281880A567 /* FLEXManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E77BEBE6260B94D09CD9315FC6361E7F /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C7EC52BD6DBD81400F03343F77C070A /* Notifications.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E77C9647790CA5B0445150DD63669B0D /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08E5E0CAD475EAD5AF367CC2D334961F /* Request.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E80A0A506EAD71F2383C460C8D59AC94 /* TabmanBar+BackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 260DF7E465FCEF4331CF75EC2419F33D /* TabmanBar+BackgroundView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E80CE821687B7442EE7910DB9788554F /* FLEXLibrariesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BF2FE41CA7F8C328A490C4C34A598C /* FLEXLibrariesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8CFEB09758F26F5BA849D45656ADCAE /* TabmanBlockTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24B81E4ECDA63814C6D9E5106644B6E /* TabmanBlockTabBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E815A5FC28CC6C18276AFD061AAD5CDE /* TabmanItemMaskTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83009E80D8321FB36150B9566514EA8E /* TabmanItemMaskTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E83F76297B83B102EAA1050055C6A00D /* TabmanChevronIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42EB555A0477427D41034661A7F1F719 /* TabmanChevronIndicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E8B0CF6D3E3D40B60941591795130B5C /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C40BDDBCA76C1FFFFA71C40E0F3997E /* ConstraintLayoutGuide+Extensions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; E8F43096ABF74900B3439207589511A2 /* FLEXExplorerToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F5706AA8A6C7E2959A7B171DBB3813 /* FLEXExplorerToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E94940F98BEA476F59A4D116836AB0DA /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDDFC6848BC473AEBF4D62F2C3DD9D0 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; E9DD40F647F64D666E73D17E60AD9162 /* JDStatusBarNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF3E19A12BCEE664DECCEFAE725776F /* JDStatusBarNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9E26E7492101488F9975A4FF5BFF9EB /* UIScrollView+Interaction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 467C1A395572261496686D86A44EB014 /* UIScrollView+Interaction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EA6EAA8D4F78090CBE6C322A0FAA9DF9 /* eu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0D8867F3E0FD6970395EE28E7C14BA04 /* eu.lproj */; }; EAB9989218DD86381A09DC03E48A3A66 /* IGListBindingSectionController+DebugDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F08DC1E1DEF21238A9475C24B10575 /* IGListBindingSectionController+DebugDescription.h */; settings = {ATTRIBUTES = (Private, ); }; }; EAC320F60BF172923C9D287469892F30 /* FLEXFileBrowserTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D63C122188767A0DAE43D96CDC91B2 /* FLEXFileBrowserTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB159EA9BE3DB67759557FC00F3AE250 /* FLEXResources.h in Headers */ = {isa = PBXBuildFile; fileRef = AAACC8804F46FE971AD022D3C549B933 /* FLEXResources.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB45E9FFB742A3FB9087816A73C24BC3 /* Apollo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBA52E08E8E5AD46E798CFB463617A10 /* Apollo-dummy.m */; }; EB4E37A8FBA8D978E2953B20EE471A28 /* FLAnimatedImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA15D2AE15125765C0B4C12805BE952D /* FLAnimatedImage.framework */; }; - EB91C4AF5A7AB54BA31223B027D4F804 /* TabmanBar+Insets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ADDB64296489C97565AA18BC22A87A6 /* TabmanBar+Insets.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EC0D26AE7C8835FA59361535E136D59C /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FF929F0226B6F242FA0A6B68CB6315A /* Constraint.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EBBBF6429766146C2A44A6608DD4E24B /* SwipeExpanding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D8D2038F512E43E246316ECDC10692 /* SwipeExpanding.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EC71E909DB9F7399337ECB49329D53EE /* TUSafariActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 43344B29F74AEC161E0F48EF2C4F0D27 /* TUSafariActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; EC7975919033A4273F2E306690B956CD /* FLEXResources.m in Sources */ = {isa = PBXBuildFile; fileRef = 299555429A2FCFB1527C4753B340A030 /* FLEXResources.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; EC88657185F65C64B74CE936554E924C /* FLEXFileBrowserSearchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCF8C479D7BB2A702D81E9015E7F8B0 /* FLEXFileBrowserSearchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC8EC535FBCD115480C7D7E364B34E77 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 35EE425B50D3868A61CB29DFD8582186 /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; ECDABF08F98DEFAAEC59D6DDCD34033B /* IGListGenericSectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D563B9DAB2CBFE2D1021E44DE43738 /* IGListGenericSectionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; ECEF765E7FE4492B8ED325656BC78212 /* FLEXFileBrowserSearchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E5FF76300FDD0A863926A9704837CEE /* FLEXFileBrowserSearchOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; ED2852D5FA298457B8DBE1E6DCD4BCE6 /* FLEXWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 084ADDE1E5A6D25798A752224BEF3C23 /* FLEXWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED604E05DCFAB7276BE353F8619E5A96 /* FLEXArgumentInputStructView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6AC62F0C719C7C272559A3A5DA1ADD4 /* FLEXArgumentInputStructView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; EDD16A688FBA4C8D8B21A2A3EEC8956C /* FLEXClassExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E86F71E8A693C631EC9DE7DECBBE060E /* FLEXClassExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; EE791FB393AEEC5F90CBB925AC25ABF3 /* FLEXGlobalsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE3E13C53AA3354B64013DABA2BE071 /* FLEXGlobalsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE92934BB5741B01207616D6E183AF4D /* SLKTextInput.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3DB9076A00E6253F4FB252318201269E /* SLKTextInput.h */; }; EE99C27F275DE27F96F9D80161B8DFAC /* FLEXToolbarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DF9F1C87F53B53D4B7D03DE377EA93 /* FLEXToolbarItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EF69FE74EF61EFF7122F1C0B518B00CE /* safari~iPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 69C5D99B7CB277601BE4687E34742695 /* safari~iPad@2x.png */; }; + EF077D04CD354499455470C11F651028 /* TabmanBar+Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA19B0EF72B0C5617EC14D6F85CBB7FC /* TabmanBar+Indicator.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; EF8C19A205B9F97DB98CBEF1D9979DD5 /* IGListDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = D96CEC9421AED28A4BA34826FD541AB6 /* IGListDiff.h */; settings = {ATTRIBUTES = (Public, ); }; }; F0A4BFE43B74D8A6B477EDE8B44DE3B8 /* FLEXMethodCallingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F2830406624967E68044FE33B67DE95 /* FLEXMethodCallingViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; F0A87FD6AF66AF3E72702D4E97126F67 /* IGListDisplayHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FAC0C7DCF5372149F3D5DE2732E4E5B /* IGListDisplayHandler.h */; settings = {ATTRIBUTES = (Private, ); }; }; - F0D5277FC4465196484A6FB5F6735B27 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F1E3A0F832D27CA1F2F6791E1CACE932 /* it.lproj */; }; - F1E11558ECCDE830398AB5245F8818F6 /* TabmanItemMaskTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83009E80D8321FB36150B9566514EA8E /* TabmanItemMaskTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F1064A3D00F468B9C739A4AA72D0B1EC /* SLKTypingIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF76FB85B7287B5B89391346CB64565 /* SLKTypingIndicatorProtocol.h */; }; F1ED4E96CAFAC5F2969863B72B674894 /* FLEXTableLeftCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B67CDB41CE22F9401795B7F714C8A245 /* FLEXTableLeftCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1EE724B93ADB4E20CAD07F02470EC6F /* FLEXArgumentInputNotSupportedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A2313F547B90666FC64B0ED94E0364 /* FLEXArgumentInputNotSupportedView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; F22BD127EDED9B6071A7B0F61B88EECE /* NSString+IGListDiffable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E32D93CCD9FDFC5D09A4DC89B624FE7 /* NSString+IGListDiffable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; F23913A2C2605F6BD3E645B11FD28419 /* IGListStackedSectionControllerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D882948FCA8BEB295A3822B534F07D /* IGListStackedSectionControllerInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; F2409B7CB31DA1019D2E9800C9ABAC54 /* FLEXArgumentInputSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6039842970711F8271CC444E501BF3C8 /* FLEXArgumentInputSwitchView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F28DC2F867CF987158262E6224DBAC59 /* Tabman-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F50FA0DAF062C2532C2A3742D585AE /* Tabman-dummy.m */; }; + F36880D287BEE7E4A2CD4BFC6B40492A /* TabmanBar+Layout.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA68B8D0A1FD20A10C9B8C5C1C9BA674 /* TabmanBar+Layout.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; F39F74FC3C7EBBA7E7653B841E26413C /* PageboyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5C32F778C7F635D64986F4507BC475B /* PageboyViewController.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; F484B32DC8234D887B7E46754BA6F10F /* IGListSectionMap+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE14A8E189594394A6B6B460EA543F9 /* IGListSectionMap+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F5400E03E8261742FD43460CD9DAC11F /* safari.png in Resources */ = {isa = PBXBuildFile; fileRef = 06AB965BE21346AD522FC367D36896DA /* safari.png */; }; + F4DBAF95F5934F0AB4C804B049B7B098 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; F552852CF62BC0FC2DAD41DC5E8DC17C /* FLEXCookiesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E2E504686BB800A82EAAD7B0DC8AC8 /* FLEXCookiesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5DA014C2F9AA514F964B6F8DEFD4A51 /* ViewUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DA3A8F26E2DD2158C0D256B5EF85A96 /* ViewUtils.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F5C8CAA935F37C748E5A65F5DD295764 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; F5EB0AFBBAACBFD6327FC106AEA263D1 /* FLEXNetworkHistoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F66D95718B756D6F26C099B73FB2F6 /* FLEXNetworkHistoryTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F6D7D582D55EC81F743ADB337206148E /* Tabman.h in Headers */ = {isa = PBXBuildFile; fileRef = 370ABB8C4F7E073586410F97834A89C3 /* Tabman.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F74CF10E5A7215C12FC4AE9A8D6CD7DC /* no.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4512FC4CC476A14F47EC8BB813EF1C79 /* no.lproj */; }; + F69AB144D4D1DD913659EA5AFEFA4784 /* MMMarkdown.h in Headers */ = {isa = PBXBuildFile; fileRef = 074CC59266FADD304420ED4E93DF84D8 /* MMMarkdown.h */; settings = {ATTRIBUTES = (Public, ); }; }; F783CF36F3425ED21A81D8C468897992 /* FLEXNetworkTransactionDetailTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA3349B4720C835F3CE02F345C01D9C /* FLEXNetworkTransactionDetailTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; F785D33BE5FA2D0A912238380B4636FE /* WeakWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FA6DA53189B938C6E9FD822B66950 /* WeakWrapper.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F7926BC4062CB46A049C3E9244571BF8 /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 665F94AD915F21D76EA8F2A9855D704C /* ru.lproj */; }; F7BB4C81F15F14F43E0A45086B00F98E /* NSNumber+IGListDiffable.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F8E905BEC7E1E2827821873DD72EC8 /* NSNumber+IGListDiffable.h */; settings = {ATTRIBUTES = (Public, ); }; }; F7EC9E88FBFC6CF8F627750179ECFD7F /* IGListGenericSectionController.h in Headers */ = {isa = PBXBuildFile; fileRef = D804970B05B85C44197566732854F0E7 /* IGListGenericSectionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; F8C22D0AEEF29BD8B9EE3F3D720F3F23 /* FLEXGlobalsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED2200533A35533DA525E77CA8A1966 /* FLEXGlobalsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F8EF16A2E6440A56E9D8B10EC30893E4 /* sv.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DFB4D6B30225588C1B3BD36316A7D19B /* sv.lproj */; }; F9257030AC5C399AE21C32F064766489 /* IGListMoveIndexPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 07668583774E64B19288B7C1A5C3406D /* IGListMoveIndexPath.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks -w -Xanalyzer -analyzer-disable-all-checks"; }; }; F93A54913F4F5983515DC71BC1D4E823 /* FLEXNetworkSettingsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 589CE4CB87CDDA14AF1498E4E687DDE4 /* FLEXNetworkSettingsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; F96E2E40D541AE8626B7BFDBC8F95FC0 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A8154D316322CCF346D629BB50401C2 /* Timeline.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FA02995273AE47966FB43E5B8B9BC151 /* PureLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B878C8B0E98D96587416419743A98B04 /* PureLayout-dummy.m */; }; + FA5EE635D0CFC3D4738C54AFE91D060A /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A5D684CF8A9E6A625E7D505F81221200 /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; FAAA174AB194DF58D7BCD18264D3E2FE /* GraphQLOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 254359688490CDAD4C9AD0AD3C41B894 /* GraphQLOperation.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FAAA3F946F7D04B3C344C149F617A119 /* UIView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 41965E68B7B0078954689EDB62266581 /* UIView+SLKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; FB6D82B5DE9AD5B15327747A35C5A7F1 /* FLEXObjectExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 59DE342DB17E11241ABD5F317B1EC468 /* FLEXObjectExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC33EE68EC05F4F0483A134EA90DE95 /* NYTScalingImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8412BA85F9D3B1E6DC7E26595223DB99 /* NYTScalingImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; FC1C9A2E275F0986E04F0245A448E708 /* IGListBatchUpdateData+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = AD0F16985570887335D91D3A386B8F0B /* IGListBatchUpdateData+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; FC31D9407033F7310F3854267887B4E9 /* GraphQLTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB18D6FFBFDC31EACA1C79413A6284EA /* GraphQLTypes.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FC5C19D5960691F91BCC683D9A94A622 /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 937975DB86A76C80EBD95F773A8CAA20 /* ko.lproj */; }; + FCCF57F38271D119ED3BC59E3C7E60D7 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 175000655A878B23CBE6A8B8C4D03C02 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; FCE7BACCE77B93D2F814BB109CBAE908 /* IGListAdapter+DebugDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = CB84591C3EB29EE678BD2885E0893DAA /* IGListAdapter+DebugDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FCE9C9605737672EBAE7A33C7E4B7AF7 /* PureLayout+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3FD62E6CEAED9798E63BC05FF09DB7 /* PureLayout+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FCED85E6D2255356EF6A9DF35502BC6B /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E49624D2539B69708D81035DC502F7 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FD0E20FACA1CE5B25CAF7807B30B386F /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D538736C1B6CB884409A4F8AB6FE75 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; FDC68CDC62445A659F7AB5846127C933 /* IGListKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1F103C7E3997882DC202FB656B3E87 /* IGListKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE1CB2E1D0C4E5F19AA04DCB69D67BA9 /* TabmanButtonBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BE70D92A1F6ED87687A6493C11A7B51 /* TabmanButtonBar.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; FE67F0F4A2FB004B554A6A5BED9EC695 /* FLEXTableContentViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECAE0DC78B0115C3B79F7544DD75233 /* FLEXTableContentViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF4D99AFEDC3FA93C1D1DCC7C1D58E37 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C8783F6CDDEEE41FDDA682AAA5E8C1 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FEB6FC91E7A550E3F689DD62F4C4095F /* Tabman-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F50FA0DAF062C2532C2A3742D585AE /* Tabman-dummy.m */; }; + FF3151E2F92048E84BD89E59E9B00EE0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */; }; FF688C35B73B4A617F6883A5C8CB3210 /* FLEXViewControllerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1230C39E4FF248C05C5DD8FEEFEBF2 /* FLEXViewControllerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFC0F9C8BFF8C66C6EA4C5DE3F0940E3 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4DF401D76AA82DF13880774BAF728A /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; FFE2381B51AA4754E7B73EF63CBD5F25 /* FLEXArgumentInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9824124F795347FA843108B164F9DC89 /* FLEXArgumentInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFF7D18336BE34CD2EB2527F05085AAF /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C52489087FB33ED9DBCBA6F4A22334 /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -586,153 +666,209 @@ remoteGlobalIDString = B0F535BA07C1CA1E7384B068B2171E24; remoteInfo = FLAnimatedImage; }; - 056B870676E2BFB06AD288B6CBF7D8DA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 073635E92FDDBFE48DDDA57C2BA819BD; - remoteInfo = SDWebImage; - }; - 0746C4F5FD10067162E19C3360F16768 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = FD7D2BB4C0EE06161E29675AA10FF5B9; - remoteInfo = SnapKit; - }; - 0CD576AE8F10A1D8DE665FD23D0BCB69 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087D09C9280518CA4414F49A5401F47A; - remoteInfo = AlamofireNetworkActivityIndicator; - }; - 19C269444DE9228D6F1C3F0FCCBFE2F1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABE45CF6BEA566FD872550B6586AE2F5; - remoteInfo = IGListKit; - }; - 1B815428C76C45C9A1BA68F170B40FF5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = FD3618ED40B9ACFFBBE35CA6D582EA89; - remoteInfo = FLEX; - }; - 22B6EE18CC6540C6DA8BC607322C6B00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7FF7A362EC994DDEA78314CC617F57A7; - remoteInfo = "TUSafariActivity-TUSafariActivity"; - }; - 2DD1A856161E44ECB9BFBBCEF77FC99F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 479DFC5835018DAF6FB5C60B1E5EA6BB; - remoteInfo = Tabman; - }; - 36BB8655FEB66F53ED4C51A0E1717F7C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66B239826EF1D39D2D6C594AC2DBFF77; - remoteInfo = Alamofire; - }; - 464A9FD1AB4FBB8F9F8DA2C85DA5ED50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = AA08AA8840B2F0FAB101D1A403A4C9F9; - remoteInfo = PureLayout; - }; - 473B5578C54FC7F9E61ABD686371A19E /* PBXContainerItemProxy */ = { + 029808AE5C97D85F0B70BEDE27C54530 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 309332BD9B29CA3688BBE5E022D42BB3; remoteInfo = NYTPhotoViewer; }; - 48C680DCA7AC2A0A1B54DB6FAE1A5F55 /* PBXContainerItemProxy */ = { + 08C60411E2B9B08D6F23F0AD364F9F82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = C377DF21B436B67266B44EA4707B8390; - remoteInfo = JDStatusBarNotification; + remoteGlobalIDString = 6ACEDEAF6680EEB03B7DB300E7317B92; + remoteInfo = TUSafariActivity; }; - 4EEDFC319119C8648F3D3DE76D5CACDB /* PBXContainerItemProxy */ = { + 0A4FF67C3DF18A8B93EBA0F1EA8AF8D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = B0F535BA07C1CA1E7384B068B2171E24; - remoteInfo = FLAnimatedImage; + remoteGlobalIDString = ABE45CF6BEA566FD872550B6586AE2F5; + remoteInfo = IGListKit; }; - 54DA2C7E331E72B886AFC62E9F5AC975 /* PBXContainerItemProxy */ = { + 0AD02A341279F873C8D7B7C7F999DA84 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47BCCC24C423E83806D8086C877EAFB8; + remoteInfo = Pageboy; + }; + 0AE566D8FB9AC0C80C4DDD9AD4149CB1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31EE864F9EE2C6DEFCE734CD5EC21E83; + remoteInfo = PureLayout; + }; + 10774DD969B36495A28717E66D0BC7A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = D2BB6B84BA7576195BC3964484476114; remoteInfo = Apollo; }; - 5E774BAB30638C91B4CC8A52D11AE39D /* PBXContainerItemProxy */ = { + 155B791DE808D4254F675A7E57FDC6A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0023DF362DE7EC48C26408D57F325B3D; - remoteInfo = TUSafariActivity; + remoteGlobalIDString = 45AE7B562A5B3C0683612BD0EA5F630C; + remoteInfo = "TUSafariActivity-TUSafariActivity"; }; - 5F40651CD01188014DF26AB43B982513 /* PBXContainerItemProxy */ = { + 15C76D59A46BCD89AB56869111FF9EF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47BCCC24C423E83806D8086C877EAFB8; - remoteInfo = Pageboy; + remoteGlobalIDString = 56AD1AD0164A41F3420AA12199B694A8; + remoteInfo = SDWebImage; }; - 61B6604CBFC5FCF948EEC7D89C4148FF /* PBXContainerItemProxy */ = { + 19E89ACE91CA436E394B4B3DD8D79935 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0023DF362DE7EC48C26408D57F325B3D; - remoteInfo = TUSafariActivity; + remoteGlobalIDString = 66B239826EF1D39D2D6C594AC2DBFF77; + remoteInfo = Alamofire; }; - 694D87BCDC328E7B62775607A5051DEF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = B0F535BA07C1CA1E7384B068B2171E24; - remoteInfo = FLAnimatedImage; - }; - 7FC00B32987AB17B077765C46FC3037D /* PBXContainerItemProxy */ = { + 1B399AE63B73EA9E36868E64CEF7AAEF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 087D09C9280518CA4414F49A5401F47A; remoteInfo = AlamofireNetworkActivityIndicator; }; - 84413C26B3483E99872BBAE25BD06351 /* PBXContainerItemProxy */ = { + 32323C9B21941DA83A73CDDD7283E1E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47BCCC24C423E83806D8086C877EAFB8; - remoteInfo = Pageboy; + remoteGlobalIDString = 25387FA5BA01EFE7846214CC628290DD; + remoteInfo = MMMarkdown; }; - 9993787E440D0190BACC2D38CEC38D80 /* PBXContainerItemProxy */ = { + 3919AE5CB79C192DD30B9125317E7724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4DA933E2A562DDBD4F154B1CDB899D3E; + remoteInfo = HTMLString; + }; + 3A962B85FC639F86CA274F0DDFD9CDA0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31EE864F9EE2C6DEFCE734CD5EC21E83; + remoteInfo = PureLayout; + }; + 48CAA7EEFA3FC189763C2A8927CB9926 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 309332BD9B29CA3688BBE5E022D42BB3; + remoteInfo = NYTPhotoViewer; + }; + 5052425942F198878FE0A5445ECCCF0E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6ACEDEAF6680EEB03B7DB300E7317B92; + remoteInfo = TUSafariActivity; + }; + 53588B6E1825B3FF3DFC5B757227DBA9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C377DF21B436B67266B44EA4707B8390; + remoteInfo = JDStatusBarNotification; + }; + 562EAB21BA88AB142F668CCF33769B7C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = CCE618C3977F9DC5DA78211D580D9FB3; + remoteInfo = SnapKit; + }; + 5813952D86A86464E56F82B2BF6AE2C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2BB6B84BA7576195BC3964484476114; + remoteInfo = Apollo; + }; + 6216C64CCF3B22D02C617D14DF81F575 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = FD3618ED40B9ACFFBBE35CA6D582EA89; remoteInfo = FLEX; }; - 99AB6E8FC25ACCE30F254CBD7A1DF821 /* PBXContainerItemProxy */ = { + 63D6B5331A1469B4F51456E61590252D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = AA08AA8840B2F0FAB101D1A403A4C9F9; + remoteGlobalIDString = 4F7577A0328F39BF7EC7E8E1692FAC1D; + remoteInfo = SlackTextViewController; + }; + 6A0399735E899157F9FF0A4927DD6AD0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7222DCFF04E5B5969CBEDABAB0365218; + remoteInfo = Tabman; + }; + 6AA78D2D2FC773571BADF5613D58CFD6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C377DF21B436B67266B44EA4707B8390; + remoteInfo = JDStatusBarNotification; + }; + 6CDC3DEBB1569AE7A03EEC8A6B0AEE40 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31EE864F9EE2C6DEFCE734CD5EC21E83; remoteInfo = PureLayout; }; + 7D98B31AC0361649CCAF19DCCE06F40B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B0F535BA07C1CA1E7384B068B2171E24; + remoteInfo = FLAnimatedImage; + }; + 7EC3B829281AF3CBF2DBAB3CADE643AD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F7577A0328F39BF7EC7E8E1692FAC1D; + remoteInfo = SlackTextViewController; + }; + 97DF2C81355079EDF308D7AB1908C57F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B0F535BA07C1CA1E7384B068B2171E24; + remoteInfo = FLAnimatedImage; + }; + 9DB8B5BA981011B5DBE889C08781BA5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 56AD1AD0164A41F3420AA12199B694A8; + remoteInfo = SDWebImage; + }; + A1CA77F61CCB41429A5CF60DBA7FD1E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4DA933E2A562DDBD4F154B1CDB899D3E; + remoteInfo = HTMLString; + }; + A2C28A4D4696D9B9AEB290DADF04C767 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66B239826EF1D39D2D6C594AC2DBFF77; + remoteInfo = Alamofire; + }; A78864EC162CBC9CFBA512F8E7F511B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -740,19 +876,12 @@ remoteGlobalIDString = 4DCCD366622495856554FC72493F6F91; remoteInfo = "NYTPhotoViewer-NYTPhotoViewer"; }; - AEB83136DB9DC9CAD64A7B6274C29C4C /* PBXContainerItemProxy */ = { + A8E7F9D68563A3068AD1E9ACD6BC93EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = FD7D2BB4C0EE06161E29675AA10FF5B9; - remoteInfo = SnapKit; - }; - B7BAC43C88451762557CFCB3D11B694F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4DA933E2A562DDBD4F154B1CDB899D3E; - remoteInfo = HTMLString; + remoteGlobalIDString = 47BCCC24C423E83806D8086C877EAFB8; + remoteInfo = Pageboy; }; BDC86891029325593D05CA29E7ED465F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -761,83 +890,103 @@ remoteGlobalIDString = 66B239826EF1D39D2D6C594AC2DBFF77; remoteInfo = Alamofire; }; - BFA8B5A542F722C2A6FB01FF61A5F1A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 073635E92FDDBFE48DDDA57C2BA819BD; - remoteInfo = SDWebImage; - }; - CC3DB176B671C302D9BDEBBEB8EB9D91 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4DA933E2A562DDBD4F154B1CDB899D3E; - remoteInfo = HTMLString; - }; - D625F983E5B5EA8F95C6312F78505B79 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2BB6B84BA7576195BC3964484476114; - remoteInfo = Apollo; - }; - D9657201E6CB4487086CFCCD2C2A9A81 /* PBXContainerItemProxy */ = { + BEB0A815EE82E6E18032E10A8126907E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 47BCCC24C423E83806D8086C877EAFB8; remoteInfo = Pageboy; }; - DA42ECBC58C5A71F001F93185244F236 /* PBXContainerItemProxy */ = { + BF6370E4C38DBD1ECAD4ECD93E1F1E0B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C1A01781C99518DC8974E992A1F3878; + remoteInfo = SwipeCellKit; + }; + C5C5191E25FFD6A26CBCEF0C2E70F091 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087D09C9280518CA4414F49A5401F47A; + remoteInfo = AlamofireNetworkActivityIndicator; + }; + CB2D8F932BDDE9F63AFA0EDC7F3174FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C1A01781C99518DC8974E992A1F3878; + remoteInfo = SwipeCellKit; + }; + D494ED1CE140A13F68DA02D27F012FED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7222DCFF04E5B5969CBEDABAB0365218; + remoteInfo = Tabman; + }; + D7C1E704EB76BC5B3E8F5EE58A48CA65 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = FD3618ED40B9ACFFBBE35CA6D582EA89; + remoteInfo = FLEX; + }; + E8CAA0E072B4F98D7ECB8F8525B726E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = ABE45CF6BEA566FD872550B6586AE2F5; remoteInfo = IGListKit; }; - DBAB50034CB2F7BAE6B0C28D6C3FE72B /* PBXContainerItemProxy */ = { + E9D3E518E17CF5DAE79DF427CE5D7752 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = C377DF21B436B67266B44EA4707B8390; - remoteInfo = JDStatusBarNotification; + remoteGlobalIDString = CCE618C3977F9DC5DA78211D580D9FB3; + remoteInfo = SnapKit; }; - DD62C3B59C3961B9AF42E421E59572BB /* PBXContainerItemProxy */ = { + FE1DA3284F2370B7AEB027C498195B37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 479DFC5835018DAF6FB5C60B1E5EA6BB; - remoteInfo = Tabman; - }; - E072D9067650AE900F1F888683F59336 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 309332BD9B29CA3688BBE5E022D42BB3; - remoteInfo = NYTPhotoViewer; - }; - F0092CDFD6F4DD635EE96B56D14041FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66B239826EF1D39D2D6C594AC2DBFF77; - remoteInfo = Alamofire; - }; - FCBA7FC02381EDF2E5CEE48DC35738E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = AA08AA8840B2F0FAB101D1A403A4C9F9; - remoteInfo = PureLayout; + remoteGlobalIDString = 25387FA5BA01EFE7846214CC628290DD; + remoteInfo = MMMarkdown; }; /* End PBXContainerItemProxy section */ +/* Begin PBXCopyFilesBuildPhase section */ + 53DADAD2BAE6F3194A24848DC0101A60 /* Copy . Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstSubfolderSpec = 16; + files = ( + CDD90A0431256FF9D8313A9B0CFDED0F /* SLKInputAccessoryView.h in Copy . Public Headers */, + EE92934BB5741B01207616D6E183AF4D /* SLKTextInput.h in Copy . Public Headers */, + 7CA43F203962FA0AD8DF52D4B35B2DDD /* SLKTextInputbar.h in Copy . Public Headers */, + E092B4945F0AEE5B027FD8567313D97F /* SLKTextView+SLKAdditions.h in Copy . Public Headers */, + 25101D61F73EB9B8937655DCFE10389B /* SLKTextView.h in Copy . Public Headers */, + 0D11D8AEEBB8E8EE8237B6B66B36057A /* SLKTextViewController.h in Copy . Public Headers */, + 9077DD8F7235F641041DB41B1A8F0B07 /* SLKTypingIndicatorProtocol.h in Copy . Public Headers */, + E0E024F4C6371C8EA55F4D74F142A3D3 /* SLKTypingIndicatorView.h in Copy . Public Headers */, + C8A4B6529CFC7E3F5C51D0265011371B /* SLKUIConstants.h in Copy . Public Headers */, + 0204AF52304D7759E07AF09AC11B9C4C /* UIResponder+SLKAdditions.h in Copy . Public Headers */, + C0CA45A879959FABD48FBBC59A581B61 /* UIScrollView+SLKAdditions.h in Copy . Public Headers */, + 3C1139A5DB367F28BD7B1B32377DE85A /* UIView+SLKAdditions.h in Copy . Public Headers */, + ); + name = "Copy . Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + /* Begin PBXFileReference section */ 003B75481ED00759B444F5D32F161A03 /* HTMLString.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = HTMLString.modulemap; sourceTree = ""; }; + 00E782396C20F1C2F8371B697FC6524C /* SLKTypingIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SLKTypingIndicatorView.m; sourceTree = ""; }; 00EDBFCFBCD855E2424B14D7978E7C08 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; 01E5DFF00AAA5314A0B303B80046C4CE /* TabmanLineBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanLineBar.swift; path = Sources/Tabman/TabmanBar/Styles/TabmanLineBar.swift; sourceTree = ""; }; 01F080AB9A2F0EE0C8A8F9162BE0D1EA /* FLEXTableColumnHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableColumnHeader.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h; sourceTree = ""; }; + 022362F8DCAF9E851C3953A272C21FB7 /* SwipeTableViewCell+Accessibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "SwipeTableViewCell+Accessibility.swift"; sourceTree = ""; }; 02D563B9DAB2CBFE2D1021E44DE43738 /* IGListGenericSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListGenericSectionController.m; path = Source/IGListGenericSectionController.m; sourceTree = ""; }; 03463CE8BFA3A766BC9711BD98C8C8F0 /* IGListCollectionViewLayout.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListCollectionViewLayout.mm; path = Source/IGListCollectionViewLayout.mm; sourceTree = ""; }; 0348CF690D93B748590341445498B2FF /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Source/ConstraintViewDSL.swift; sourceTree = ""; }; @@ -845,11 +994,13 @@ 048FD4EA6A67964C8C5E5CB9139DFFA9 /* UIPageViewController+ScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPageViewController+ScrollView.swift"; path = "Sources/Pageboy/Utilities/ViewUtilities/UIPageViewController+ScrollView.swift"; sourceTree = ""; }; 04BF2FE41CA7F8C328A490C4C34A598C /* FLEXLibrariesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLibrariesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h; sourceTree = ""; }; 04E4E4E67DFD0E9A8077C4DF28553DF7 /* FLEXNetworkObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkObserver.m; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.m; sourceTree = ""; }; + 04F41E67FE1C98249FEDB1C4BC7C8425 /* MMGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMGenerator.m; sourceTree = ""; }; 056478415B43A0BABD537BDCE3E962A6 /* TabmanLineIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanLineIndicator.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/Styles/TabmanLineIndicator.swift; sourceTree = ""; }; 0587E23D05475D643E50B91959E82A45 /* TUSafariActivity.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TUSafariActivity.modulemap; sourceTree = ""; }; 05ACA7FC47C4F59349B5AC3788DF2C0D /* FLEXCookiesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXCookiesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.m; sourceTree = ""; }; 06AB965BE21346AD522FC367D36896DA /* safari.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = safari.png; path = Pod/Assets/safari.png; sourceTree = ""; }; 0721A7D39CDA84DF4F3A663578781B49 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; + 074CC59266FADD304420ED4E93DF84D8 /* MMMarkdown.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMMarkdown.h; sourceTree = ""; }; 07668583774E64B19288B7C1A5C3406D /* IGListMoveIndexPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListMoveIndexPath.m; path = Source/Common/IGListMoveIndexPath.m; sourceTree = ""; }; 0799819BAF67F8003101DBB793F574DE /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.h; sourceTree = ""; }; 07C2005BCBCF49D024C106103CE49BC2 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = Classes/Network/FLEXNetworkRecorder.h; sourceTree = ""; }; @@ -859,24 +1010,25 @@ 09FBC70192F1233A33D2CE6FA9017B23 /* IGListWorkingRangeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListWorkingRangeHandler.h; path = Source/Internal/IGListWorkingRangeHandler.h; sourceTree = ""; }; 0A6865D7D5F73AA5705C0B1FDEB5D0B1 /* IGListAdapterUpdater+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListAdapterUpdater+DebugDescription.h"; path = "Source/Internal/IGListAdapterUpdater+DebugDescription.h"; sourceTree = ""; }; 0AEDABF7D0A8B7809385A2388706B851 /* FLEXNetworkSettingsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkSettingsTableViewController.m; path = Classes/Network/FLEXNetworkSettingsTableViewController.m; sourceTree = ""; }; + 0B20392CDE628D7E2A9CF898153F5B99 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 0B4675537AA7C13D3CA4C2C9FCA1FF5A /* Fragments.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fragments.swift; path = Sources/Fragments.swift; sourceTree = ""; }; 0BA84E01B196295B5712FDD42AA761E7 /* JDStatusBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarView.h; path = JDStatusBarNotification/JDStatusBarView.h; sourceTree = ""; }; 0BFD10645EB188049AB9892B2CF776B9 /* IGListBatchUpdateState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdateState.h; path = Source/Internal/IGListBatchUpdateState.h; sourceTree = ""; }; 0C40BDDBCA76C1FFFFA71C40E0F3997E /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Source/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 0D06E85E70F68AB59BC215C1DE648ADD /* MMParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMParser.h; sourceTree = ""; }; 0D236A0B736BCDEF3392AFCE7D98E279 /* FLEXSQLiteDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSQLiteDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h; sourceTree = ""; }; 0D8867F3E0FD6970395EE28E7C14BA04 /* eu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = eu.lproj; path = Pod/Assets/eu.lproj; sourceTree = ""; }; 0EF655B990FB011FBD3779F0F35BF41D /* Pods-Freetime.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Freetime.modulemap"; sourceTree = ""; }; 0EFAB1A691CD6602774A1D85D9EEA2E6 /* FLAnimatedImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-prefix.pch"; sourceTree = ""; }; 0EFC4E2C1B55EF86288ADF6915E69542 /* Mappings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mappings.swift; path = Sources/HTMLString/Mappings.swift; sourceTree = ""; }; - 0F4BDD9B7BFE4640C7A36F6BF32679C7 /* AlamofireNetworkActivityIndicator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AlamofireNetworkActivityIndicator.framework; path = AlamofireNetworkActivityIndicator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 0F4CE585FA9F0493ED034E32F8422560 /* FLEXLibrariesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLibrariesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.m; sourceTree = ""; }; 0F5C49D33BB6F6B73E5866DED93E3AA8 /* UIView+AutoLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+AutoLayout.swift"; path = "Sources/Pageboy/Utilities/ViewUtilities/UIView+AutoLayout.swift"; sourceTree = ""; }; 0F5DC703D52594AA896F0B1D4DF6B14F /* Apollo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Apollo.modulemap; sourceTree = ""; }; - 0F877D71D3D57B9F7334013BD344ABFD /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 0F9D20806C0D9E3FCA3A06A48BE81E28 /* Pods-FreetimeTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeTests-resources.sh"; sourceTree = ""; }; 0FF85F44BAD64DD374FDDF274FD7F4E1 /* Pods-Freetime.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Freetime.release.xcconfig"; sourceTree = ""; }; 0FF929F0226B6F242FA0A6B68CB6315A /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Source/Constraint.swift; sourceTree = ""; }; 1029E41186AB92D817CFFA80E13E0C34 /* Field.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Field.swift; path = Sources/Field.swift; sourceTree = ""; }; + 1046C541978C110A04C135C4F0E2A56E /* SlackTextViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SlackTextViewController.modulemap; sourceTree = ""; }; 10BCC792A829CB7FF50F078115A0654C /* FLEXRuntimeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRuntimeUtility.h; path = Classes/Utility/FLEXRuntimeUtility.h; sourceTree = ""; }; 112A85C6E3257E508C63191C2AFF5682 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; 113BCBDE2B4A82BD141CB00176912082 /* IGListAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapter.h; path = Source/IGListAdapter.h; sourceTree = ""; }; @@ -885,11 +1037,13 @@ 136DA3F08BD35D9FFAA449F323F92AC0 /* FLEXArrayExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArrayExplorerViewController.h; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.h; sourceTree = ""; }; 13B06C91837494EE35F6D8DAC7882C8D /* PureLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PureLayout-prefix.pch"; sourceTree = ""; }; 13C01310C25AEBA97676D7FE846A277D /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + 13F263270E6D0A4E32080B5BAC1EDBA0 /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLEX.framework; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 1442DE2E3DC74B2FAEBE8A95D6A3A8F5 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; 14573AF6FDA3234A2582882D153C8191 /* IGListKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = IGListKit.modulemap; sourceTree = ""; }; 14B4BDADEEFFE0CAD71E92FEF33B942B /* safari@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari@3x.png"; path = "Pod/Assets/safari@3x.png"; sourceTree = ""; }; 14EB19DFC8B6C7BB8477863A8B2A2365 /* FLEXArgumentInputViewFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputViewFactory.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.m; sourceTree = ""; }; 14FBCD335B9D4C1D1E4008F6E585BAA7 /* IGListMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMacros.h; path = Source/Common/IGListMacros.h; sourceTree = ""; }; + 150E7B0F62E5178288A6797A7421468C /* SwipeCellKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwipeCellKit.xcconfig; sourceTree = ""; }; 15C8C54782EFA2A4C795A3678913CE94 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; 163CFF98962212A97C10027EE4D816E4 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; 164DCD0A4C4ECA576B8A657F6AD46CB4 /* IGListDebuggingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDebuggingUtilities.h; path = Source/Internal/IGListDebuggingUtilities.h; sourceTree = ""; }; @@ -897,13 +1051,14 @@ 175378D828B6BB35F67DA0B1E46B4589 /* IGListAdapterUpdater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdater.h; path = Source/IGListAdapterUpdater.h; sourceTree = ""; }; 18AF89644E8E4B1042762E9D80D38933 /* FLAnimatedImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FLAnimatedImage.modulemap; sourceTree = ""; }; 18B257F0390F6B13B028DE5ABF886A95 /* NYTPhotosViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotosViewController.m; path = Pod/Classes/ios/NYTPhotosViewController.m; sourceTree = ""; }; - 1949A153766718480CE3B9678D4BF9D6 /* Pods_FreetimeTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_FreetimeTests.framework; path = "Pods-FreetimeTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 1992D3CD7E5A24A2C244F63C55B2693F /* JDStatusBarStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarStyle.h; path = JDStatusBarNotification/JDStatusBarStyle.h; sourceTree = ""; }; 1A19363DEA756AC07E734E1942A8CD8E /* JDStatusBarNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarNotification.m; path = JDStatusBarNotification/JDStatusBarNotification.m; sourceTree = ""; }; 1A437ACDBD191DC6AE12A9BFB5584A05 /* Pods-FreetimeTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-FreetimeTests.modulemap"; sourceTree = ""; }; 1A4A16DD4A88993BE81C6574801C2755 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = Pod/Assets/pl.lproj; sourceTree = ""; }; + 1BAFCE7EB72D8F8908C9AA16136442F9 /* SLKTextView+SLKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SLKTextView+SLKAdditions.h"; sourceTree = ""; }; 1BB632AEA72E5B61B931FA8385F811E4 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; 1BDDFC6848BC473AEBF4D62F2C3DD9D0 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; + 1BEE6232BBDFC8AF93D0A572D9B04EEC /* SwipeActionButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeActionButton.swift; sourceTree = ""; }; 1C7EC52BD6DBD81400F03343F77C070A /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; 1D025B7E49FB9F10F340BF992D509799 /* FLEX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FLEX.modulemap; sourceTree = ""; }; 1D4033C93B21031A530B9D68A84F6829 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; @@ -920,13 +1075,14 @@ 206B89886786C1A7D29EAA7DF1464C01 /* NYTPhotoViewerCloseButtonXLandscape@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "NYTPhotoViewerCloseButtonXLandscape@2x.png"; path = "Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@2x.png"; sourceTree = ""; }; 20D90B1A4EC71305045CB4E18F641358 /* Pageboy-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pageboy-dummy.m"; sourceTree = ""; }; 212A0DBCE2FC775CCDFEAB502400F0FD /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = ""; }; - 22724C8D71FE2C344776E03DA910A2BF /* HTMLString.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HTMLString.framework; path = HTMLString.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 224CED01C9DA1828B6CDD79E778051DA /* MMMarkdown.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MMMarkdown.framework; path = MMMarkdown.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2274620AF2529A54613D48FB472495F9 /* JDStatusBarNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JDStatusBarNotification-dummy.m"; sourceTree = ""; }; 22A05DAADFC6AD61623496BA60007EC4 /* FLEXNetworkCurlLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkCurlLogger.h; path = Classes/Network/FLEXNetworkCurlLogger.h; sourceTree = ""; }; 22C2964172F5B3E4F2A1F3BA3B0FD917 /* FLEXImageExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImageExplorerViewController.h; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.h; sourceTree = ""; }; 22F8E905BEC7E1E2827821873DD72EC8 /* NSNumber+IGListDiffable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNumber+IGListDiffable.h"; path = "Source/Common/NSNumber+IGListDiffable.h"; sourceTree = ""; }; 2350349BB755F2DD56108A2D86AC4180 /* TabmanBar+Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TabmanBar+Config.swift"; path = "Sources/Tabman/TabmanBar/TabmanBar+Config.swift"; sourceTree = ""; }; 237F9BFA7CF3D31C518BA7A069FAF992 /* NYTPhotosDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosDataSource.h; path = Pod/Classes/ios/NYTPhotosDataSource.h; sourceTree = ""; }; + 23CDC1103FB87B11388B2C8FB496D920 /* SLKTextInputbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SLKTextInputbar.m; sourceTree = ""; }; 23F1E1424A2098E2C9DAC4941BA0B78B /* FLEXLiveObjectsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLiveObjectsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.m; sourceTree = ""; }; 245B6448F69DC6961E722F6A07CF8E35 /* GraphQLResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResult.swift; path = Sources/GraphQLResult.swift; sourceTree = ""; }; 2479081C32C7D3F07E0C3794EAC2B7DD /* FLEXArgumentInputFontView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h; sourceTree = ""; }; @@ -938,6 +1094,7 @@ 260DF7E465FCEF4331CF75EC2419F33D /* TabmanBar+BackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TabmanBar+BackgroundView.swift"; path = "Sources/Tabman/TabmanBar/Components/Background/TabmanBar+BackgroundView.swift"; sourceTree = ""; }; 267F694E669C30244DFA15FCBC04B6A2 /* safari~iPad.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari~iPad.png"; path = "Pod/Assets/safari~iPad.png"; sourceTree = ""; }; 281F5D7ED36E21149A5B1BE0763E0345 /* FLEXImageExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImageExplorerViewController.m; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.m; sourceTree = ""; }; + 28BCAEDF70385A96FC0701FAD51B6697 /* SLKTextView+SLKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SLKTextView+SLKAdditions.m"; sourceTree = ""; }; 28D538736C1B6CB884409A4F8AB6FE75 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; 28E2198F2CCC4129BE56A7732ED6F2B0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 291A54FDC8D6961F49D0D3D6259CDF36 /* IGListBatchUpdateData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdateData.h; path = Source/Common/IGListBatchUpdateData.h; sourceTree = ""; }; @@ -945,16 +1102,16 @@ 299D99CC61D795E345F9889C4EC8A3B6 /* Pageboy-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pageboy-umbrella.h"; sourceTree = ""; }; 2A4EBEF6D1144DC277CF3E685A2719F3 /* Pods-FreetimeTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FreetimeTests-umbrella.h"; sourceTree = ""; }; 2A8154D316322CCF346D629BB50401C2 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; - 2AC415435E1AB922E6F6C96A3D6D9552 /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLAnimatedImage.framework; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2B13ED943C98E04645146BBA64824CA7 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; 2B497A573CD432520E90A114C01FE5AE /* PositionalUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PositionalUtils.swift; path = Sources/Tabman/TabmanBar/Utilities/PositionalUtils.swift; sourceTree = ""; }; 2C0F9B71C87BB719B7E8B46379F507BA /* IGListAdapter+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListAdapter+DebugDescription.h"; path = "Source/Internal/IGListAdapter+DebugDescription.h"; sourceTree = ""; }; 2C222A28A0113CFFE5DEDAF28C4C99B9 /* FLAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImageView.h; path = FLAnimatedImage/FLAnimatedImageView.h; sourceTree = ""; }; 2C3C9FA435E6D49BE2175007F06D0925 /* GraphQLResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResponse.swift; path = Sources/GraphQLResponse.swift; sourceTree = ""; }; + 2C7E975E22ABF61B13EC6653CEC27C8D /* UIView+SLKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+SLKAdditions.h"; sourceTree = ""; }; 2C9E50DB64187AD6F5C83B80605D2521 /* FLEXArgumentInputViewFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputViewFactory.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h; sourceTree = ""; }; 2DCF8C479D7BB2A702D81E9015E7F8B0 /* FLEXFileBrowserSearchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserSearchOperation.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h; sourceTree = ""; }; 2E36BDC8FF286A3378141ED128939C72 /* FLEXArgumentInputDateView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputDateView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h; sourceTree = ""; }; - 2E8F10381B487B5C8E7C42B25D46EAE3 /* TUSafariActivity.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TUSafariActivity.framework; path = TUSafariActivity.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2EE0286FDEDE9CC8E219E9479BE09C7C /* NYTPhotoViewer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NYTPhotoViewer.framework; path = NYTPhotoViewer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2F5DDC51DC52B932BD3D529EE7AA207A /* TransitionOperation+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TransitionOperation+Action.swift"; path = "Sources/Pageboy/Utilities/Transitioning/TransitionOperation+Action.swift"; sourceTree = ""; }; 2FDB3C840B0F98D3F161D8850C2B5767 /* NYTPhotoViewer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NYTPhotoViewer-prefix.pch"; sourceTree = ""; }; 2FE067453FBC57330D6D49216DB0C0BF /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; @@ -967,6 +1124,7 @@ 334326D0B61ABCB32334726939505649 /* IGListIndexSetResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListIndexSetResult.m; path = Source/Common/IGListIndexSetResult.m; sourceTree = ""; }; 3421DCB34106FF90C0711C1796155116 /* IGListIndexSetResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexSetResult.h; path = Source/Common/IGListIndexSetResult.h; sourceTree = ""; }; 3435EF29134CFA6CADED091FE8DD40E0 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; + 34989DEF0C7C56B9FF58AA94C6A7655D /* SwipeCellKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwipeCellKit-dummy.m"; sourceTree = ""; }; 34BE12038659CADBD235A4E0EC3B743B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 350ADEB4AD56E89F8B46C8843D597BB7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 354842767C17988A1FA3617C68781DD8 /* FLEXFieldEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorViewController.m; path = Classes/Editing/FLEXFieldEditorViewController.m; sourceTree = ""; }; @@ -974,20 +1132,21 @@ 358E6B1693EF9F1B70EB37FBCB74A225 /* FLEXDictionaryExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDictionaryExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h; sourceTree = ""; }; 35EE425B50D3868A61CB29DFD8582186 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; 370ABB8C4F7E073586410F97834A89C3 /* Tabman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tabman.h; path = Sources/Tabman/Tabman.h; sourceTree = ""; }; - 371E70DCA1D6172DA12F54C0E46603C2 /* NYTPhotoViewer.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = NYTPhotoViewer.bundle; path = NYTPhotoViewer.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 37308DBCC30445A0D85AAFA683E74A9C /* NYTPhotoViewer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NYTPhotoViewer.framework; path = NYTPhotoViewer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 375C2CF3ADE539BE0BF0289B3F3C5E7E /* ALView+PureLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ALView+PureLayout.h"; path = "PureLayout/PureLayout/ALView+PureLayout.h"; sourceTree = ""; }; 385746A9AA2FF2F305EFAFE698DF5AFF /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/UIView+WebCache.m"; sourceTree = ""; }; 38C9A9BFB24E6BCB054AE16E811AFAF5 /* FLEXHeapEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHeapEnumerator.h; path = Classes/Utility/FLEXHeapEnumerator.h; sourceTree = ""; }; 38E8F0286C3C748B8B27E97DEABCEA91 /* check-and-run-apollo-codegen.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "check-and-run-apollo-codegen.sh"; path = "scripts/check-and-run-apollo-codegen.sh"; sourceTree = ""; }; 38EE9ACE4FD89114DFADB38B05FA5C28 /* Pods-Freetime-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Freetime-frameworks.sh"; sourceTree = ""; }; 390EFEFEF9660C8EBEB139110D24C9AD /* FLEXKeyboardHelpViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardHelpViewController.h; path = Classes/Utility/FLEXKeyboardHelpViewController.h; sourceTree = ""; }; + 395B20871FFC598F56BF892533F58CC3 /* MMHTMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMHTMLParser.h; sourceTree = ""; }; 39BC0DEDEE10EA9B373163241F5B0816 /* PureLayoutDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PureLayoutDefines.h; path = PureLayout/PureLayout/PureLayoutDefines.h; sourceTree = ""; }; 3A3FD62E6CEAED9798E63BC05FF09DB7 /* PureLayout+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PureLayout+Internal.h"; path = "PureLayout/PureLayout/PureLayout+Internal.h"; sourceTree = ""; }; 3A98BF0F9164F12E075168A62451CCE7 /* FLEXWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWindow.m; path = Classes/ExplorerInterface/FLEXWindow.m; sourceTree = ""; }; 3AEE62AF91CFC9CC8ED36A0AA2B25365 /* FLEXTableColumnHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableColumnHeader.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.m; sourceTree = ""; }; 3B47B1E40D80EB5E7C53CA9C17354850 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 3B73596AAEE69E6D3285219F99E32ABD /* FLAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImage.m; path = FLAnimatedImage/FLAnimatedImage.m; sourceTree = ""; }; + 3D5965E8B737830D03A8AAFC36D1C9D8 /* MMElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMElement.m; sourceTree = ""; }; + 3DB9076A00E6253F4FB252318201269E /* SLKTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTextInput.h; sourceTree = ""; }; 3DCCA43FE7E5F02B5EBF2242D1D08586 /* FLAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImageView.m; path = FLAnimatedImage/FLAnimatedImageView.m; sourceTree = ""; }; 3E5C9AC56B3BA067BA066C4C1E8480C4 /* Pageboy.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pageboy.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 3ECAE0DC78B0115C3B79F7544DD75233 /* FLEXTableContentViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h; sourceTree = ""; }; @@ -999,10 +1158,14 @@ 40512DEDD28BF8BF98480B03D163E1A7 /* IGListDisplayDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDisplayDelegate.h; path = Source/IGListDisplayDelegate.h; sourceTree = ""; }; 406A56F5EBD0BB1155D8AEDD6010C924 /* FLEXTableContentCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h; sourceTree = ""; }; 40C33FE5B85D0E937675C6C83FD61CFD /* FLEXMethodCallingViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMethodCallingViewController.h; path = Classes/Editing/FLEXMethodCallingViewController.h; sourceTree = ""; }; + 41965E68B7B0078954689EDB62266581 /* UIView+SLKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+SLKAdditions.m"; sourceTree = ""; }; + 41E374E3033C5BF23B31B169D66D77E0 /* MMMarkdownExtensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMMarkdownExtensions.h; sourceTree = ""; }; + 4211EECC706E2FF8B6A35117F877EFAE /* SLKTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTextView.h; sourceTree = ""; }; 424076AFC6B32585C47EB254C03667A8 /* TabmanItemColorCrossfadeTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanItemColorCrossfadeTransition.swift; path = Sources/Tabman/TabmanBar/Transitioning/ItemTransition/TabmanItemColorCrossfadeTransition.swift; sourceTree = ""; }; 42493A5F893C0C540855D11EC0C5B434 /* IGListReloadIndexPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListReloadIndexPath.h; path = Source/Internal/IGListReloadIndexPath.h; sourceTree = ""; }; 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TUSafariActivity.xcconfig; sourceTree = ""; }; 426401DFEC8B7744001ECE947FAA9F0A /* JDStatusBarStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarStyle.m; path = JDStatusBarNotification/JDStatusBarStyle.m; sourceTree = ""; }; + 42B07F4EB7EE85E6CDDD2A9BBCF8D98E /* MMDocument_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMDocument_Private.h; sourceTree = ""; }; 42EB555A0477427D41034661A7F1F719 /* TabmanChevronIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanChevronIndicator.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/Styles/TabmanChevronIndicator.swift; sourceTree = ""; }; 431203D9CE487814EAECE6E197DB4621 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; 43344B29F74AEC161E0F48EF2C4F0D27 /* TUSafariActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TUSafariActivity.h; path = Pod/Classes/TUSafariActivity.h; sourceTree = ""; }; @@ -1017,11 +1180,13 @@ 478C8E5149B8C77A4D3DCD8356D29B99 /* AsynchronousOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsynchronousOperation.swift; path = Sources/AsynchronousOperation.swift; sourceTree = ""; }; 47D63C122188767A0DAE43D96CDC91B2 /* FLEXFileBrowserTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserTableViewController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h; sourceTree = ""; }; 4854C5DEE22BD3FCE1F207DC38AC11D4 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Source/ConstraintPriorityTarget.swift; sourceTree = ""; }; + 48D41D2326F2A31873B6B592AC05B972 /* MMSpanParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMSpanParser.m; sourceTree = ""; }; 48D8E19D470FE7CE6B15EFDD4B295E44 /* FLEXExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerViewController.m; path = Classes/ExplorerInterface/FLEXExplorerViewController.m; sourceTree = ""; }; 4A4D6FF2DDB8223D1FE85C2D32362BF9 /* NYTPhotoViewerCloseButtonX@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "NYTPhotoViewerCloseButtonX@3x.png"; path = "Pod/Assets/ios/NYTPhotoViewerCloseButtonX@3x.png"; sourceTree = ""; }; 4A77B4A508DD0992CF75EB69778667A0 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = Classes/Utility/FLEXUtility.h; sourceTree = ""; }; 4AA7337851FD6A984C1D8102CE6C364B /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = Pod/Assets/ja.lproj; sourceTree = ""; }; 4B088C83DC058343F3F9FEFC09B20CD5 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+PureLayout.h"; path = "PureLayout/PureLayout/NSArray+PureLayout.h"; sourceTree = ""; }; + 4B16D6F25A2770FF876765B508676E28 /* SwipeCollectionViewCellDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeCollectionViewCellDelegate.swift; sourceTree = ""; }; 4B20E2055FA570CAC7D3320DA048DAEB /* NSImage+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+WebCache.h"; path = "SDWebImage/NSImage+WebCache.h"; sourceTree = ""; }; 4BBBAEAB33D6C764704BB5F14AC08722 /* IGListStackedSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListStackedSectionController.h; path = Source/IGListStackedSectionController.h; sourceTree = ""; }; 4BD254EF0D26DDE31A187864717C7B62 /* AlamofireNetworkActivityIndicator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireNetworkActivityIndicator-umbrella.h"; sourceTree = ""; }; @@ -1032,16 +1197,17 @@ 4ED2200533A35533DA525E77CA8A1966 /* FLEXGlobalsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.m; sourceTree = ""; }; 4EEF806D16CD045B9EEE2B517289FAB7 /* IGListBindingSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindingSectionController.h; path = Source/IGListBindingSectionController.h; sourceTree = ""; }; 4FAC0C7DCF5372149F3D5DE2732E4E5B /* IGListDisplayHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDisplayHandler.h; path = Source/Internal/IGListDisplayHandler.h; sourceTree = ""; }; + 500E5DF65F2CFF2FEEEF8D52A3C0682A /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; 51E681B09CB479C40DC622F8DA540D5D /* PageboyViewController+Transitioning.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PageboyViewController+Transitioning.swift"; path = "Sources/Pageboy/Extensions/PageboyViewController+Transitioning.swift"; sourceTree = ""; }; 51F50FA0DAF062C2532C2A3742D585AE /* Tabman-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Tabman-dummy.m"; sourceTree = ""; }; 51F85056E2AF3D96E48B2797FFE6E015 /* FLAnimatedImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLAnimatedImage-dummy.m"; sourceTree = ""; }; 51FCC184CE8D7305712DD321725453BE /* NSImage+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+WebCache.m"; path = "SDWebImage/NSImage+WebCache.m"; sourceTree = ""; }; - 52E88F0A1DCDAEF7309F982A87FE9DC9 /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Apollo.framework; path = Apollo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 52FDDB4B8AFAE7652C4F9FDB5D52A345 /* SwipeTableViewCell+Display.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "SwipeTableViewCell+Display.swift"; sourceTree = ""; }; 538CD6BB1F5D78CA712B185A1228C292 /* FLEXTableLeftCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableLeftCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.m; sourceTree = ""; }; + 53B045A09B6F331C4C445760F2A523A7 /* SLKTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SLKTextView.m; sourceTree = ""; }; 53ECB900F01997481B470451C3BD07B3 /* IGListCollectionViewLayoutInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionViewLayoutInternal.h; path = Source/Internal/IGListCollectionViewLayoutInternal.h; sourceTree = ""; }; 543230CC5E7A17CDADDCCB6E2881B274 /* ColorUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtils.swift; path = Sources/Tabman/Utilities/ColorUtils.swift; sourceTree = ""; }; - 54C4087CC487EA0AB6D596DCE366F1EB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 54F5706AA8A6C7E2959A7B171DBB3813 /* FLEXExplorerToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerToolbar.h; path = Classes/Toolbar/FLEXExplorerToolbar.h; sourceTree = ""; }; 54FDD7B011CC2ECE5AAE1C97CE3EBFD4 /* FLEXLayerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLayerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.m; sourceTree = ""; }; 5507D9A9013358910B3E34E5DFAD50EB /* FLEXSystemLogTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewController.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.m; sourceTree = ""; }; @@ -1071,19 +1237,22 @@ 5D7C1B29D3278DEB28D0B3E424C444C4 /* TabmanViewController+Embedding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TabmanViewController+Embedding.swift"; path = "Sources/Tabman/TabmanViewController+Embedding.swift"; sourceTree = ""; }; 5DB5F07A9DD19EA7A5687446DC9098F4 /* FLEX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLEX-dummy.m"; sourceTree = ""; }; 5F13A7F3CACED7A7F84932BD1BF2B053 /* FLEXArgumentInputDateView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputDateView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.m; sourceTree = ""; }; + 5FB430DC3E5DD021E8EDEA028F0A2774 /* SLKTypingIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTypingIndicatorView.h; sourceTree = ""; }; 5FCFF6D61046F4E267CC04183F6AC6C2 /* FLEXNetworkHistoryTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkHistoryTableViewController.h; path = Classes/Network/FLEXNetworkHistoryTableViewController.h; sourceTree = ""; }; 603709008EE50B6B0CE1A82FD1051F77 /* IGListBatchUpdates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdates.h; path = Source/Internal/IGListBatchUpdates.h; sourceTree = ""; }; 6039842970711F8271CC444E501BF3C8 /* FLEXArgumentInputSwitchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputSwitchView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.m; sourceTree = ""; }; 605C58B7ADEDB86045184AA1D90B8A63 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 61D5B30FF6F995F58D501CD77B1F44E2 /* IGListKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IGListKit.framework; path = IGListKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6158CDE5DAC64DCF73974FDB1C444396 /* IGListKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IGListKit.framework; path = IGListKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 61D5FA98857B5EA68448C7EF572BF70A /* SwipeActionTransitioning.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeActionTransitioning.swift; sourceTree = ""; }; 61D882948FCA8BEB295A3822B534F07D /* IGListStackedSectionControllerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListStackedSectionControllerInternal.h; path = Source/Internal/IGListStackedSectionControllerInternal.h; sourceTree = ""; }; + 628C6C8030FCA9E57E3C15FC3338EFDD /* UIResponder+SLKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+SLKAdditions.h"; sourceTree = ""; }; 630F9E87B1225DA4E71EB0C3CE5521FD /* IGListDiff.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListDiff.mm; path = Source/Common/IGListDiff.mm; sourceTree = ""; }; 635301747F6878D7D665EFB205BDA90C /* CircularView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircularView.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/Views/CircularView.swift; sourceTree = ""; }; 637A35C9A33A57C68182343200129FA0 /* PureLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PureLayout.modulemap; sourceTree = ""; }; 63A6656C091BF912D3AE24D8DD690168 /* IGListAdapterUpdater+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListAdapterUpdater+DebugDescription.m"; path = "Source/Internal/IGListAdapterUpdater+DebugDescription.m"; sourceTree = ""; }; 645B454A3AA4F93BA8F4CB5D90A46034 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+PureLayout.h"; path = "PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h"; sourceTree = ""; }; + 645D17154F4297CC66461A81425B59EC /* SwipeFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeFeedback.swift; sourceTree = ""; }; 64A72E8DD6B11460704E776400882B9B /* IndexedMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexedMap.swift; path = Sources/Pageboy/Utilities/DataStructures/IndexedMap.swift; sourceTree = ""; }; - 64B5A37D0E078F287ACB4002D20C4C7D /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLEX.framework; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6546121B3EAB7C174AC2FB4C1C3A8AF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 654C346EDD171A5E9B91A2EEEDC439C5 /* Pageboy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pageboy.h; path = Sources/Pageboy/Pageboy.h; sourceTree = ""; }; 6554345988302AE684EB3A86BEE77492 /* TabmanBlockIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanBlockIndicator.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/Styles/TabmanBlockIndicator.swift; sourceTree = ""; }; @@ -1101,6 +1270,7 @@ 695EEBD8F51BE08643EC533BB4CBBA4F /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; 69C5D99B7CB277601BE4687E34742695 /* safari~iPad@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari~iPad@2x.png"; path = "Pod/Assets/safari~iPad@2x.png"; sourceTree = ""; }; 69E11DA398A3CC9B69556850A50F0A9A /* FLEXArgumentInputSwitchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputSwitchView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h; sourceTree = ""; }; + 6A81EF059793CF3D3E71BFDF642C69A3 /* SLKUIConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKUIConstants.h; sourceTree = ""; }; 6A8F1F626B30A0BEC6381B64A3BD15DC /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Sources/Tabman/Utilities/UIView+Utils.swift"; sourceTree = ""; }; 6AD0297147696497B4C6F603E1DEB855 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; 6B1513D7060BB4F86EA18A0CCECB4B77 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; @@ -1112,7 +1282,10 @@ 6DB6A81C876C7142551684B3975FE32E /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Tabman.xcconfig; sourceTree = ""; }; 6DEFA2FA90F41FE8BFABB7CD411F0080 /* IGListIndexSetResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexSetResultInternal.h; path = Source/Common/Internal/IGListIndexSetResultInternal.h; sourceTree = ""; }; + 6E0B33E77AA9A1C2C0BE9574E04548D3 /* MMParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMParser.m; sourceTree = ""; }; + 6E3F05CB909D0998193F1D29DCF9E790 /* NYTPhotoViewer.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = NYTPhotoViewer.bundle; path = NYTPhotoViewer.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 6E5FF76300FDD0A863926A9704837CEE /* FLEXFileBrowserSearchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserSearchOperation.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.m; sourceTree = ""; }; + 6EFFC1199E57B86B0939267765E016C7 /* MMDocument.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMDocument.m; sourceTree = ""; }; 6F053F7C17E8E73C6DB41FF61907C0C6 /* PageboyViewController+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PageboyViewController+Extras.swift"; path = "Sources/Pageboy/Extensions/PageboyViewController+Extras.swift"; sourceTree = ""; }; 6F39F063233FB1E438812389DD7C3528 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 6F3CC68FE7DE0CFF1D67026D4BA3120C /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Source/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; @@ -1122,14 +1295,16 @@ 701E0B8FC85E809FD716A4157B802EF1 /* FLEXIvarEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXIvarEditorViewController.h; path = Classes/Editing/FLEXIvarEditorViewController.h; sourceTree = ""; }; 70460C144C5357062775F4E31BC939D8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 705842B618D4D3D1F9E9BB62A52EF81D /* IGListArrayUtilsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListArrayUtilsInternal.h; path = Source/Common/Internal/IGListArrayUtilsInternal.h; sourceTree = ""; }; - 70640AC0C1B2D5AE37C63AB4EBFCEA92 /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JDStatusBarNotification.framework; path = JDStatusBarNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 70A51F39A2CF5CFDEB2AF55676ED8DB1 /* UIScrollView+SLKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+SLKAdditions.h"; sourceTree = ""; }; 713856CCC329FA4F0AE09EA803F9D0FD /* FLEXArgumentInputStringView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStringView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.m; sourceTree = ""; }; 71702E4DE7E9FB7673E0B0B008F3B393 /* FLEXGlobalsTableViewControllerEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewControllerEntry.h; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h; sourceTree = ""; }; 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.xcconfig; sourceTree = ""; }; 7299A24A8155FBE929255EBD6B700EE5 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; 739EB8AD5F1E7B5A1A9B4B608D0DBA95 /* FLEXToolbarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXToolbarItem.h; path = Classes/Toolbar/FLEXToolbarItem.h; sourceTree = ""; }; + 73A50BCC31561632C25FDF9C9AB64C96 /* AlamofireNetworkActivityIndicator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AlamofireNetworkActivityIndicator.framework; path = AlamofireNetworkActivityIndicator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 73AF1F0B2D73C0CCDEBCA94CB5846B2D /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Source/ConstraintLayoutSupport.swift; sourceTree = ""; }; 73E3B9B99EB4E7D69E5D74DDA3CB60E5 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/UIView+WebCache.h"; sourceTree = ""; }; + 745DF244085634F76745505235A66DE6 /* SlackTextViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SlackTextViewController.xcconfig; sourceTree = ""; }; 75061A49BB62271E2A6CF3C1228EC00E /* NYTPhotoViewerCloseButtonX.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = NYTPhotoViewerCloseButtonX.png; path = Pod/Assets/ios/NYTPhotoViewerCloseButtonX.png; sourceTree = ""; }; 750DEDA4104481A21C81DC22D77FDA91 /* IGListExperiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListExperiments.h; path = Source/Common/IGListExperiments.h; sourceTree = ""; }; 753649F2D12FAD22EBABF0834D06D16C /* NYTPhotoTransitionAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoTransitionAnimator.m; path = Pod/Classes/ios/NYTPhotoTransitionAnimator.m; sourceTree = ""; }; @@ -1137,22 +1312,32 @@ 7542F5644A426DE771A8285B57CD88DA /* TransitionOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransitionOperation.swift; path = Sources/Pageboy/Utilities/Transitioning/TransitionOperation.swift; sourceTree = ""; }; 75A937789383DFC76F7530F0EFF198C7 /* IGListKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IGListKit-dummy.m"; sourceTree = ""; }; 760A5E8C65EC742CAD5355F41AD7CEB2 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Source/ConstraintDescription.swift; sourceTree = ""; }; + 761A733DA93383767AA8646CE320B47C /* UIScrollView+SLKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+SLKAdditions.m"; sourceTree = ""; }; 765A320CA56A0FCFC7D87EA4357475F9 /* ApolloStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApolloStore.swift; path = Sources/ApolloStore.swift; sourceTree = ""; }; + 772E05FE4D6E5B2795AC831D4695C1F5 /* SLKInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SLKInputAccessoryView.m; sourceTree = ""; }; 77B9C83310C0329FAE9F42EF3A81CF49 /* FLEXFileBrowserFileOperationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserFileOperationController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.h; sourceTree = ""; }; 77D7DAA6C4DB551FE996528C8A6FB8BA /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = Classes/Network/FLEXNetworkTransaction.m; sourceTree = ""; }; 77E5503DC03B8BC99E4E48594627270F /* Record.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Record.swift; path = Sources/Record.swift; sourceTree = ""; }; 7866C6F15E66C8F20792D81C313C5525 /* JDStatusBarView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarView.m; path = JDStatusBarNotification/JDStatusBarView.m; sourceTree = ""; }; + 78A0E768EE2D229A3DFFB8004F10B223 /* MMScanner.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMScanner.m; sourceTree = ""; }; 78C432AD1904B5A25D46422CEC87D0DA /* FLEXKeyboardShortcutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardShortcutManager.m; path = Classes/Utility/FLEXKeyboardShortcutManager.m; sourceTree = ""; }; + 78F8032EA0897F5A026781F697D5325F /* MMDocument.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMDocument.h; sourceTree = ""; }; 790986CF9E2E5111DB8640F6E43DDF43 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 79C9535D52A7B1EF06C0DA9493638FA5 /* MMMarkdown.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = MMMarkdown.modulemap; sourceTree = ""; }; 79CDD65D183C3B7B1136F6208281DF26 /* FLEXPropertyEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXPropertyEditorViewController.m; path = Classes/Editing/FLEXPropertyEditorViewController.m; sourceTree = ""; }; 7A5FE0D204245175B0988D3723F8BB88 /* safari-7@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7@2x.png"; path = "Pod/Assets/safari-7@2x.png"; sourceTree = ""; }; 7A6F61DE0438C3831DBCFB2F1FFDB276 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; + 7A86AABACFA284A4E9D179F5860C3242 /* SwipeActionsView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeActionsView.swift; sourceTree = ""; }; + 7A936FA389ED66DF3E66411931BB2F25 /* PureLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PureLayout.framework; path = PureLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 7B035468EDF02E6BBE83C4F18128540C /* IGListAdapterInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterInternal.h; path = Source/Internal/IGListAdapterInternal.h; sourceTree = ""; }; 7B46174DDE27F50E5DD5B0C61D8803D7 /* FLEXDefaultEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultEditorViewController.h; path = Classes/Editing/FLEXDefaultEditorViewController.h; sourceTree = ""; }; 7B47FD97FAA89B2C4C825D7A7737A385 /* GraphQLResultReader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResultReader.swift; path = Sources/GraphQLResultReader.swift; sourceTree = ""; }; + 7B4F3109CB7E14C83C1E50F39DF9BE1A /* MMMarkdown-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMMarkdown-umbrella.h"; sourceTree = ""; }; 7BE70D92A1F6ED87687A6493C11A7B51 /* TabmanButtonBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanButtonBar.swift; path = Sources/Tabman/TabmanBar/Styles/Abstract/TabmanButtonBar.swift; sourceTree = ""; }; 7BF655D2340606EB677CEF746E625878 /* Pods-FreetimeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeTests.release.xcconfig"; sourceTree = ""; }; 7C1230C39E4FF248C05C5DD8FEEFEBF2 /* FLEXViewControllerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewControllerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h; sourceTree = ""; }; + 7C25ABCE86687275668AD697B8AE576B /* TUSafariActivity.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TUSafariActivity.framework; path = TUSafariActivity.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7C28AAF88CA8416524A43B7AF756EC7A /* MMMarkdown-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMMarkdown-dummy.m"; sourceTree = ""; }; 7C41F4668ADE7D66584306C2505B2514 /* NSString+HTMLString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSString+HTMLString.swift"; path = "Sources/HTMLString/NSString+HTMLString.swift"; sourceTree = ""; }; 7D504A3D172528A4EFE70CAE007AD75E /* FLEXFieldEditorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorView.h; path = Classes/Editing/FLEXFieldEditorView.h; sourceTree = ""; }; 7E4991059F867867B77E6C07FA7FBA00 /* UICollectionView+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DebugDescription.m"; path = "Source/Internal/UICollectionView+DebugDescription.m"; sourceTree = ""; }; @@ -1160,15 +1345,21 @@ 7F46C2D7094C5BBA28CC945AB8146F76 /* IGListKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IGListKit.xcconfig; sourceTree = ""; }; 80B5D1CF5915349279D94DE0D978D65A /* FLEXExplorerToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerToolbar.m; path = Classes/Toolbar/FLEXExplorerToolbar.m; sourceTree = ""; }; 8143A6BE889905B07CEBDE156FD43858 /* HTMLString-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HTMLString-dummy.m"; sourceTree = ""; }; + 8204C58E6BB014EEBD0E8BC8D08835BC /* MMGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMGenerator.h; sourceTree = ""; }; + 822AB2931D00D3BD89E5B18BC1662354 /* SlackTextViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SlackTextViewController.framework; path = SlackTextViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 823DC36237342EEF6DCE7123094F54CC /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = ""; }; - 82ACC5D0383D176F35331F547EC6D7BD /* Pods_Freetime.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Freetime.framework; path = "Pods-Freetime.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8275B3E7AC7E1C0CC1EBBED8B2D6A054 /* SLKTextInputbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTextInputbar.h; sourceTree = ""; }; 82BC0D0E407AA4441731F5EBC4EDA701 /* FLEXSystemLogTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewController.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h; sourceTree = ""; }; 82C3959274B59AC13A36DFEA6BAA5DD1 /* IGListCollectionContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionContext.h; path = Source/IGListCollectionContext.h; sourceTree = ""; }; 83009E80D8321FB36150B9566514EA8E /* TabmanItemMaskTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanItemMaskTransition.swift; path = Sources/Tabman/TabmanBar/Transitioning/ItemTransition/TabmanItemMaskTransition.swift; sourceTree = ""; }; + 83034DE75E78CD02075156B77BEB2C48 /* SLKTextViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTextViewController.h; sourceTree = ""; }; 8322997BFC548EF99B3CEF86C3893646 /* IGListBatchUpdateData+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListBatchUpdateData+DebugDescription.h"; path = "Source/Internal/IGListBatchUpdateData+DebugDescription.h"; sourceTree = ""; }; 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.xcconfig; sourceTree = ""; }; + 83630246949CEA4BD463CF775D6321F0 /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JDStatusBarNotification.framework; path = JDStatusBarNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8412BA85F9D3B1E6DC7E26595223DB99 /* NYTScalingImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTScalingImageView.h; path = Pod/Classes/ios/NYTScalingImageView.h; sourceTree = ""; }; + 8465833AE086109F05C3FBE17A4A7590 /* SwipeTransitionLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeTransitionLayout.swift; sourceTree = ""; }; 8479EFD63A03F2B177D72537D6A6746A /* IGListBatchUpdates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListBatchUpdates.m; path = Source/Internal/IGListBatchUpdates.m; sourceTree = ""; }; + 84D8D2038F512E43E246316ECDC10692 /* SwipeExpanding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeExpanding.swift; sourceTree = ""; }; 8513AC6BB9CA90DC877BACEF3AF0CEA9 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Source/ConstraintMaker.swift; sourceTree = ""; }; 8545623A129402E69E02F4CAB2DF8E0A /* IGListBatchContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchContext.h; path = Source/IGListBatchContext.h; sourceTree = ""; }; 85674F4220A2B50D354046397008F3C1 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Source/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; @@ -1176,22 +1367,26 @@ 858A671120929357BF264DE3EACA9D3B /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Source/Debugging.swift; sourceTree = ""; }; 85D2D044958321067E6B21573A95D622 /* IGListReloadDataUpdater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListReloadDataUpdater.h; path = Source/IGListReloadDataUpdater.h; sourceTree = ""; }; 861BDC05EEE88D1B0B7C7ECB2E67519C /* NetworkActivityIndicatorManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkActivityIndicatorManager.swift; path = Source/NetworkActivityIndicatorManager.swift; sourceTree = ""; }; + 86CD16C779DC1AD3E821FB8E3105D817 /* SwipeAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeAction.swift; sourceTree = ""; }; 87B878394E202FBB3534D5819F6C87EB /* IGListSingleSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSingleSectionController.h; path = Source/IGListSingleSectionController.h; sourceTree = ""; }; 88D991E3ED79E0C24F9074C101623568 /* FLEXArgumentInputTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputTextView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h; sourceTree = ""; }; + 88E5FEE85F381550903DDE8E64D49E4C /* Tabman.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Tabman.framework; path = Tabman.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 89247E11D83687ED3DAB89203CA7E17F /* FLEXDictionaryExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDictionaryExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.m; sourceTree = ""; }; + 89A6F78E1FE053BEFA0A73C25F236AF1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 89B0A4304EBC353D1794226401A313FD /* FLEXDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h; sourceTree = ""; }; 89CE0D1ADF0BB9DD097BC7F8B7E1971C /* IGListCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCompatibility.h; path = Source/Common/IGListCompatibility.h; sourceTree = ""; }; 89E8589139BA91E4F1B16B20D1F38E67 /* FLEXObjectExplorerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerFactory.m; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.m; sourceTree = ""; }; 8B05C9F0779A0180AA4AB4E2BB91643B /* NYTPhotosViewControllerDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosViewControllerDataSource.h; path = Pod/Classes/ios/Protocols/NYTPhotosViewControllerDataSource.h; sourceTree = ""; }; + 8B91AE5FA25913FE517D9ECF6D4532AD /* SLKTextInput+Implementation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SLKTextInput+Implementation.m"; sourceTree = ""; }; 8B93DCC706BDA12E4449ACE07DA11996 /* TabmanFixedButtonBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanFixedButtonBar.swift; path = Sources/Tabman/TabmanBar/Styles/TabmanFixedButtonBar.swift; sourceTree = ""; }; 8B9400A6D720E951649F47D1A7791330 /* FLEXTableContentCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.m; sourceTree = ""; }; 8BBC72026E114603EF910ED16226BAF4 /* FLEXSystemLogTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewCell.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.m; sourceTree = ""; }; 8BBD6C5EED6F51357F90EB8E121377B0 /* PageboyAutoScroller.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PageboyAutoScroller.swift; path = Sources/Pageboy/Components/PageboyAutoScroller.swift; sourceTree = ""; }; 8BE9982E8BBD59B9AD3FDD4CE85F4A2D /* safari-7.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7.png"; path = "Pod/Assets/safari-7.png"; sourceTree = ""; }; 8CC85B32833AF9A23C9889BD32EC00D6 /* TabmanIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanIndicator.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/TabmanIndicator.swift; sourceTree = ""; }; - 8D559B98E2E18072F1201EBAC286A5A6 /* Tabman.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Tabman.framework; path = Tabman.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8D8E24936910A9385FF85CC235320C2C /* TabmanStaticBarIndicatorTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanStaticBarIndicatorTransition.swift; path = Sources/Tabman/TabmanBar/Transitioning/IndicatorTransition/TabmanStaticBarIndicatorTransition.swift; sourceTree = ""; }; 8DAA0E434E2D9DAF254FC83D166354E2 /* NYTPhotosViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosViewController.h; path = Pod/Classes/ios/NYTPhotosViewController.h; sourceTree = ""; }; + 8DDFF59E27D249E021FAA0A18B824304 /* MMMarkdown.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMMarkdown.xcconfig; sourceTree = ""; }; 8DE5571C908F0F9BDAEFC833EBDD198E /* zh_CN.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = zh_CN.lproj; path = Pod/Assets/zh_CN.lproj; sourceTree = ""; }; 8E32D93CCD9FDFC5D09A4DC89B624FE7 /* NSString+IGListDiffable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+IGListDiffable.m"; path = "Source/Common/NSString+IGListDiffable.m"; sourceTree = ""; }; 8E35B327141829E7B95E151C427367DB /* FLEXManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FLEXManager+Private.h"; path = "Classes/Manager/FLEXManager+Private.h"; sourceTree = ""; }; @@ -1203,6 +1398,7 @@ 906E16D62C97554EC8B6EB24AA88A8F4 /* FLEX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-umbrella.h"; sourceTree = ""; }; 907FC26009CFB8651ABDD325F0ACD39A /* NSString+IGListDiffable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+IGListDiffable.h"; path = "Source/Common/NSString+IGListDiffable.h"; sourceTree = ""; }; 918416F49A4FC6C130BC17FE63BFACA5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 918CC0A9660FCEAB7575DA7FA1068176 /* SwipeCollectionViewCell+Display.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "SwipeCollectionViewCell+Display.swift"; sourceTree = ""; }; 91A20E6D6BCE9FA1CDA2CA92C7B3199E /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Source/ConstraintDSL.swift; sourceTree = ""; }; 91BA601FAF3CF3F11B64E0A27D77A8FF /* FLEXArgumentInputStructView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStructView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h; sourceTree = ""; }; 91FA75CE7C3B018727081341C96566AF /* FLEXFieldEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorViewController.h; path = Classes/Editing/FLEXFieldEditorViewController.h; sourceTree = ""; }; @@ -1211,7 +1407,6 @@ 93A5C6281FB41057EC52E5025CAC7A35 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; }; 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLEX.xcconfig; sourceTree = ""; }; 950D15456A5D770D2B8AA71ECD055F27 /* NYTPhotoViewer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NYTPhotoViewer.modulemap; sourceTree = ""; }; - 951A9664FBA1AC605169134E64BC4F72 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 95379E486CF76E64B44EB8BEFE3B5F37 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = Pod/Assets/pt.lproj; sourceTree = ""; }; 955A8CA71F5A7F1AD5D48F294F4B8F60 /* FLEXDefaultEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultEditorViewController.m; path = Classes/Editing/FLEXDefaultEditorViewController.m; sourceTree = ""; }; 9593FBE36776680992ED8F627AE69905 /* FLEXArgumentInputNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNumberView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.m; sourceTree = ""; }; @@ -1249,6 +1444,7 @@ 9DA3A8F26E2DD2158C0D256B5EF85A96 /* ViewUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewUtils.swift; path = Sources/Tabman/TabmanBar/Utilities/ViewUtils.swift; sourceTree = ""; }; 9EFC757DADA282B4A589E39860973D16 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Source/ConstraintConfig.swift; sourceTree = ""; }; 9FEC42A0B2B152F1979BD2603964F95C /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = Pod/Assets/nl.lproj; sourceTree = ""; }; + 9FF76FB85B7287B5B89391346CB64565 /* SLKTypingIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKTypingIndicatorProtocol.h; sourceTree = ""; }; A052756AE643CFFA7DEDFC1165C841C9 /* Pods-Freetime-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Freetime-acknowledgements.plist"; sourceTree = ""; }; A080B459E0840FC7A45059EDA19B4CA2 /* FLEXArgumentInputJSONObjectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputJSONObjectView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h; sourceTree = ""; }; A21724992771E032C57EC6F9D2C79E7F /* IGListAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListAdapter.m; path = Source/IGListAdapter.m; sourceTree = ""; }; @@ -1259,6 +1455,7 @@ A4394C4BE864EC32FE08B871A298A266 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Source/LayoutConstraintItem.swift; sourceTree = ""; }; A466B3CDBE2E0A5E1845BEB6ED6194B3 /* ResourceBundle-TUSafariActivity-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TUSafariActivity-Info.plist"; sourceTree = ""; }; A491DAFA91147D00FB4D607B0006CD59 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + A4DD8CFD8CDE609FEA0AE7543DBC73C6 /* SwipeCellKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwipeCellKit.framework; path = SwipeCellKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A54D6B326C2A480F6415DCDA59E22E2B /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Source/ConstraintMultiplierTarget.swift; sourceTree = ""; }; A5D684CF8A9E6A625E7D505F81221200 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; A71073F1CFCF3AA12A38A13BB37358E2 /* FLEXWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWebViewController.m; path = Classes/GlobalStateExplorers/FLEXWebViewController.m; sourceTree = ""; }; @@ -1268,6 +1465,7 @@ A8199F3ABEDC92E1BD084AD83BB3000C /* safari-7@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7@3x.png"; path = "Pod/Assets/safari-7@3x.png"; sourceTree = ""; }; A86A5B40B1E38601AF456863BFDE814C /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; A8F8D4DA5DD13C16B6EA67915C6AD0D7 /* PureLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PureLayout-umbrella.h"; sourceTree = ""; }; + A9F6A33895544B8C931039CF4DD6B358 /* Pageboy.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pageboy.framework; path = Pageboy.framework; sourceTree = BUILT_PRODUCTS_DIR; }; AAA3349B4720C835F3CE02F345C01D9C /* FLEXNetworkTransactionDetailTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionDetailTableViewController.h; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.h; sourceTree = ""; }; AAACC8804F46FE971AD022D3C549B933 /* FLEXResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXResources.h; path = Classes/Utility/FLEXResources.h; sourceTree = ""; }; AAF3E19A12BCEE664DECCEFAE725776F /* JDStatusBarNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarNotification.h; path = JDStatusBarNotification/JDStatusBarNotification.h; sourceTree = ""; }; @@ -1276,7 +1474,9 @@ ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; AD0F16985570887335D91D3A386B8F0B /* IGListBatchUpdateData+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListBatchUpdateData+DebugDescription.m"; path = "Source/Internal/IGListBatchUpdateData+DebugDescription.m"; sourceTree = ""; }; AD2D35D690427760C32CBE94F612C569 /* NetworkTransport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkTransport.swift; path = Sources/NetworkTransport.swift; sourceTree = ""; }; + AE188429B664DED66E2D7CD3F0155019 /* MMMarkdown.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMMarkdown.m; sourceTree = ""; }; AE358632CB8AB4AE59E259549482C466 /* IGListAdapterDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterDataSource.h; path = Source/IGListAdapterDataSource.h; sourceTree = ""; }; + AE4C52EC953D9D4A8011A433780E36C0 /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLAnimatedImage.framework; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; AEC93957524792CCE4EC3179B62426AB /* IGListWorkingRangeHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListWorkingRangeHandler.mm; path = Source/Internal/IGListWorkingRangeHandler.mm; sourceTree = ""; }; AF303618CF2AA4CD74868E896E1A5FBC /* JDStatusBarNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JDStatusBarNotification-prefix.pch"; sourceTree = ""; }; AF35D8A86FCD3B3B358E1A1C4D427E91 /* FLEXDefaultsExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultsExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.m; sourceTree = ""; }; @@ -1287,6 +1487,8 @@ B139C81B652CEC086EB3217B195DE409 /* NSBundle+NYTPhotoViewer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+NYTPhotoViewer.h"; path = "Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.h"; sourceTree = ""; }; B1729E166FEDB19996388D2350DC22BB /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = ""; }; B250EE29731042B5A825F767E764DD36 /* Tabman-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tabman-prefix.pch"; sourceTree = ""; }; + B28BE15D154AE44D910C8D8C81C4A0EE /* SwipeCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeCollectionViewCell.swift; sourceTree = ""; }; + B2FA6B84775AC93003A2423DB0C235F9 /* MMElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMElement.h; sourceTree = ""; }; B5181EC7F46F609F15B6418344B86E2E /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; B5B88C1200AEB23B7716808BD70BA65C /* sk.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sk.lproj; path = Pod/Assets/sk.lproj; sourceTree = ""; }; B5C32F778C7F635D64986F4507BC475B /* PageboyViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PageboyViewController.swift; path = Sources/Pageboy/PageboyViewController.swift; sourceTree = ""; }; @@ -1299,7 +1501,9 @@ B83CDD5BBACEF21F2AEC1372CD3FE756 /* FLEXInstancesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXInstancesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h; sourceTree = ""; }; B87657BE3FC4278860D8D8D3B4F8A77D /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Source/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; B878C8B0E98D96587416419743A98B04 /* PureLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PureLayout-dummy.m"; sourceTree = ""; }; + B92FDC99CF9D2D3AB3197518CE5AD423 /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Apollo.framework; path = Apollo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B96B16BCB8765FDA34CF68C954DAC54F /* Tabman.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Tabman.modulemap; sourceTree = ""; }; + B9B86893A68A61E3FADA522EADB5A918 /* SlackTextViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SlackTextViewController-dummy.m"; sourceTree = ""; }; B9C208C610DDE1443918C4EE8A1DF21A /* IGListAdapterUpdaterInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdaterInternal.h; path = Source/Internal/IGListAdapterUpdaterInternal.h; sourceTree = ""; }; B9C6B31B04EDAC02D4F7341C7982FF19 /* FLEXHierarchyTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewController.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.h; sourceTree = ""; }; B9D0E84F60550F4313739706E0045AB3 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Source/ConstraintInsetTarget.swift; sourceTree = ""; }; @@ -1315,16 +1519,20 @@ BD0B64C0D5419E166CBFA5ED68AD5AC2 /* Pods-FreetimeTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FreetimeTests-acknowledgements.markdown"; sourceTree = ""; }; BD6C28933015B0E9642A51432CA759D4 /* FLEXHierarchyTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewCell.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.m; sourceTree = ""; }; BDCB6C7C391CF93F341913695D9FD3F3 /* NSBundle+NYTPhotoViewer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+NYTPhotoViewer.m"; path = "Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.m"; sourceTree = ""; }; - BDFECB68D2F784128C3D4B0138C1C467 /* PureLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PureLayout.framework; path = PureLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; BE23D153B2B1F85DE78ED155E46782CC /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SDWebImage.modulemap; sourceTree = ""; }; BE3A6A0F630D81F730918B6A8585307D /* Pods-FreetimeTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FreetimeTests-acknowledgements.plist"; sourceTree = ""; }; - BF77258ADA908235729B37EA62284000 /* TUSafariActivity.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TUSafariActivity.bundle; path = TUSafariActivity.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + BEB3C30F08C01CEB63A8FFC1B1635554 /* SwipeCellKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwipeCellKit-umbrella.h"; sourceTree = ""; }; + BF6F69BE51175ECC980FA87528207557 /* HTMLString.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HTMLString.framework; path = HTMLString.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BFAE23E4B553A2290152B220C6D70E83 /* SwipeCellKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwipeCellKit-prefix.pch"; sourceTree = ""; }; + C00DD3CB61579D29CAA959BB83946DFC /* MMSpanParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMSpanParser.h; sourceTree = ""; }; C013BE2A62F7D81B0291616AFE7D6F15 /* FLEXClassesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.m; sourceTree = ""; }; C04DBB6C15787F3A1535D78713CB4945 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Source/ConstraintMakerFinalizable.swift; sourceTree = ""; }; C0E285207A7816195812DB545F1EF3EF /* Apollo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Apollo-prefix.pch"; sourceTree = ""; }; C114D7224AB616AF0DB1DA1085FDBE66 /* FLEXArgumentInputStringView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStringView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h; sourceTree = ""; }; + C12BD297DE85DF36CAC77187367FCF49 /* MMMarkdown-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMMarkdown-prefix.pch"; sourceTree = ""; }; C13543861F81731AB8FEF4B588356C3D /* IGListAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAssert.h; path = Source/Common/IGListAssert.h; sourceTree = ""; }; C1C1C1CDB9745D2402C03C353C37C006 /* IGListAdapterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListAdapterProxy.m; path = Source/Internal/IGListAdapterProxy.m; sourceTree = ""; }; + C21A39CD4D3549D4F66ED5597AA0527D /* MMScanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMScanner.h; sourceTree = ""; }; C243DF441122D2A53AEBD68735A85A8C /* Separator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Separator.swift; path = Sources/Tabman/TabmanBar/Components/Separator/Separator.swift; sourceTree = ""; }; C24B81E4ECDA63814C6D9E5106644B6E /* TabmanBlockTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanBlockTabBar.swift; path = Sources/Tabman/TabmanBar/Styles/TabmanBlockTabBar.swift; sourceTree = ""; }; C2B799AE6F3FADF642F0B3BACED598B1 /* TabmanDotIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanDotIndicator.swift; path = Sources/Tabman/TabmanBar/Components/Indicator/Styles/TabmanDotIndicator.swift; sourceTree = ""; }; @@ -1338,17 +1546,20 @@ C5E0EBF6C3D184B75A86095ED483F033 /* IGListSectionControllerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSectionControllerInternal.h; path = Source/Internal/IGListSectionControllerInternal.h; sourceTree = ""; }; C5F0B6C1978247AD0A0DC380CAF9A6D6 /* FLEXRealmDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDefines.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h; sourceTree = ""; }; C5F66D95718B756D6F26C099B73FB2F6 /* FLEXNetworkHistoryTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkHistoryTableViewController.m; path = Classes/Network/FLEXNetworkHistoryTableViewController.m; sourceTree = ""; }; + C5FE7F338BC050257D1CD9BFC47C633A /* SLKTextViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SLKTextViewController.m; sourceTree = ""; }; C60C0B47DD73E47D2D307A72409FA898 /* Pods-FreetimeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeTests.debug.xcconfig"; sourceTree = ""; }; C6983F2008C1802F8E01D13B9077CFA9 /* FLEXSQLiteDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSQLiteDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.m; sourceTree = ""; }; C6AC62F0C719C7C272559A3A5DA1ADD4 /* FLEXArgumentInputStructView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStructView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.m; sourceTree = ""; }; C6E49624D2539B69708D81035DC502F7 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; C758F605CA5731540DFBF7B7754955F7 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Pod/Assets/en.lproj; sourceTree = ""; }; + C78613268FEDD942EE80CDC640918B5C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; C78B54631C309259AE5E9EAD7C35E10F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; C7C09DD6B4FDCF36FBF357DB4762958D /* IGListIndexPathResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListIndexPathResult.m; path = Source/Common/IGListIndexPathResult.m; sourceTree = ""; }; C861500B5BA1080A2F0A3C1E404AFA96 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; C8BF70410380407B6785B22CDA192B99 /* NYTPhotoTransitionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoTransitionController.h; path = Pod/Classes/ios/NYTPhotoTransitionController.h; sourceTree = ""; }; C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JDStatusBarNotification.xcconfig; sourceTree = ""; }; C93F036B888B77B2C2A8B5F2FF85C547 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SnapKit.modulemap; sourceTree = ""; }; + C9746B069593476A961B0E3E5C101DDF /* Pods_FreetimeTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_FreetimeTests.framework; path = "Pods-FreetimeTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; CA05D9E8B4CB02FE78AE20590E2298EB /* NYTPhotoViewerCloseButtonXLandscape.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = NYTPhotoViewerCloseButtonXLandscape.png; path = Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape.png; sourceTree = ""; }; CA15D2AE15125765C0B4C12805BE952D /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CA19B0EF72B0C5617EC14D6F85CBB7FC /* TabmanBar+Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TabmanBar+Indicator.swift"; path = "Sources/Tabman/TabmanBar/TabmanBar+Indicator.swift"; sourceTree = ""; }; @@ -1360,6 +1571,7 @@ CD622CDB875FF31F9D347FD96CDA7DDC /* FLEXArgumentInputTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputTextView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.m; sourceTree = ""; }; CDAF32A9CDF6150DC51EBE57818DBF28 /* FLEXNetworkTransactionDetailTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionDetailTableViewController.m; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.m; sourceTree = ""; }; CE2FA6DA53189B938C6E9FD822B66950 /* WeakWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakWrapper.swift; path = Sources/Pageboy/Utilities/DataStructures/WeakWrapper.swift; sourceTree = ""; }; + CF12667C1040A6F1DE47B2CF0A4E6BEE /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = ""; }; CF7C2B233EC7C6795E8E0775BF08B6E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; D00CFA259AD0DE131050696F8AA6A6C4 /* IGListAdapter+UICollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListAdapter+UICollectionView.m"; path = "Source/Internal/IGListAdapter+UICollectionView.m"; sourceTree = ""; }; D09ABD151A648860BBF10CD6CE19CA80 /* IGListBindingSectionControllerDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindingSectionControllerDataSource.h; path = Source/IGListBindingSectionControllerDataSource.h; sourceTree = ""; }; @@ -1373,6 +1585,7 @@ D3426016BF841FE322940A46DE5D3C5B /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; D364AD5DDFE8E606ACED1AE9AC12DA60 /* JSONStandardTypeConversions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONStandardTypeConversions.swift; path = Sources/JSONStandardTypeConversions.swift; sourceTree = ""; }; D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HTMLString.xcconfig; sourceTree = ""; }; + D423B8028B36AAE8DB78971DFED43701 /* TUSafariActivity.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TUSafariActivity.bundle; path = TUSafariActivity.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; D48CF8B0BD1933199CAB7F43BFB8D41C /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; D51468A122AADB85FFD00A5E804FB471 /* TUSafariActivity-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TUSafariActivity-umbrella.h"; sourceTree = ""; }; D538D02AB3BAB852E2AA2B0FF3EF4A21 /* IGListKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IGListKit-umbrella.h"; sourceTree = ""; }; @@ -1398,14 +1611,17 @@ DDB1708648607CE79DE814292E4975E0 /* TabmanBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanBar.swift; path = Sources/Tabman/TabmanBar/TabmanBar.swift; sourceTree = ""; }; DEDB781F16915D6F02A32B943199D5E6 /* UIView+Localization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Localization.swift"; path = "Sources/Pageboy/Utilities/ViewUtilities/UIView+Localization.swift"; sourceTree = ""; }; DF0361DA8FE5908E4020AC6479CC5944 /* FLAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImage.h; path = FLAnimatedImage/FLAnimatedImage.h; sourceTree = ""; }; + DF11FC88CC23E7A99587F6E4D8A5DAD5 /* SLKInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SLKInputAccessoryView.h; sourceTree = ""; }; DF12DE09F8C8C6C984567A208A21EFC4 /* Apollo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Apollo-umbrella.h"; sourceTree = ""; }; DFB4D6B30225588C1B3BD36316A7D19B /* sv.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sv.lproj; path = Pod/Assets/sv.lproj; sourceTree = ""; }; E054E5D38F8DF1CFAE8E584F1FCD24FB /* NYTPhotoDismissalInteractionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoDismissalInteractionController.m; path = Pod/Classes/ios/NYTPhotoDismissalInteractionController.m; sourceTree = ""; }; E0D7A3AE5A421FB4685556E0E399BF2D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E108188571251F6BFC55518B5C3E10AC /* UIResponder+SLKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+SLKAdditions.m"; sourceTree = ""; }; E11AB51BFB5B7FA4E81DD558925C83F5 /* TUSafariActivity-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TUSafariActivity-dummy.m"; sourceTree = ""; }; E11AEDE7678A4D67DAD2921CAB74A8B2 /* IGListUpdatingDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListUpdatingDelegate.h; path = Source/IGListUpdatingDelegate.h; sourceTree = ""; }; E18C61B646BA60282F505B07F171F88E /* NYTPhotoDismissalInteractionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoDismissalInteractionController.h; path = Pod/Classes/ios/NYTPhotoDismissalInteractionController.h; sourceTree = ""; }; E1DA7D501A5162B32146DDFAB90C0AAB /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Source/ConstraintView+Extensions.swift"; sourceTree = ""; }; + E20B79134C320356F900B66B29AE99EF /* MMHTMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMHTMLParser.m; sourceTree = ""; }; E210176C7E910498B8001EC4E0B22619 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Source/ConstraintLayoutGuide.swift; sourceTree = ""; }; E29B4B40D19BA6C0011AE2BD9B351129 /* Pods-FreetimeTests.testflight.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeTests.testflight.xcconfig"; sourceTree = ""; }; E2D6C0A15488D2ACE5A1C4166FF75397 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; @@ -1419,6 +1635,7 @@ E4C0C6AEFA3A4EEC2351FA781BB6C55F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; E4D1BB753C4920AFC0E8A172C9B31227 /* ContentViewScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContentViewScrollView.swift; path = Sources/Tabman/Utilities/ContentViewScrollView.swift; sourceTree = ""; }; E4EB65C83A584289C48777E807B7D9FD /* IGListSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListSectionController.m; path = Source/IGListSectionController.m; sourceTree = ""; }; + E4F1C6D8878160C0AA7CCC752D5379FC /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; E4F70DD6AEE14A709BA65FBB42984C4F /* PureLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PureLayout.xcconfig; sourceTree = ""; }; E5D8C5FD11EAB8B4EA01AC9A1B6A3AC7 /* FLEXArgumentInputNotSupportedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNotSupportedView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h; sourceTree = ""; }; E62503F92B2F65D1CD26D3284FD18604 /* FLEXMultiColumnTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultiColumnTableView.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.m; sourceTree = ""; }; @@ -1427,27 +1644,35 @@ E74FD11E6016FBDBD6109299C080EDA1 /* ResourceBundle-NYTPhotoViewer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-NYTPhotoViewer-Info.plist"; sourceTree = ""; }; E869DE6C7CB588A6CD0B0B3C6581101B /* FLEXNetworkRecorder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkRecorder.m; path = Classes/Network/FLEXNetworkRecorder.m; sourceTree = ""; }; E86F71E8A693C631EC9DE7DECBBE060E /* FLEXClassExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassExplorerViewController.m; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.m; sourceTree = ""; }; + E908B6520A234A07F2651DF30558C8DB /* SwipeTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeTableViewCell.swift; sourceTree = ""; }; E911DE60033C0F8C0ACE51961CB50B63 /* AlamofireNetworkActivityIndicator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AlamofireNetworkActivityIndicator-dummy.m"; sourceTree = ""; }; + E96819E72D7BFF1013E965BFCE68FE9F /* SwipeTableOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeTableOptions.swift; sourceTree = ""; }; E9926C32D5D23F34157BD9433692E934 /* IGListDebugger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDebugger.h; path = Source/Internal/IGListDebugger.h; sourceTree = ""; }; E9AA1DC2CCBCA67F94251B6A663FD63C /* FLEXKeyboardShortcutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardShortcutManager.h; path = Classes/Utility/FLEXKeyboardShortcutManager.h; sourceTree = ""; }; E9AE1AC263BB42A5D1BEABA4FF48113A /* FLEXHierarchyTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewController.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.m; sourceTree = ""; }; + E9B28CC9315FDE83A8B125A0FCD97587 /* SwipeAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeAnimator.swift; sourceTree = ""; }; E9C8783F6CDDEEE41FDDA682AAA5E8C1 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; E9CD567B50AFE221EDCF666584FE2FEB /* FLEXHeapEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHeapEnumerator.m; path = Classes/Utility/FLEXHeapEnumerator.m; sourceTree = ""; }; EA6760B87BDCE80079A9E70D184627FE /* FLEXMultiColumnTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultiColumnTableView.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h; sourceTree = ""; }; EAD706B50A9AE958898FBB1E0C6A204C /* FLEXTableContentViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.m; sourceTree = ""; }; EBBE7111558C7E4833F783E94B25B360 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; EBCFF8C189A935E5844137204E2A44CA /* IGListSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSectionController.h; path = Source/IGListSectionController.h; sourceTree = ""; }; + ED5A6F8C26668841BCBF2FE9202767BA /* SwipeCellKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwipeCellKit.modulemap; sourceTree = ""; }; EDCA7E89E862FD16BED4AD33F6515957 /* HTMLString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTMLString.swift; path = Sources/HTMLString/HTMLString.swift; sourceTree = ""; }; EE1033296CB703596D6A26A5F1BAA536 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; EF30C6229C2D995F7E8FDDB6D0C314BA /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = Pod/Assets/de.lproj; sourceTree = ""; }; F04FFEE3F21641B8B61A1A6C6568DF4D /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; + F088441B07A7A5367DF3586ED257717E /* SlackTextViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SlackTextViewController-prefix.pch"; sourceTree = ""; }; F1E3A0F832D27CA1F2F6791E1CACE932 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = Pod/Assets/it.lproj; sourceTree = ""; }; F2988983FF8CA9836BD83E1D0AC8BC27 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + F2B6A7FDE9C02E5631444EAFEABE2FF4 /* SwipeTableViewCellDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeTableViewCellDelegate.swift; sourceTree = ""; }; + F3F271CEE43E819B895896C2D73B8377 /* Swipeable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Swipeable.swift; sourceTree = ""; }; F415853A673BF8DEC8731263E176A261 /* TabmanScrollingButtonBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanScrollingButtonBar.swift; path = Sources/Tabman/TabmanBar/Styles/TabmanScrollingButtonBar.swift; sourceTree = ""; }; F42548B659990B64760FC22671202AC0 /* IGListWorkingRangeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListWorkingRangeDelegate.h; path = Source/IGListWorkingRangeDelegate.h; sourceTree = ""; }; F4F906D66DDE5E5504503C087A8BD967 /* Pageboy-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pageboy-prefix.pch"; sourceTree = ""; }; F52058745A3ED36EC4EF85AACF087C57 /* FLEXArgumentInputFontView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.m; sourceTree = ""; }; F531D1E21FA2363155E17070FEAEA5F6 /* safari-7~iPad.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7~iPad.png"; path = "Pod/Assets/safari-7~iPad.png"; sourceTree = ""; }; + F577A655D22F2FA6FC815C08EABED5F7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; F59427B29CFF53F15488F6B4546E71F3 /* TabmanBarTransitionStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanBarTransitionStore.swift; path = Sources/Tabman/TabmanBar/Transitioning/TabmanBarTransitionStore.swift; sourceTree = ""; }; F5A5A8A5F53BB565752B189C0AEB8B3A /* TabmanIndicatorTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TabmanIndicatorTransition.swift; path = Sources/Tabman/TabmanBar/Transitioning/IndicatorTransition/TabmanIndicatorTransition.swift; sourceTree = ""; }; F5B258896BBC36F31E36847175371EA3 /* Pods-Freetime.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Freetime.debug.xcconfig"; sourceTree = ""; }; @@ -1462,19 +1687,21 @@ F77D6DB7494152D970FFB65E5C493C81 /* FLEXGlobalsTableViewControllerEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewControllerEntry.m; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.m; sourceTree = ""; }; F786DBAE9BBDA9392B8BC6F20828DC84 /* Tabman-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tabman-umbrella.h"; sourceTree = ""; }; F7E341D5E827F3B05ADB4063D6AACF03 /* FLEXArgumentInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.m; sourceTree = ""; }; - F8003205C07F0DB378D07938F91F71BD /* Pageboy.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pageboy.framework; path = Pageboy.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F91A45848319F61619BF3AE300FE12EE /* NYTPhotoCaptionViewLayoutWidthHinting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoCaptionViewLayoutWidthHinting.h; path = Pod/Classes/ios/Protocols/NYTPhotoCaptionViewLayoutWidthHinting.h; sourceTree = ""; }; F9647E637968F33BA3301501122CB887 /* TUSafariActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TUSafariActivity.m; path = Pod/Classes/TUSafariActivity.m; sourceTree = ""; }; F99852B995B7D9C653EC043CA5BDCD1F /* FLEXMultilineTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultilineTableViewCell.h; path = Classes/Utility/FLEXMultilineTableViewCell.h; sourceTree = ""; }; FA1ACD1BE446BA004B64C0E6A3F749A0 /* NYTPhotoViewerCloseButtonXLandscape@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "NYTPhotoViewerCloseButtonXLandscape@3x.png"; path = "Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@3x.png"; sourceTree = ""; }; FB550C27EB8A3846D2C6EEFBD8A26A73 /* NYTPhotosDataSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotosDataSource.m; path = Pod/Classes/ios/NYTPhotosDataSource.m; sourceTree = ""; }; + FB699484D8925AC847679149D7E231BF /* SwipeExpansionStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeExpansionStyle.swift; sourceTree = ""; }; FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Apollo.xcconfig; sourceTree = ""; }; FBA52E08E8E5AD46E798CFB463617A10 /* Apollo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Apollo-dummy.m"; sourceTree = ""; }; FBE14A8E189594394A6B6B460EA543F9 /* IGListSectionMap+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListSectionMap+DebugDescription.m"; path = "Source/Internal/IGListSectionMap+DebugDescription.m"; sourceTree = ""; }; FC6E92CC66EBF5192E63436AC31B669F /* FLEXNetworkTransactionTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionTableViewCell.m; path = Classes/Network/FLEXNetworkTransactionTableViewCell.m; sourceTree = ""; }; FCA1139B96C6F8559982297FF9BBB50D /* FLEXArgumentInputFontsPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontsPickerView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h; sourceTree = ""; }; FCC745E676C032B7950AF2E691D05511 /* NYTPhotosOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosOverlayView.h; path = Pod/Classes/ios/NYTPhotosOverlayView.h; sourceTree = ""; }; + FD745A996FD4D28E5756D19CBA8288BE /* Pods_Freetime.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Freetime.framework; path = "Pods-Freetime.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; FDF3B95712F1B8EC6B9978281880A567 /* FLEXManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXManager.m; path = Classes/Manager/FLEXManager.m; sourceTree = ""; }; + FE5EBF9C960D68EB0054F444B7A919FA /* SlackTextViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SlackTextViewController-umbrella.h"; sourceTree = ""; }; FEAB6577CCBF41913E174FD4519F1367 /* ApolloClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApolloClient.swift; path = Sources/ApolloClient.swift; sourceTree = ""; }; FECB302DC188423649B1589194AFE729 /* PureLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PureLayout.h; path = PureLayout/PureLayout/PureLayout.h; sourceTree = ""; }; FF07F41CF0C08B060B4FA7B4042D74F7 /* FLEXViewExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.m; sourceTree = ""; }; @@ -1483,11 +1710,11 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0D70A7A99ADFF68B7F4758B16BE3B8F9 /* Frameworks */ = { + 06E5465FAAABF60A06177C94493A25E2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 906AF477FD499744BCCE68457FB833F2 /* Foundation.framework in Frameworks */, + 7D36510603BFD87A129EB54BD8E9A939 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1499,14 +1726,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1FAD1D2A5A58C0F6409A74CB4BFD8AA4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 85623489466EDEFB0463FFE0F323ED8C /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 23C7817B837106B4AAC9F39C4B570175 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1515,11 +1734,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A403A540DBC63DD709DD91F312D6126 /* Frameworks */ = { + 332DEB08AE17E0F49C1E717C0901A46B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C4192F049CD7CA8D09639E1C77F51006 /* Foundation.framework in Frameworks */, + 04D1C3BDE09A55430EAAAA80B4C3D074 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 45BAA4153F04A721B13899F9ABE26405 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2695C5A9BBBACD00AAD264BE4769F272 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1532,24 +1759,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5B5B30F2DA94D7719352FD645D82E3B6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B8EE4150D927610FAC3FDD6AB8AD083D /* Foundation.framework in Frameworks */, - 0722BBBEE67821C2A097E67F0459F548 /* Pageboy.framework in Frameworks */, - 3518246A43DA3FCF7009B377934E23C8 /* PureLayout.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5C987D5BD0073D596E826929B5DC7670 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 32B3F8862B2C1442C9F96C048B7F94A1 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7E1E3BD55CFF390DCB6B88CEBAF325E7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1558,6 +1767,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7E4BA8469073D04C7499E5ECC9059819 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 75ADC9B173E0BF757893787BE2EDAD5C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9102C5872D86A8164CC90FC57A43A1BF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1566,19 +1783,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ABDDD7026005D1C28D33BAA8E75025A3 /* Frameworks */ = { + BC9DEB0BD88AE678D1447010577E8671 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 10194ADE860B908E47E51C71FDA600C8 /* Foundation.framework in Frameworks */, - 654EC2CEC961A9417C81CE34D11ACE81 /* ImageIO.framework in Frameworks */, + F5C8CAA935F37C748E5A65F5DD295764 /* Foundation.framework in Frameworks */, + E736CF8EC631637DA2E01938A0953147 /* ImageIO.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B06D4EFAE725AADACE0992F78FD568FD /* Frameworks */ = { + BD35975CDF77C72AF1DCB2CF05FF6EC3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 4FEE594C081D07F7A6BE7CBB307C616A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1599,6 +1817,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CDFE7DE8A747795718D696334FF406D9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BA87E0EB03E090DF92C4CD943F25A1F7 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CE7C697A59EF6DB487AB315190C31A2A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1608,6 +1834,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D427A41E58AE2102540B5E3538660097 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FF3151E2F92048E84BD89E59E9B00EE0 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E5A0458AAEAB65EAAF5219D9E83CFB6F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1618,6 +1852,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E792DDFC521B08D4E1C70C40B84EE82B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + F4DBAF95F5934F0AB4C804B049B7B098 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E9EE1BCE115D7634C1EAE39808E7FEE2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; ED85DEC680B0CF637527EEE759FB3C39 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1627,14 +1876,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F027263582B97747931A998EE7ED7091 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - DCC1BCB6529E12D30C195DC6D087BC62 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F502D39785DCE08B32B28C76DD1B93F2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1647,6 +1888,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FB862AECD598746BAE5AA33D97808386 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9B68697BFB6363ED6150A951844BBBF8 /* Foundation.framework in Frameworks */, + 4AA63AB6D76DBAED87DD2F74EB72DBB8 /* Pageboy.framework in Frameworks */, + 79BE27B8881CD09F4706E4C7BAE36DFF /* PureLayout.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -1897,6 +2148,50 @@ name = Core; sourceTree = ""; }; + 3D0F48E1184D4B0531DA9BBE1BBFC4B6 /* Source */ = { + isa = PBXGroup; + children = ( + DF11FC88CC23E7A99587F6E4D8A5DAD5 /* SLKInputAccessoryView.h */, + 772E05FE4D6E5B2795AC831D4695C1F5 /* SLKInputAccessoryView.m */, + 3DB9076A00E6253F4FB252318201269E /* SLKTextInput.h */, + 8B91AE5FA25913FE517D9ECF6D4532AD /* SLKTextInput+Implementation.m */, + 8275B3E7AC7E1C0CC1EBBED8B2D6A054 /* SLKTextInputbar.h */, + 23CDC1103FB87B11388B2C8FB496D920 /* SLKTextInputbar.m */, + 4211EECC706E2FF8B6A35117F877EFAE /* SLKTextView.h */, + 53B045A09B6F331C4C445760F2A523A7 /* SLKTextView.m */, + 1BAFCE7EB72D8F8908C9AA16136442F9 /* SLKTextView+SLKAdditions.h */, + 28BCAEDF70385A96FC0701FAD51B6697 /* SLKTextView+SLKAdditions.m */, + 83034DE75E78CD02075156B77BEB2C48 /* SLKTextViewController.h */, + C5FE7F338BC050257D1CD9BFC47C633A /* SLKTextViewController.m */, + 9FF76FB85B7287B5B89391346CB64565 /* SLKTypingIndicatorProtocol.h */, + 5FB430DC3E5DD021E8EDEA028F0A2774 /* SLKTypingIndicatorView.h */, + 00E782396C20F1C2F8371B697FC6524C /* SLKTypingIndicatorView.m */, + 6A81EF059793CF3D3E71BFDF642C69A3 /* SLKUIConstants.h */, + 628C6C8030FCA9E57E3C15FC3338EFDD /* UIResponder+SLKAdditions.h */, + E108188571251F6BFC55518B5C3E10AC /* UIResponder+SLKAdditions.m */, + 70A51F39A2CF5CFDEB2AF55676ED8DB1 /* UIScrollView+SLKAdditions.h */, + 761A733DA93383767AA8646CE320B47C /* UIScrollView+SLKAdditions.m */, + 2C7E975E22ABF61B13EC6653CEC27C8D /* UIView+SLKAdditions.h */, + 41965E68B7B0078954689EDB62266581 /* UIView+SLKAdditions.m */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 3EF04D8C0C42D32F4A1CB1F39C773634 /* Support Files */ = { + isa = PBXGroup; + children = ( + C78613268FEDD942EE80CDC640918B5C /* Info.plist */, + ED5A6F8C26668841BCBF2FE9202767BA /* SwipeCellKit.modulemap */, + 150E7B0F62E5178288A6797A7421468C /* SwipeCellKit.xcconfig */, + 34989DEF0C7C56B9FF58AA94C6A7655D /* SwipeCellKit-dummy.m */, + BFAE23E4B553A2290152B220C6D70E83 /* SwipeCellKit-prefix.pch */, + BEB3C30F08C01CEB63A8FFC1B1635554 /* SwipeCellKit-umbrella.h */, + ); + name = "Support Files"; + path = "../../Pods/Target Support Files/SwipeCellKit"; + sourceTree = ""; + }; 4945A75DE82B81AF52A708C8B8200097 /* IGListKit */ = { isa = PBXGroup; children = ( @@ -1908,6 +2203,35 @@ path = IGListKit; sourceTree = ""; }; + 4FEEE92017981063D87F0D25862BD3A9 /* Products */ = { + isa = PBXGroup; + children = ( + E4F1C6D8878160C0AA7CCC752D5379FC /* Alamofire.framework */, + 73A50BCC31561632C25FDF9C9AB64C96 /* AlamofireNetworkActivityIndicator.framework */, + B92FDC99CF9D2D3AB3197518CE5AD423 /* Apollo.framework */, + AE4C52EC953D9D4A8011A433780E36C0 /* FLAnimatedImage.framework */, + 13F263270E6D0A4E32080B5BAC1EDBA0 /* FLEX.framework */, + BF6F69BE51175ECC980FA87528207557 /* HTMLString.framework */, + 6158CDE5DAC64DCF73974FDB1C444396 /* IGListKit.framework */, + 83630246949CEA4BD463CF775D6321F0 /* JDStatusBarNotification.framework */, + 224CED01C9DA1828B6CDD79E778051DA /* MMMarkdown.framework */, + 6E3F05CB909D0998193F1D29DCF9E790 /* NYTPhotoViewer.bundle */, + 2EE0286FDEDE9CC8E219E9479BE09C7C /* NYTPhotoViewer.framework */, + A9F6A33895544B8C931039CF4DD6B358 /* Pageboy.framework */, + FD745A996FD4D28E5756D19CBA8288BE /* Pods_Freetime.framework */, + C9746B069593476A961B0E3E5C101DDF /* Pods_FreetimeTests.framework */, + 7A936FA389ED66DF3E66411931BB2F25 /* PureLayout.framework */, + 0B20392CDE628D7E2A9CF898153F5B99 /* SDWebImage.framework */, + 822AB2931D00D3BD89E5B18BC1662354 /* SlackTextViewController.framework */, + 500E5DF65F2CFF2FEEEF8D52A3C0682A /* SnapKit.framework */, + A4DD8CFD8CDE609FEA0AE7543DBC73C6 /* SwipeCellKit.framework */, + 88E5FEE85F381550903DDE8E64D49E4C /* Tabman.framework */, + D423B8028B36AAE8DB78971DFED43701 /* TUSafariActivity.bundle */, + 7C25ABCE86687275668AD697B8AE576B /* TUSafariActivity.framework */, + ); + name = Products; + sourceTree = ""; + }; 50D1946FB68C47D42C29999E17C285BB /* Support Files */ = { isa = PBXGroup; children = ( @@ -1922,6 +2246,16 @@ path = "../Target Support Files/IGListKit"; sourceTree = ""; }; + 5196DAB5FC46E505C603E6439A4BEBB6 /* SlackTextViewController */ = { + isa = PBXGroup; + children = ( + 3D0F48E1184D4B0531DA9BBE1BBFC4B6 /* Source */, + ED2C09BEBAAE5C66AA2700434BF60460 /* Support Files */, + ); + name = SlackTextViewController; + path = "../Local Pods/SlackTextViewController"; + sourceTree = ""; + }; 59E0075E13290648F3B7305A30ADA720 /* FLAnimatedImage */ = { isa = PBXGroup; children = ( @@ -1980,6 +2314,32 @@ path = "../Target Support Files/Pageboy"; sourceTree = ""; }; + 69D4F4F76CFDCA9024384C5862875103 /* Source */ = { + isa = PBXGroup; + children = ( + 78F8032EA0897F5A026781F697D5325F /* MMDocument.h */, + 6EFFC1199E57B86B0939267765E016C7 /* MMDocument.m */, + 42B07F4EB7EE85E6CDDD2A9BBCF8D98E /* MMDocument_Private.h */, + B2FA6B84775AC93003A2423DB0C235F9 /* MMElement.h */, + 3D5965E8B737830D03A8AAFC36D1C9D8 /* MMElement.m */, + 8204C58E6BB014EEBD0E8BC8D08835BC /* MMGenerator.h */, + 04F41E67FE1C98249FEDB1C4BC7C8425 /* MMGenerator.m */, + 395B20871FFC598F56BF892533F58CC3 /* MMHTMLParser.h */, + E20B79134C320356F900B66B29AE99EF /* MMHTMLParser.m */, + 074CC59266FADD304420ED4E93DF84D8 /* MMMarkdown.h */, + AE188429B664DED66E2D7CD3F0155019 /* MMMarkdown.m */, + 41E374E3033C5BF23B31B169D66D77E0 /* MMMarkdownExtensions.h */, + 0D06E85E70F68AB59BC215C1DE648ADD /* MMParser.h */, + 6E0B33E77AA9A1C2C0BE9574E04548D3 /* MMParser.m */, + C21A39CD4D3549D4F66ED5597AA0527D /* MMScanner.h */, + 78A0E768EE2D229A3DFFB8004F10B223 /* MMScanner.m */, + C00DD3CB61579D29CAA959BB83946DFC /* MMSpanParser.h */, + 48D41D2326F2A31873B6B592AC05B972 /* MMSpanParser.m */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; 75B4830C0F0367B0BAF2F51BC7130322 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2012,9 +2372,10 @@ isa = PBXGroup; children = ( 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + B882BA0B3CCB997D03975EC7470DFC31 /* Development Pods */, 9F5A2DA9FD8E0AF460692CF0ACCA05D3 /* Frameworks */, 04F5500A739F5C94520A808DE95FA0BF /* Pods */, - A8DCD5EA94B70895CDBE377CE3D00E35 /* Products */, + 4FEEE92017981063D87F0D25862BD3A9 /* Products */, C46C06D74A9FBF760DFD684835AD8735 /* Targets Support Files */, ); sourceTree = ""; @@ -2312,6 +2673,20 @@ name = Resources; sourceTree = ""; }; + 9A1413F6D8912E384DF21DC936738402 /* Support Files */ = { + isa = PBXGroup; + children = ( + 89A6F78E1FE053BEFA0A73C25F236AF1 /* Info.plist */, + 79C9535D52A7B1EF06C0DA9493638FA5 /* MMMarkdown.modulemap */, + 8DDFF59E27D249E021FAA0A18B824304 /* MMMarkdown.xcconfig */, + 7C28AAF88CA8416524A43B7AF756EC7A /* MMMarkdown-dummy.m */, + C12BD297DE85DF36CAC77187367FCF49 /* MMMarkdown-prefix.pch */, + 7B4F3109CB7E14C83C1E50F39DF9BE1A /* MMMarkdown-umbrella.h */, + ); + name = "Support Files"; + path = "../../Pods/Target Support Files/MMMarkdown"; + sourceTree = ""; + }; 9F5A2DA9FD8E0AF460692CF0ACCA05D3 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -2342,6 +2717,16 @@ path = PureLayout; sourceTree = ""; }; + A2797D600DAC5B5D0A67A4A878E674E9 /* MMMarkdown */ = { + isa = PBXGroup; + children = ( + 69D4F4F76CFDCA9024384C5862875103 /* Source */, + 9A1413F6D8912E384DF21DC936738402 /* Support Files */, + ); + name = MMMarkdown; + path = "../Local Pods/MMMarkdown"; + sourceTree = ""; + }; A4EF296CE2D29D263077B3E834F08015 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2366,32 +2751,6 @@ path = SDWebImage; sourceTree = ""; }; - A8DCD5EA94B70895CDBE377CE3D00E35 /* Products */ = { - isa = PBXGroup; - children = ( - 54C4087CC487EA0AB6D596DCE366F1EB /* Alamofire.framework */, - 0F4BDD9B7BFE4640C7A36F6BF32679C7 /* AlamofireNetworkActivityIndicator.framework */, - 52E88F0A1DCDAEF7309F982A87FE9DC9 /* Apollo.framework */, - 2AC415435E1AB922E6F6C96A3D6D9552 /* FLAnimatedImage.framework */, - 64B5A37D0E078F287ACB4002D20C4C7D /* FLEX.framework */, - 22724C8D71FE2C344776E03DA910A2BF /* HTMLString.framework */, - 61D5B30FF6F995F58D501CD77B1F44E2 /* IGListKit.framework */, - 70640AC0C1B2D5AE37C63AB4EBFCEA92 /* JDStatusBarNotification.framework */, - 371E70DCA1D6172DA12F54C0E46603C2 /* NYTPhotoViewer.bundle */, - 37308DBCC30445A0D85AAFA683E74A9C /* NYTPhotoViewer.framework */, - F8003205C07F0DB378D07938F91F71BD /* Pageboy.framework */, - 82ACC5D0383D176F35331F547EC6D7BD /* Pods_Freetime.framework */, - 1949A153766718480CE3B9678D4BF9D6 /* Pods_FreetimeTests.framework */, - BDFECB68D2F784128C3D4B0138C1C467 /* PureLayout.framework */, - 951A9664FBA1AC605169134E64BC4F72 /* SDWebImage.framework */, - 0F877D71D3D57B9F7334013BD344ABFD /* SnapKit.framework */, - 8D559B98E2E18072F1201EBAC286A5A6 /* Tabman.framework */, - BF77258ADA908235729B37EA62284000 /* TUSafariActivity.bundle */, - 2E8F10381B487B5C8E7C42B25D46EAE3 /* TUSafariActivity.framework */, - ); - name = Products; - sourceTree = ""; - }; AAEB1A19CA7AF09D68674320E5FA26FA /* JDStatusBarNotification */ = { isa = PBXGroup; children = ( @@ -2475,6 +2834,33 @@ name = Core; sourceTree = ""; }; + B24DC3060198DAB98BA1BF686D716B00 /* Source */ = { + isa = PBXGroup; + children = ( + CF12667C1040A6F1DE47B2CF0A4E6BEE /* Extensions.swift */, + F3F271CEE43E819B895896C2D73B8377 /* Swipeable.swift */, + 86CD16C779DC1AD3E821FB8E3105D817 /* SwipeAction.swift */, + 1BEE6232BBDFC8AF93D0A572D9B04EEC /* SwipeActionButton.swift */, + 7A86AABACFA284A4E9D179F5860C3242 /* SwipeActionsView.swift */, + 61D5FA98857B5EA68448C7EF572BF70A /* SwipeActionTransitioning.swift */, + E9B28CC9315FDE83A8B125A0FCD97587 /* SwipeAnimator.swift */, + B28BE15D154AE44D910C8D8C81C4A0EE /* SwipeCollectionViewCell.swift */, + 918CC0A9660FCEAB7575DA7FA1068176 /* SwipeCollectionViewCell+Display.swift */, + 4B16D6F25A2770FF876765B508676E28 /* SwipeCollectionViewCellDelegate.swift */, + 84D8D2038F512E43E246316ECDC10692 /* SwipeExpanding.swift */, + FB699484D8925AC847679149D7E231BF /* SwipeExpansionStyle.swift */, + 645D17154F4297CC66461A81425B59EC /* SwipeFeedback.swift */, + E96819E72D7BFF1013E965BFCE68FE9F /* SwipeTableOptions.swift */, + E908B6520A234A07F2651DF30558C8DB /* SwipeTableViewCell.swift */, + 022362F8DCAF9E851C3953A272C21FB7 /* SwipeTableViewCell+Accessibility.swift */, + 52FDDB4B8AFAE7652C4F9FDB5D52A345 /* SwipeTableViewCell+Display.swift */, + F2B6A7FDE9C02E5631444EAFEABE2FF4 /* SwipeTableViewCellDelegate.swift */, + 8465833AE086109F05C3FBE17A4A7590 /* SwipeTransitionLayout.swift */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; B510840B81600818B1EFAAD805BFA295 /* TUSafariActivity */ = { isa = PBXGroup; children = ( @@ -2497,6 +2883,16 @@ path = NYTPhotoViewer; sourceTree = ""; }; + B882BA0B3CCB997D03975EC7470DFC31 /* Development Pods */ = { + isa = PBXGroup; + children = ( + A2797D600DAC5B5D0A67A4A878E674E9 /* MMMarkdown */, + 5196DAB5FC46E505C603E6439A4BEBB6 /* SlackTextViewController */, + D02A4FDDE340A17380FA31FE16E7B6A7 /* SwipeCellKit */, + ); + name = "Development Pods"; + sourceTree = ""; + }; BCAFABC9F5023ED68E4D0E93F1BE2F58 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2574,6 +2970,16 @@ path = "../Target Support Files/TUSafariActivity"; sourceTree = ""; }; + D02A4FDDE340A17380FA31FE16E7B6A7 /* SwipeCellKit */ = { + isa = PBXGroup; + children = ( + B24DC3060198DAB98BA1BF686D716B00 /* Source */, + 3EF04D8C0C42D32F4A1CB1F39C773634 /* Support Files */, + ); + name = SwipeCellKit; + path = "../Local Pods/SwipeCellKit"; + sourceTree = ""; + }; D1BB0C9922E31B4CFC72A74C40E1F52F /* AlamofireNetworkActivityIndicator */ = { isa = PBXGroup; children = ( @@ -2613,6 +3019,20 @@ path = "../Target Support Files/PureLayout"; sourceTree = ""; }; + ED2C09BEBAAE5C66AA2700434BF60460 /* Support Files */ = { + isa = PBXGroup; + children = ( + F577A655D22F2FA6FC815C08EABED5F7 /* Info.plist */, + 1046C541978C110A04C135C4F0E2A56E /* SlackTextViewController.modulemap */, + 745DF244085634F76745505235A66DE6 /* SlackTextViewController.xcconfig */, + B9B86893A68A61E3FADA522EADB5A918 /* SlackTextViewController-dummy.m */, + F088441B07A7A5367DF3586ED257717E /* SlackTextViewController-prefix.pch */, + FE5EBF9C960D68EB0054F444B7A919FA /* SlackTextViewController-umbrella.h */, + ); + name = "Support Files"; + path = "../../Pods/Target Support Files/SlackTextViewController"; + sourceTree = ""; + }; EF481EECDE2334C33709296D5633A643 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2689,6 +3109,39 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ + 050FE4EC7FD373C0AA317C4915289411 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D689FBAEC3BC1A8578E346E90B8FDD24 /* Pods-Freetime-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0B04226208414CE5D4E06AF830624AA4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 505140FEC59278EEA0E0B0E8D2E0E57C /* TUSafariActivity-umbrella.h in Headers */, + EC71E909DB9F7399337ECB49329D53EE /* TUSafariActivity.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 111EF04BBB682FBCA7F6D76803A7DCB2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 2B57FD84E67D338D40A388FCA3986DC6 /* SnapKit-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 159743D1E9B2B6C12D18692EFE18B01F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BAC788E4220C0EB778B401BEC24DA6A4 /* Pods-FreetimeTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1676A12029F043DEC9EE7D655DF6D19F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2699,17 +3152,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 19FEEB488CBC8BD4198D16828142A6AC /* Headers */ = { + 1843CA6E52FFF79A71593FD29EBBEA71 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0CEE7F43D71D70EC701210923AE35BD5 /* ALView+PureLayout.h in Headers */, - 6EE6348E86E546983609843C715C0AA8 /* NSArray+PureLayout.h in Headers */, - 7B9F80316E14BB395E47D051B927B2BF /* NSLayoutConstraint+PureLayout.h in Headers */, - FCE9C9605737672EBAE7A33C7E4B7AF7 /* PureLayout+Internal.h in Headers */, - B9385216D47922F45FA89BC4494A7026 /* PureLayout-umbrella.h in Headers */, - AF0202DB3637F16E15F83DFC834C7251 /* PureLayout.h in Headers */, - 56B62F7E3D00BDBB33ED7F6790E56E5C /* PureLayoutDefines.h in Headers */, + 4326BDCA79C769D1B47EAF0172E2131D /* ALView+PureLayout.h in Headers */, + 5399C9623ABAED169BA199CA6CF7A368 /* NSArray+PureLayout.h in Headers */, + 9DD58D7C4FC826297D3171A3CB3630B7 /* NSLayoutConstraint+PureLayout.h in Headers */, + 0C0C9F7718B2A15ACF5DCB8FF2862A5E /* PureLayout+Internal.h in Headers */, + 6C4FFBA623FB20D90A441282A9BD94AE /* PureLayout-umbrella.h in Headers */, + AFFCB34784175A02CA1D9AE3B962187B /* PureLayout.h in Headers */, + 611E2D8BFF39BA330324B14C89A7EFF7 /* PureLayoutDefines.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2735,6 +3188,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 309B67D97CB8372BE05D374C296A5AB7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8FE6E2435A80FD2762BFAFCCDA88CF88 /* SwipeCellKit-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 39B502EA92A73F78B1616D7DB8EA4759 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + CE2FEC926CE09A53F8D4AA77DD29948D /* SlackTextViewController-umbrella.h in Headers */, + A0569683ACD6689C50D2309AD780588D /* SLKInputAccessoryView.h in Headers */, + BF9A0309BAFC1EBECD24DED5E4D682F3 /* SLKTextInput.h in Headers */, + 8EA9CC30C75B90926E27CC724FF351C4 /* SLKTextInputbar.h in Headers */, + 41B6B3977AFD00932BB05DC99752BD41 /* SLKTextView+SLKAdditions.h in Headers */, + ACE50E907A2AACB0A24EE7D3B0E2ED5E /* SLKTextView.h in Headers */, + 109717B523B2A0DE1E7E9BF147B62612 /* SLKTextViewController.h in Headers */, + F1064A3D00F468B9C739A4AA72D0B1EC /* SLKTypingIndicatorProtocol.h in Headers */, + CBEB98EFC76134F908AD2C70BA5A1B28 /* SLKTypingIndicatorView.h in Headers */, + 8FAB320D91473F549345AA2AF1164D50 /* SLKUIConstants.h in Headers */, + 9AFE7757D05FC0566E84812D5C42E7D5 /* UIResponder+SLKAdditions.h in Headers */, + B65E47AFB5B8602E006D5FA37E5C0E99 /* UIScrollView+SLKAdditions.h in Headers */, + 588440304054B92313E98E13D79E675A /* UIView+SLKAdditions.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 410AF8E6146197CB664E36B40127A19A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2839,46 +3320,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 694AEE10DE920B840A4872B19C280824 /* Headers */ = { + 6688475F07000AE31362E57C6E61D9DE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1E1864B28460DBFDD830B074DC6BB7DC /* NSData+ImageContentType.h in Headers */, - C2784504A1C35A0AA02C41471A1677CA /* NSImage+WebCache.h in Headers */, - FCED85E6D2255356EF6A9DF35502BC6B /* SDImageCache.h in Headers */, - 3F2D97E0D9619AECDA6BCD3909245D62 /* SDImageCacheConfig.h in Headers */, - 660E26E971156EA7373F73788A0EF2E1 /* SDWebImage-umbrella.h in Headers */, - 8E304CCB900087EB347100BF3610BEF9 /* SDWebImageCompat.h in Headers */, - 2FC71D675B9738448CF14D580960320A /* SDWebImageDecoder.h in Headers */, - FFC0F9C8BFF8C66C6EA4C5DE3F0940E3 /* SDWebImageDownloader.h in Headers */, - 49AC0E4B9D8CE4CFCB35BF453347F35A /* SDWebImageDownloaderOperation.h in Headers */, - 94849E4CA4A9E7F9BE487DAC8CC0D1A6 /* SDWebImageManager.h in Headers */, - 53E1CAAD3ABEDAB620181BCC904AE6BA /* SDWebImageOperation.h in Headers */, - E11A6154EB7EA67773F4B7ED743B9803 /* SDWebImagePrefetcher.h in Headers */, - DBA17DC8EFF0C07F12A6950614351665 /* UIButton+WebCache.h in Headers */, - FF4D99AFEDC3FA93C1D1DCC7C1D58E37 /* UIImage+GIF.h in Headers */, - 71BD208A44AE9E207479FCFA2103CAAD /* UIImage+MultiFormat.h in Headers */, - DD74D0CA8911F5222C9E97C168AE4158 /* UIImageView+HighlightedWebCache.h in Headers */, - 7086884914FA969C58DC54693BD563EC /* UIImageView+WebCache.h in Headers */, - 0BCABD5055E56D1C625199F7E096F6E5 /* UIView+WebCache.h in Headers */, - C1002173492E00D30F5BD1677550AFB1 /* UIView+WebCacheOperation.h in Headers */, + 91A5133472DDD700A369B86FF35A3417 /* Tabman-umbrella.h in Headers */, + 131E6A616A17A5BA5C75FE5DD9FCECB3 /* Tabman.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7AC7ED8BBC85CCA97007C15AF6C2A9F6 /* Headers */ = { + 86E11C847DCD92D7C9F3ED072F7C7C36 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 23901D12CC3E07E285561FEBABFCB5B7 /* TUSafariActivity-umbrella.h in Headers */, - 053DD60D24B555546C0E35A59E74B55F /* TUSafariActivity.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 82DE994A45C5E033C5F71F3F7A0CC152 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9750D50DF399B6D163439934256FF655 /* Pods-FreetimeTests-umbrella.h in Headers */, + 58EC3058E6930A4E716A981B5F0DC945 /* MMDocument.h in Headers */, + 5B51401E660DC0A72C594000FA71E7E4 /* MMDocument_Private.h in Headers */, + 6D951F6D8AE6B8CC61E3C9886638C685 /* MMElement.h in Headers */, + 16F524F506C04167CA3C56FD8A631F04 /* MMGenerator.h in Headers */, + C942EE9C0B8EAB3974240910F791DD40 /* MMHTMLParser.h in Headers */, + 4BAC16E31D3AEF179D978CB8FBD353AD /* MMMarkdown-umbrella.h in Headers */, + F69AB144D4D1DD913659EA5AFEFA4784 /* MMMarkdown.h in Headers */, + E3E1FB9FF1F1D38194E67A2F22B7B320 /* MMMarkdownExtensions.h in Headers */, + 93081247BADA27A11B459099C2C62BE2 /* MMParser.h in Headers */, + 807B9E1F865016FA0BE573C5003AEC10 /* MMScanner.h in Headers */, + 6E0B77BD70355E4A9636EC526647BF5D /* MMSpanParser.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2901,6 +3366,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9B58BA4F50B541F8CD6FC0615BB0F086 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FCCF57F38271D119ED3BC59E3C7E60D7 /* NSData+ImageContentType.h in Headers */, + 6A3C0186478C5921B7D511B0285D6AA1 /* NSImage+WebCache.h in Headers */, + 947E7AEC61B50E194E98219AFD09A539 /* SDImageCache.h in Headers */, + A096417E2C0A384F0EF23BF42FDEE558 /* SDImageCacheConfig.h in Headers */, + C8CD79941ECE12EA234472E506EB37B7 /* SDWebImage-umbrella.h in Headers */, + E94940F98BEA476F59A4D116836AB0DA /* SDWebImageCompat.h in Headers */, + 5974EB61847F881FDDF1C8596C71A943 /* SDWebImageDecoder.h in Headers */, + 1804E58FD08AED05FF6DCF8EC2E0569C /* SDWebImageDownloader.h in Headers */, + C38F01B385FBF88D397804D5D77A8C48 /* SDWebImageDownloaderOperation.h in Headers */, + 09E74D50AF292FD2A2699110BEB09FD7 /* SDWebImageManager.h in Headers */, + B2C6C797DB82DF717809D29BE50E09EB /* SDWebImageOperation.h in Headers */, + 5945001DDF5A59DE7D5B69962644110A /* SDWebImagePrefetcher.h in Headers */, + 0FB061E94A9CB4CD3E4081722637DC50 /* UIButton+WebCache.h in Headers */, + 3BAD2D6B59546500CE27EFEAA95BE6AD /* UIImage+GIF.h in Headers */, + 5574BBFAF7B5EFEF7BBBCE199D83CF0D /* UIImage+MultiFormat.h in Headers */, + DFDF4CD941BB4D49652FE0D27ECD7401 /* UIImageView+HighlightedWebCache.h in Headers */, + 4B4E845402DCFDCFD27F45FE43186DB4 /* UIImageView+WebCache.h in Headers */, + 04E5AB3303C90112A9D74E93A1D71AF6 /* UIView+WebCache.h in Headers */, + 7FE57EE1F9AC9FB1A57DD225C1C32DCF /* UIView+WebCacheOperation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; ADB1941945CE373B04A6A53850587F86 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2909,31 +3400,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B27EA19F2C9A289292829A7550E827DD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 879649B66C867C3D2A22936AB6A08116 /* Tabman-umbrella.h in Headers */, - F6D7D582D55EC81F743ADB337206148E /* Tabman.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B5BDF337E46FD0C61857DC8077E382DE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4EA36D45A662D6D02FA359817F556AA3 /* Pods-Freetime-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D7698AB6CCE15832FC977073C1A2DB60 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - FD0E20FACA1CE5B25CAF7807B30B386F /* SnapKit-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; ECF225B6AAB3E3EBFE5283D6A5DAB75E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -3017,42 +3483,6 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 0023DF362DE7EC48C26408D57F325B3D /* TUSafariActivity */ = { - isa = PBXNativeTarget; - buildConfigurationList = 786B878907F78184477C40D2AAB2C260 /* Build configuration list for PBXNativeTarget "TUSafariActivity" */; - buildPhases = ( - 18C1003BDFA9FBF47934756DE35C0911 /* Sources */, - 0D70A7A99ADFF68B7F4758B16BE3B8F9 /* Frameworks */, - F90E872B9B01620E4F3D83E373E3E301 /* Resources */, - 7AC7ED8BBC85CCA97007C15AF6C2A9F6 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - E277BDD1C08822E7930FD2C25C1A07B9 /* PBXTargetDependency */, - ); - name = TUSafariActivity; - productName = TUSafariActivity; - productReference = 2E8F10381B487B5C8E7C42B25D46EAE3 /* TUSafariActivity.framework */; - productType = "com.apple.product-type.framework"; - }; - 073635E92FDDBFE48DDDA57C2BA819BD /* SDWebImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = A54C968ED13191EFB71BA1F3FDEB74DF /* Build configuration list for PBXNativeTarget "SDWebImage" */; - buildPhases = ( - AF8AEDC058FB9AEFF96C546CBA07DE96 /* Sources */, - ABDDD7026005D1C28D33BAA8E75025A3 /* Frameworks */, - 694AEE10DE920B840A4872B19C280824 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SDWebImage; - productName = SDWebImage; - productReference = 951A9664FBA1AC605169134E64BC4F72 /* SDWebImage.framework */; - productType = "com.apple.product-type.framework"; - }; 087D09C9280518CA4414F49A5401F47A /* AlamofireNetworkActivityIndicator */ = { isa = PBXNativeTarget; buildConfigurationList = 79B7EB6A52A234A1CA27B821EBD8172F /* Build configuration list for PBXNativeTarget "AlamofireNetworkActivityIndicator" */; @@ -3068,39 +3498,24 @@ ); name = AlamofireNetworkActivityIndicator; productName = AlamofireNetworkActivityIndicator; - productReference = 0F4BDD9B7BFE4640C7A36F6BF32679C7 /* AlamofireNetworkActivityIndicator.framework */; + productReference = 73A50BCC31561632C25FDF9C9AB64C96 /* AlamofireNetworkActivityIndicator.framework */; productType = "com.apple.product-type.framework"; }; - 28BDF4E0BB622BB2F83DAD8212EFC8C1 /* Pods-FreetimeTests */ = { + 25387FA5BA01EFE7846214CC628290DD /* MMMarkdown */ = { isa = PBXNativeTarget; - buildConfigurationList = ADC9EC0B9F59D835094FC358298AE0CB /* Build configuration list for PBXNativeTarget "Pods-FreetimeTests" */; + buildConfigurationList = 1105198906A48D0A04A64BCF59556D51 /* Build configuration list for PBXNativeTarget "MMMarkdown" */; buildPhases = ( - BBEC1DFDADF1D43E0D0693D35F7D20F4 /* Sources */, - 5C987D5BD0073D596E826929B5DC7670 /* Frameworks */, - 82DE994A45C5E033C5F71F3F7A0CC152 /* Headers */, + 72A6CB2C88BA4CD4BD6955BD36012D99 /* Sources */, + D427A41E58AE2102540B5E3538660097 /* Frameworks */, + 86E11C847DCD92D7C9F3ED072F7C7C36 /* Headers */, ); buildRules = ( ); dependencies = ( - B7093571D84BEFF0FE083C843E0D7F27 /* PBXTargetDependency */, - EEC2EB3CBD95609034ADE97A8BF8AA5D /* PBXTargetDependency */, - BBD5AB808D14EC419649E82390CF2652 /* PBXTargetDependency */, - DA8AAC4B1ABAA38F243F75651A6910D6 /* PBXTargetDependency */, - 87C420B0159575C194D0E301CCAC309D /* PBXTargetDependency */, - 37AECB5EAF0860FF8AC3B3414AD23880 /* PBXTargetDependency */, - 0E39395B06E747D705DAB7CEF340F473 /* PBXTargetDependency */, - F3DA62BABACB580FAFAE6535E2BB9781 /* PBXTargetDependency */, - 845F735EDBA9F9106E050154798C31EF /* PBXTargetDependency */, - C098D6FF7F850D7FE9800E8666C4EE94 /* PBXTargetDependency */, - 5BF49538D4DC4AAAF209AAFAAC44F3BB /* PBXTargetDependency */, - 517BA5014AEA74B39F427FBEC6EC9E54 /* PBXTargetDependency */, - A3DE2DEDDCEE2367D9815158777138CC /* PBXTargetDependency */, - 0F4E0C52BD9982C3349D608D2F06D282 /* PBXTargetDependency */, - 2CA4BEA7CB6F0311FBF4AB1DBE4CB8A7 /* PBXTargetDependency */, ); - name = "Pods-FreetimeTests"; - productName = "Pods-FreetimeTests"; - productReference = 1949A153766718480CE3B9678D4BF9D6 /* Pods_FreetimeTests.framework */; + name = MMMarkdown; + productName = MMMarkdown; + productReference = 224CED01C9DA1828B6CDD79E778051DA /* MMMarkdown.framework */; productType = "com.apple.product-type.framework"; }; 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */ = { @@ -3120,28 +3535,60 @@ ); name = NYTPhotoViewer; productName = NYTPhotoViewer; - productReference = 37308DBCC30445A0D85AAFA683E74A9C /* NYTPhotoViewer.framework */; + productReference = 2EE0286FDEDE9CC8E219E9479BE09C7C /* NYTPhotoViewer.framework */; productType = "com.apple.product-type.framework"; }; - 479DFC5835018DAF6FB5C60B1E5EA6BB /* Tabman */ = { + 31EE864F9EE2C6DEFCE734CD5EC21E83 /* PureLayout */ = { isa = PBXNativeTarget; - buildConfigurationList = AE5073937C0D05C9B44A22787A3F5DBC /* Build configuration list for PBXNativeTarget "Tabman" */; + buildConfigurationList = 5C470CE1BD9D1D203E64CA22DF9AAEF5 /* Build configuration list for PBXNativeTarget "PureLayout" */; buildPhases = ( - D9B41EC5E278147E7D54C7240EA08EEB /* Sources */, - 5B5B30F2DA94D7719352FD645D82E3B6 /* Frameworks */, - B27EA19F2C9A289292829A7550E827DD /* Headers */, + BE320BF6994DCFE929BD209B8C3AD171 /* Sources */, + 7E4BA8469073D04C7499E5ECC9059819 /* Frameworks */, + 1843CA6E52FFF79A71593FD29EBBEA71 /* Headers */, ); buildRules = ( ); dependencies = ( - 5BDCD89C1C4B536B77C5E7415124ADCA /* PBXTargetDependency */, - B7B583B89E17B608BA98B767DA50109F /* PBXTargetDependency */, ); - name = Tabman; - productName = Tabman; - productReference = 8D559B98E2E18072F1201EBAC286A5A6 /* Tabman.framework */; + name = PureLayout; + productName = PureLayout; + productReference = 7A936FA389ED66DF3E66411931BB2F25 /* PureLayout.framework */; productType = "com.apple.product-type.framework"; }; + 3C1A01781C99518DC8974E992A1F3878 /* SwipeCellKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = 06D49844030E031AE6FECA34FAA105A0 /* Build configuration list for PBXNativeTarget "SwipeCellKit" */; + buildPhases = ( + 84507D60A136C214F9649B5CB8335B3F /* Sources */, + E792DDFC521B08D4E1C70C40B84EE82B /* Frameworks */, + 309B67D97CB8372BE05D374C296A5AB7 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SwipeCellKit; + productName = SwipeCellKit; + productReference = A4DD8CFD8CDE609FEA0AE7543DBC73C6 /* SwipeCellKit.framework */; + productType = "com.apple.product-type.framework"; + }; + 45AE7B562A5B3C0683612BD0EA5F630C /* TUSafariActivity-TUSafariActivity */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3AE2A4549F8579D6B2AB4708F8FE1223 /* Build configuration list for PBXNativeTarget "TUSafariActivity-TUSafariActivity" */; + buildPhases = ( + B6367B9EE58F148C21C35C3F30AE6023 /* Sources */, + E9EE1BCE115D7634C1EAE39808E7FEE2 /* Frameworks */, + 4B895B8CE28307A17CD527B779E6E60F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "TUSafariActivity-TUSafariActivity"; + productName = "TUSafariActivity-TUSafariActivity"; + productReference = D423B8028B36AAE8DB78971DFED43701 /* TUSafariActivity.bundle */; + productType = "com.apple.product-type.bundle"; + }; 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */ = { isa = PBXNativeTarget; buildConfigurationList = 1CB5C1542A9CCC2119D754EA0C7F6514 /* Build configuration list for PBXNativeTarget "Pageboy" */; @@ -3156,7 +3603,7 @@ ); name = Pageboy; productName = Pageboy; - productReference = F8003205C07F0DB378D07938F91F71BD /* Pageboy.framework */; + productReference = A9F6A33895544B8C931039CF4DD6B358 /* Pageboy.framework */; productType = "com.apple.product-type.framework"; }; 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */ = { @@ -3173,7 +3620,7 @@ ); name = HTMLString; productName = HTMLString; - productReference = 22724C8D71FE2C344776E03DA910A2BF /* HTMLString.framework */; + productReference = BF6F69BE51175ECC980FA87528207557 /* HTMLString.framework */; productType = "com.apple.product-type.framework"; }; 4DCCD366622495856554FC72493F6F91 /* NYTPhotoViewer-NYTPhotoViewer */ = { @@ -3190,9 +3637,44 @@ ); name = "NYTPhotoViewer-NYTPhotoViewer"; productName = "NYTPhotoViewer-NYTPhotoViewer"; - productReference = 371E70DCA1D6172DA12F54C0E46603C2 /* NYTPhotoViewer.bundle */; + productReference = 6E3F05CB909D0998193F1D29DCF9E790 /* NYTPhotoViewer.bundle */; productType = "com.apple.product-type.bundle"; }; + 4F7577A0328F39BF7EC7E8E1692FAC1D /* SlackTextViewController */ = { + isa = PBXNativeTarget; + buildConfigurationList = EDAB745DB8D2339CF7A9E349A7F3614A /* Build configuration list for PBXNativeTarget "SlackTextViewController" */; + buildPhases = ( + 1315055D971D4F014ABD54272F6E987A /* Sources */, + BD35975CDF77C72AF1DCB2CF05FF6EC3 /* Frameworks */, + 39B502EA92A73F78B1616D7DB8EA4759 /* Headers */, + 53DADAD2BAE6F3194A24848DC0101A60 /* Copy . Public Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SlackTextViewController; + productName = SlackTextViewController; + productReference = 822AB2931D00D3BD89E5B18BC1662354 /* SlackTextViewController.framework */; + productType = "com.apple.product-type.framework"; + }; + 56AD1AD0164A41F3420AA12199B694A8 /* SDWebImage */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5B732BCD89280FADE8826364D4CCCCE2 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildPhases = ( + 44BC2D95D6DA1FA9D1FC80C9B5C1BD7F /* Sources */, + BC9DEB0BD88AE678D1447010577E8671 /* Frameworks */, + 9B58BA4F50B541F8CD6FC0615BB0F086 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SDWebImage; + productName = SDWebImage; + productReference = 0B20392CDE628D7E2A9CF898153F5B99 /* SDWebImage.framework */; + productType = "com.apple.product-type.framework"; + }; 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */ = { isa = PBXNativeTarget; buildConfigurationList = 5AB2EC8B8D30C8AD7D31B6D1A3FD9887 /* Build configuration list for PBXNativeTarget "Alamofire" */; @@ -3207,73 +3689,80 @@ ); name = Alamofire; productName = Alamofire; - productReference = 54C4087CC487EA0AB6D596DCE366F1EB /* Alamofire.framework */; + productReference = E4F1C6D8878160C0AA7CCC752D5379FC /* Alamofire.framework */; productType = "com.apple.product-type.framework"; }; - 7FF7A362EC994DDEA78314CC617F57A7 /* TUSafariActivity-TUSafariActivity */ = { + 6ACEDEAF6680EEB03B7DB300E7317B92 /* TUSafariActivity */ = { isa = PBXNativeTarget; - buildConfigurationList = 58F20F5BF7FD334F716C9F5C6574953B /* Build configuration list for PBXNativeTarget "TUSafariActivity-TUSafariActivity" */; + buildConfigurationList = 167C9A6F2F0579430444EDC7A701DEFB /* Build configuration list for PBXNativeTarget "TUSafariActivity" */; buildPhases = ( - 169FB1DD45D71C54FB451FF2AFB4D0AC /* Sources */, - B06D4EFAE725AADACE0992F78FD568FD /* Frameworks */, - 3409B233026A469D82C7C3973CC52398 /* Resources */, + 0530A2C7002CA0F83D34A908747BC2E8 /* Sources */, + CDFE7DE8A747795718D696334FF406D9 /* Frameworks */, + 81BD5401796022E5C72A9635887C6837 /* Resources */, + 0B04226208414CE5D4E06AF830624AA4 /* Headers */, ); buildRules = ( ); dependencies = ( + BA6F64D854519DE922DAD54F51F04A91 /* PBXTargetDependency */, ); - name = "TUSafariActivity-TUSafariActivity"; - productName = "TUSafariActivity-TUSafariActivity"; - productReference = BF77258ADA908235729B37EA62284000 /* TUSafariActivity.bundle */; - productType = "com.apple.product-type.bundle"; - }; - AA08AA8840B2F0FAB101D1A403A4C9F9 /* PureLayout */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0770AD2EB8D1962431D8BE48C156576E /* Build configuration list for PBXNativeTarget "PureLayout" */; - buildPhases = ( - C7A2BC13F368A76DCA7D9DE0E58DFDB4 /* Sources */, - 4A403A540DBC63DD709DD91F312D6126 /* Frameworks */, - 19FEEB488CBC8BD4198D16828142A6AC /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = PureLayout; - productName = PureLayout; - productReference = BDFECB68D2F784128C3D4B0138C1C467 /* PureLayout.framework */; + name = TUSafariActivity; + productName = TUSafariActivity; + productReference = 7C25ABCE86687275668AD697B8AE576B /* TUSafariActivity.framework */; productType = "com.apple.product-type.framework"; }; - AB43617B54460CE538A6A36BCD27EC36 /* Pods-Freetime */ = { + 7222DCFF04E5B5969CBEDABAB0365218 /* Tabman */ = { isa = PBXNativeTarget; - buildConfigurationList = 05AF7DEC6BD155D9FA43101A37143660 /* Build configuration list for PBXNativeTarget "Pods-Freetime" */; + buildConfigurationList = 9ED0F855CF2F5C1F3E2FF5B1C0876414 /* Build configuration list for PBXNativeTarget "Tabman" */; buildPhases = ( - 4BE0D1A614891838B4A4313EC989C570 /* Sources */, - F027263582B97747931A998EE7ED7091 /* Frameworks */, - B5BDF337E46FD0C61857DC8077E382DE /* Headers */, + C7ABF668305CC29437FAAE6366766D38 /* Sources */, + FB862AECD598746BAE5AA33D97808386 /* Frameworks */, + 6688475F07000AE31362E57C6E61D9DE /* Headers */, ); buildRules = ( ); dependencies = ( - C0036691DB23E0EE8439A50A394734FD /* PBXTargetDependency */, - 6DBEED055693C5EED16919A8D2E2619E /* PBXTargetDependency */, - 14C08B979A90715271201A82A3909786 /* PBXTargetDependency */, - E7DA12E57E2690B479623CDC480803E9 /* PBXTargetDependency */, - 48499D3B830F7E5F81B5BE59BC830717 /* PBXTargetDependency */, - 091A32B95C004CEE3AA1FDB2957AE5A9 /* PBXTargetDependency */, - 4ECFDE0B2F5D2695E10B68AD71A71486 /* PBXTargetDependency */, - 9226C89C5EB4109C04EFD889E96B0273 /* PBXTargetDependency */, - F97147F51962F24F0A259CC098A0BA40 /* PBXTargetDependency */, - D0FC42E4D8630C270FA817696F96ACC2 /* PBXTargetDependency */, - 19C0070B2C1B88C9F5D8C21D09E09040 /* PBXTargetDependency */, - 8AF6E0264909BBB8B1DB27E9B7FC730D /* PBXTargetDependency */, - B75592902A771C3A5CB65D549D533E16 /* PBXTargetDependency */, - 49A8CBF77542A8DCA51560DB917AABE7 /* PBXTargetDependency */, - 7BF9F6183AD1A3DE02427487CA6218B1 /* PBXTargetDependency */, + BF7C5821753D81EE5499B9A73DEFC1EA /* PBXTargetDependency */, + 503BC19C35F0B1D181FADF536A65B45D /* PBXTargetDependency */, + ); + name = Tabman; + productName = Tabman; + productReference = 88E5FEE85F381550903DDE8E64D49E4C /* Tabman.framework */; + productType = "com.apple.product-type.framework"; + }; + 753E60B12469B243F88702A0D4348B46 /* Pods-Freetime */ = { + isa = PBXNativeTarget; + buildConfigurationList = B58434E10A1662D9E47CD6EA03DA3B4C /* Build configuration list for PBXNativeTarget "Pods-Freetime" */; + buildPhases = ( + 846A84D1E71950E91E9A2E68B1A18D29 /* Sources */, + 332DEB08AE17E0F49C1E717C0901A46B /* Frameworks */, + 050FE4EC7FD373C0AA317C4915289411 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 67861507F1ACD6070C68905212FC83F4 /* PBXTargetDependency */, + FC2C3C3EC536585A5F548CA897C19266 /* PBXTargetDependency */, + E68536AB2DBAA442300B45E6D6089F17 /* PBXTargetDependency */, + 547A492348356F2226085806E7A6776C /* PBXTargetDependency */, + 082D9B7EA54E6E963BDD2D21B938DD3D /* PBXTargetDependency */, + EC514B5B992393EA3207926ADFEE7F79 /* PBXTargetDependency */, + CFB2E09D3C7744554C6243AA50EBFAC2 /* PBXTargetDependency */, + 03B5B6B54A8CE74183F268624D4C1132 /* PBXTargetDependency */, + A35ECB93E33F91121D59B3ED7220F6AD /* PBXTargetDependency */, + BE97F0DDF5422E32104C2D65713237D9 /* PBXTargetDependency */, + E5FAF9B61FE53192E4A4E5C2F92378D7 /* PBXTargetDependency */, + C1B0295AC51CD8B20D96725115215A07 /* PBXTargetDependency */, + 29E7FCC1893B86BCF7FE2F9E148B4413 /* PBXTargetDependency */, + F5F1957533E4767977D8F843F8B17A82 /* PBXTargetDependency */, + BF0CAF92E2CF5FCC0EBC50E1E2E1CCE2 /* PBXTargetDependency */, + 663E4E49B4A8BE3855A7C87DB6C29BC4 /* PBXTargetDependency */, + B7D235669672F8B7F579BA2F005DE0FB /* PBXTargetDependency */, + 2703CACF477FE91F35C198071E086B0A /* PBXTargetDependency */, ); name = "Pods-Freetime"; productName = "Pods-Freetime"; - productReference = 82ACC5D0383D176F35331F547EC6D7BD /* Pods_Freetime.framework */; + productReference = FD745A996FD4D28E5756D19CBA8288BE /* Pods_Freetime.framework */; productType = "com.apple.product-type.framework"; }; ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */ = { @@ -3290,7 +3779,7 @@ ); name = IGListKit; productName = IGListKit; - productReference = 61D5B30FF6F995F58D501CD77B1F44E2 /* IGListKit.framework */; + productReference = 6158CDE5DAC64DCF73974FDB1C444396 /* IGListKit.framework */; productType = "com.apple.product-type.framework"; }; B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */ = { @@ -3307,7 +3796,7 @@ ); name = FLAnimatedImage; productName = FLAnimatedImage; - productReference = 2AC415435E1AB922E6F6C96A3D6D9552 /* FLAnimatedImage.framework */; + productReference = AE4C52EC953D9D4A8011A433780E36C0 /* FLAnimatedImage.framework */; productType = "com.apple.product-type.framework"; }; C377DF21B436B67266B44EA4707B8390 /* JDStatusBarNotification */ = { @@ -3324,7 +3813,59 @@ ); name = JDStatusBarNotification; productName = JDStatusBarNotification; - productReference = 70640AC0C1B2D5AE37C63AB4EBFCEA92 /* JDStatusBarNotification.framework */; + productReference = 83630246949CEA4BD463CF775D6321F0 /* JDStatusBarNotification.framework */; + productType = "com.apple.product-type.framework"; + }; + C5DC2877D3205AAC9162AE605E12CFD0 /* Pods-FreetimeTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2AD2A36E1CDBD8774B1FA5662ED47C63 /* Build configuration list for PBXNativeTarget "Pods-FreetimeTests" */; + buildPhases = ( + F0C22E9CE344B2B98990400AE413D1B4 /* Sources */, + 06E5465FAAABF60A06177C94493A25E2 /* Frameworks */, + 159743D1E9B2B6C12D18692EFE18B01F /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 4B4B9DDAA95B6E68491583D5096BFA71 /* PBXTargetDependency */, + C0D1F5F98B2C51887F87A01686C30203 /* PBXTargetDependency */, + EA41729C09E7CBFFA1137A12BDBE34FB /* PBXTargetDependency */, + 85C642F2A99B817E906CB96406A728D4 /* PBXTargetDependency */, + 789B209636C062923C983755843CC3C5 /* PBXTargetDependency */, + 52A71542134160BBA6FD881F79948E6D /* PBXTargetDependency */, + 71F1C856C757F8B8F4A5EF7FF4708A09 /* PBXTargetDependency */, + 5F34F01F6A2772A49DA86419AED6DD48 /* PBXTargetDependency */, + B5E9691C1324FCD2878190F5E8CF2DDA /* PBXTargetDependency */, + B5CF07BF174C685E52505EB05362D746 /* PBXTargetDependency */, + A8B2B82FFC16C36E7D0AE72B80290407 /* PBXTargetDependency */, + A076DCA65F103595E885FAF551E7CA7F /* PBXTargetDependency */, + E6460F5D01C1F4CE4727F90B332DB3E6 /* PBXTargetDependency */, + 107F4DB7C54587476F8E02FAECBA75E7 /* PBXTargetDependency */, + 033749BC48CF07FEB462A42EBF851143 /* PBXTargetDependency */, + 2D529482AF8C5B08A6603C3769C179DF /* PBXTargetDependency */, + AA3C7E37D19670EF78301316E61E9ED1 /* PBXTargetDependency */, + 6478F51F7E879CB894EDBD28FC935786 /* PBXTargetDependency */, + ); + name = "Pods-FreetimeTests"; + productName = "Pods-FreetimeTests"; + productReference = C9746B069593476A961B0E3E5C101DDF /* Pods_FreetimeTests.framework */; + productType = "com.apple.product-type.framework"; + }; + CCE618C3977F9DC5DA78211D580D9FB3 /* SnapKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = 597EDBBDB64DE94766D1E4CD847E2781 /* Build configuration list for PBXNativeTarget "SnapKit" */; + buildPhases = ( + F8F4ADECFE48BC555F6D6CE9B8E18E84 /* Sources */, + 45BAA4153F04A721B13899F9ABE26405 /* Frameworks */, + 111EF04BBB682FBCA7F6D76803A7DCB2 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SnapKit; + productName = SnapKit; + productReference = 500E5DF65F2CFF2FEEEF8D52A3C0682A /* SnapKit.framework */; productType = "com.apple.product-type.framework"; }; D2BB6B84BA7576195BC3964484476114 /* Apollo */ = { @@ -3342,7 +3883,7 @@ ); name = Apollo; productName = Apollo; - productReference = 52E88F0A1DCDAEF7309F982A87FE9DC9 /* Apollo.framework */; + productReference = B92FDC99CF9D2D3AB3197518CE5AD423 /* Apollo.framework */; productType = "com.apple.product-type.framework"; }; FD3618ED40B9ACFFBBE35CA6D582EA89 /* FLEX */ = { @@ -3359,24 +3900,7 @@ ); name = FLEX; productName = FLEX; - productReference = 64B5A37D0E078F287ACB4002D20C4C7D /* FLEX.framework */; - productType = "com.apple.product-type.framework"; - }; - FD7D2BB4C0EE06161E29675AA10FF5B9 /* SnapKit */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9B44FAC0DB66DB8B7D20E15EC7DEC7E9 /* Build configuration list for PBXNativeTarget "SnapKit" */; - buildPhases = ( - 15BD40DAE40FBBB18365DE0D5A6CF55F /* Sources */, - 1FAD1D2A5A58C0F6409A74CB4BFD8AA4 /* Frameworks */, - D7698AB6CCE15832FC977073C1A2DB60 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SnapKit; - productName = SnapKit; - productReference = 0F877D71D3D57B9F7334013BD344ABFD /* SnapKit.framework */; + productReference = 13F263270E6D0A4E32080B5BAC1EDBA0 /* FLEX.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -3396,7 +3920,7 @@ en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = A8DCD5EA94B70895CDBE377CE3D00E35 /* Products */; + productRefGroup = 4FEEE92017981063D87F0D25862BD3A9 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -3408,55 +3932,66 @@ 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */, ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */, C377DF21B436B67266B44EA4707B8390 /* JDStatusBarNotification */, + 25387FA5BA01EFE7846214CC628290DD /* MMMarkdown */, 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */, 4DCCD366622495856554FC72493F6F91 /* NYTPhotoViewer-NYTPhotoViewer */, 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */, - AB43617B54460CE538A6A36BCD27EC36 /* Pods-Freetime */, - 28BDF4E0BB622BB2F83DAD8212EFC8C1 /* Pods-FreetimeTests */, - AA08AA8840B2F0FAB101D1A403A4C9F9 /* PureLayout */, - 073635E92FDDBFE48DDDA57C2BA819BD /* SDWebImage */, - FD7D2BB4C0EE06161E29675AA10FF5B9 /* SnapKit */, - 479DFC5835018DAF6FB5C60B1E5EA6BB /* Tabman */, - 0023DF362DE7EC48C26408D57F325B3D /* TUSafariActivity */, - 7FF7A362EC994DDEA78314CC617F57A7 /* TUSafariActivity-TUSafariActivity */, + 753E60B12469B243F88702A0D4348B46 /* Pods-Freetime */, + C5DC2877D3205AAC9162AE605E12CFD0 /* Pods-FreetimeTests */, + 31EE864F9EE2C6DEFCE734CD5EC21E83 /* PureLayout */, + 56AD1AD0164A41F3420AA12199B694A8 /* SDWebImage */, + 4F7577A0328F39BF7EC7E8E1692FAC1D /* SlackTextViewController */, + CCE618C3977F9DC5DA78211D580D9FB3 /* SnapKit */, + 3C1A01781C99518DC8974E992A1F3878 /* SwipeCellKit */, + 7222DCFF04E5B5969CBEDABAB0365218 /* Tabman */, + 6ACEDEAF6680EEB03B7DB300E7317B92 /* TUSafariActivity */, + 45AE7B562A5B3C0683612BD0EA5F630C /* TUSafariActivity-TUSafariActivity */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 3409B233026A469D82C7C3973CC52398 /* Resources */ = { + 4B895B8CE28307A17CD527B779E6E60F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - A634FA2D5B0219224B95333DB7DC668E /* cs.lproj in Resources */, - 5D5F6382304D4F2D322730FFB385C374 /* de.lproj in Resources */, - 4EE3A02B7B4D62BF8A4AC23C35152742 /* en.lproj in Resources */, - 7D645AF3EFD0C88A91F5FF61022A8998 /* es.lproj in Resources */, - EA6EAA8D4F78090CBE6C322A0FAA9DF9 /* eu.lproj in Resources */, - 377A991541B6D1E0D21EF39FA0625DFF /* fi.lproj in Resources */, - 22B87AE28176EA990D9697B7692C5331 /* fr.lproj in Resources */, - F0D5277FC4465196484A6FB5F6735B27 /* it.lproj in Resources */, - E4EBC0283B77FEF4E5F574194F4EA9C5 /* ja.lproj in Resources */, - FC5C19D5960691F91BCC683D9A94A622 /* ko.lproj in Resources */, - 4D6BE896C1B875BA28A7471AF20A2846 /* nl.lproj in Resources */, - F74CF10E5A7215C12FC4AE9A8D6CD7DC /* no.lproj in Resources */, - 9B837646BD333D70EA3918C5F4C883CF /* pl.lproj in Resources */, - 1248670DCCAF0764CE0CD7723233D719 /* pt.lproj in Resources */, - F7926BC4062CB46A049C3E9244571BF8 /* ru.lproj in Resources */, - 7CB203491EA96E2A8DA68E40AF42BF97 /* safari-7.png in Resources */, - 703595F137C7507BEE990F93406F803E /* safari-7@2x.png in Resources */, - 300AAF84B21E4010E49AB22936F840B8 /* safari-7@3x.png in Resources */, - 93FEDB5C571F90B6D8E2C8255D3E2835 /* safari-7~iPad.png in Resources */, - 80F8FE2DC54F14BD6F8C4D719F5648C9 /* safari-7~iPad@2x.png in Resources */, - F5400E03E8261742FD43460CD9DAC11F /* safari.png in Resources */, - D4E0E813AB4EA57B06E73DE34FBCC8CE /* safari@2x.png in Resources */, - 4EECC81A10F6A8E364CEAB2913C3186E /* safari@3x.png in Resources */, - 9C891CD30BE33D6FD1D9BD1730C5ECB7 /* safari~iPad.png in Resources */, - EF69FE74EF61EFF7122F1C0B518B00CE /* safari~iPad@2x.png in Resources */, - A2ADBC6D67114BCC7BD0AF3717F22483 /* sk.lproj in Resources */, - B7BE4A5F5F58D2F91F127AC3E6534A9E /* sv.lproj in Resources */, - 1936B93AF93CBB46EB0B584393EF01CC /* vi.lproj in Resources */, - 80B51F212A491DD1E00182FA20B9DDEC /* zh_CN.lproj in Resources */, + 68E8117167F105F3C0930A27539BE741 /* cs.lproj in Resources */, + 4E8A51E78A476EEE25CF38165E937A53 /* de.lproj in Resources */, + 0E7791CC9E60640894D8A0F041758993 /* en.lproj in Resources */, + 3EF8E1DA846882E308A15D7CB42C796A /* es.lproj in Resources */, + 4FE5F6B7A4EC2C634C567D43625DD6B0 /* eu.lproj in Resources */, + 8703DADA3393E0403B00313CCC70C354 /* fi.lproj in Resources */, + C76D9D329012F739D52D9B661CED23B9 /* fr.lproj in Resources */, + E449731529779CAD26B88335353079E8 /* it.lproj in Resources */, + 6FF32C88EB0FF7BAED0066B97B734B90 /* ja.lproj in Resources */, + 8D26FED0DDE340945E30DD269E69FDFD /* ko.lproj in Resources */, + 96F11ABF85B829DFA430A10F7CA851E4 /* nl.lproj in Resources */, + 5361823B03C831134697C3C065AEFF6D /* no.lproj in Resources */, + 89E52916011FD3B4F314B3491DAB86C1 /* pl.lproj in Resources */, + 3BF76A5F8A5F9E93001F2EECD6DDE259 /* pt.lproj in Resources */, + DFD210889FC6826509896D66DB6BEA39 /* ru.lproj in Resources */, + 2C8D8EA977F5EAA4197626A7F5C9D29A /* safari-7.png in Resources */, + AF3E5C7DAF80D37F8BD10B8971B4E295 /* safari-7@2x.png in Resources */, + 16D69D05AABE1C6E560B6C0D3BF2A871 /* safari-7@3x.png in Resources */, + 3769BCDB72415C788DEADFE7C49799A7 /* safari-7~iPad.png in Resources */, + AE3DBEE63603F508284115C5835DCCAD /* safari-7~iPad@2x.png in Resources */, + AC720F254910E041E8CC272210A8568E /* safari.png in Resources */, + 74136E64706CC03299F491810D055FBC /* safari@2x.png in Resources */, + 7985E8745473044FC35AE4899EC37077 /* safari@3x.png in Resources */, + 8EE06B81A4115AF65CD4FC127F4A1A92 /* safari~iPad.png in Resources */, + 8B4D91264D58F2FB83446629E426DE5F /* safari~iPad@2x.png in Resources */, + 747FFCCAAEBC0AA41C633B986D8EDB04 /* sk.lproj in Resources */, + F8EF16A2E6440A56E9D8B10EC30893E4 /* sv.lproj in Resources */, + C6B5A7D276CC1AFBBEF3B1D032EF9A5E /* vi.lproj in Resources */, + CCBB04462BB76FCCAF129B83A98EA306 /* zh_CN.lproj in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 81BD5401796022E5C72A9635887C6837 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0E3C92BC33B0055468E59EB936CFAA7A /* TUSafariActivity.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3476,14 +4011,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F90E872B9B01620E4F3D83E373E3E301 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4617FE34F72250F200088DB23695ACA9 /* TUSafariActivity.bundle in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; FF643314EB9DA4FB742F00536ABE8359 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -3500,60 +4027,30 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 15BD40DAE40FBBB18365DE0D5A6CF55F /* Sources */ = { + 0530A2C7002CA0F83D34A908747BC2E8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EC0D26AE7C8835FA59361535E136D59C /* Constraint.swift in Sources */, - 529114BB0D366B0CD6D2D04FE8CF50CD /* ConstraintAttributes.swift in Sources */, - C68AB42BF999EFA485FD5BAC90A4D5D1 /* ConstraintConfig.swift in Sources */, - D10AB8B535BC136D9AEFC8679212D958 /* ConstraintConstantTarget.swift in Sources */, - 9ABF0998F4842195C8B01267F8460844 /* ConstraintDescription.swift in Sources */, - CE45753C0ABD6B35DDA5305FAAFF37DF /* ConstraintDSL.swift in Sources */, - 1C613189A6C530EE1A978EAEC2BB6C84 /* ConstraintInsets.swift in Sources */, - 14705E3101F9683384CCF04AB46548EE /* ConstraintInsetTarget.swift in Sources */, - 1FA73989CC60BA8173D926C15D47C49E /* ConstraintItem.swift in Sources */, - 1971759C4890BB516BF38FC7616A3459 /* ConstraintLayoutGuide+Extensions.swift in Sources */, - 4104A0CEE140FBB1450B81D99D8FA060 /* ConstraintLayoutGuide.swift in Sources */, - 5613F53A80DD681F8AE716F5E95732C8 /* ConstraintLayoutGuideDSL.swift in Sources */, - 6938DE9C7F502C8B594EFA3BB7DD4AE2 /* ConstraintLayoutSupport.swift in Sources */, - 39157BBF444BB3B655D7A7FF2E518B5D /* ConstraintLayoutSupportDSL.swift in Sources */, - 60AF2CC179B2BDDEBDD30718CB7726B0 /* ConstraintMaker.swift in Sources */, - BA2894AD187D63986294F10993040961 /* ConstraintMakerEditable.swift in Sources */, - 2506F8FF7BC14986257D3A1C79A37022 /* ConstraintMakerExtendable.swift in Sources */, - AEA9F2951E9954526ABE0BF65444741A /* ConstraintMakerFinalizable.swift in Sources */, - 039924CA119B6AE75F9D71687FB1B804 /* ConstraintMakerPriortizable.swift in Sources */, - 79304CDECB7A33A552A70254951D7F57 /* ConstraintMakerRelatable.swift in Sources */, - 45BD290B4D58DE945FA300DB25DDBD40 /* ConstraintMultiplierTarget.swift in Sources */, - 298CED62A581DA3D5F9C3E8C7F3261DD /* ConstraintOffsetTarget.swift in Sources */, - 531F06198D469C43F0C4FB4FE634E2EE /* ConstraintPriority.swift in Sources */, - 7002102CCF3573A9809A96F032F24412 /* ConstraintPriorityTarget.swift in Sources */, - 6A3F96BF3BB7D26D796D1D55DB877B83 /* ConstraintRelatableTarget.swift in Sources */, - 0BAEA7638562933FE0FF13FCDBFA2AF1 /* ConstraintRelation.swift in Sources */, - E65B3D9B6867DEC25799120C42489BC6 /* ConstraintView+Extensions.swift in Sources */, - 7DA3CADE1385390A161D90CB9FDCB06C /* ConstraintView.swift in Sources */, - 8FF3B4E13BF0EAF0C35281BC0BAFD23D /* ConstraintViewDSL.swift in Sources */, - 83343616F41E8C650EC8A5168CD7E16B /* Debugging.swift in Sources */, - 28CCBCA00AF49A23D45AFCF8D6C0615B /* LayoutConstraint.swift in Sources */, - 80BDE2C949B93A4F23815CFDEF9B63F2 /* LayoutConstraintItem.swift in Sources */, - 1EDE9AD617E4B28EF30CEE2688A2BE15 /* SnapKit-dummy.m in Sources */, - 6B594F3E56F4E78D7F45DE9D1E09BA54 /* UILayoutSupport+Extensions.swift in Sources */, + 63C5ED8C53FFD5952220CF0EF6A90B54 /* TUSafariActivity-dummy.m in Sources */, + 6E564599386B5ADFABBE0D8AD5EED728 /* TUSafariActivity.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 169FB1DD45D71C54FB451FF2AFB4D0AC /* Sources */ = { + 1315055D971D4F014ABD54272F6E987A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 18C1003BDFA9FBF47934756DE35C0911 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3B286ED34BD6D1823E28B2C8338D8ADF /* TUSafariActivity-dummy.m in Sources */, - 6AC5908A2062189E21B4BA4F191A60D7 /* TUSafariActivity.m in Sources */, + AAEF75D5EC8B05A213946692BAAFB55F /* SlackTextViewController-dummy.m in Sources */, + CECDB1BABE7AB80FC67F20A1174FDEF4 /* SLKInputAccessoryView.m in Sources */, + 18C61690F9CC640240488034D5E15B43 /* SLKTextInput+Implementation.m in Sources */, + CFB039251B4945A044EE7C8901DB1866 /* SLKTextInputbar.m in Sources */, + 5C5DC88466B3CD9C1B072E77885F4C2F /* SLKTextView+SLKAdditions.m in Sources */, + 21A5A1DCE8975FE2D9ED9348ECF919FB /* SLKTextView.m in Sources */, + 43D9F07A4415B0A9A03306DAF45B2EB0 /* SLKTextViewController.m in Sources */, + A8E9B4EA965C177DC272E9884F9CCAC8 /* SLKTypingIndicatorView.m in Sources */, + AB2E2A413366F0D48BFBAEC9AFEB0CBE /* UIResponder+SLKAdditions.m in Sources */, + 88A6066F29F08CD1F74A203C0DFC3054 /* UIScrollView+SLKAdditions.m in Sources */, + FAAA3F946F7D04B3C344C149F617A119 /* UIView+SLKAdditions.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3582,11 +4079,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4BE0D1A614891838B4A4313EC989C570 /* Sources */ = { + 44BC2D95D6DA1FA9D1FC80C9B5C1BD7F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A8EB1D494FD8A1B62020BA3E05AC5718 /* Pods-Freetime-dummy.m in Sources */, + BDF3A1BFD37AE3D1D02CA2BCAA622595 /* NSData+ImageContentType.m in Sources */, + 4365BB3943212CDE31553BD06A0E84CB /* NSImage+WebCache.m in Sources */, + BC998AFC0E5F43FA797E234F398A28E7 /* SDImageCache.m in Sources */, + DFDC3C5BAAA3A86C120C70D23DE8B494 /* SDImageCacheConfig.m in Sources */, + 6CA8BE16EE8D4491439BA4F57083D2A9 /* SDWebImage-dummy.m in Sources */, + 742AED002D4323C64793F56F9C725D56 /* SDWebImageCompat.m in Sources */, + A7A2D50793802A632430EE3F90321D6C /* SDWebImageDecoder.m in Sources */, + 94FF5F5FED942E4BE2C25485B46553A3 /* SDWebImageDownloader.m in Sources */, + FA5EE635D0CFC3D4738C54AFE91D060A /* SDWebImageDownloaderOperation.m in Sources */, + FFF7D18336BE34CD2EB2527F05085AAF /* SDWebImageManager.m in Sources */, + 13581AE99B15C90B48B79E8FD7EA421A /* SDWebImagePrefetcher.m in Sources */, + C4E396458974DC5B49EE0775693D3BDA /* UIButton+WebCache.m in Sources */, + 6E1BF81AC0E3E83F4BD86800FF14C36D /* UIImage+GIF.m in Sources */, + 5E129C5B849A451B845A56B07335289D /* UIImage+MultiFormat.m in Sources */, + 75A5469C1B293FFC7D7A0328FF54A057 /* UIImageView+HighlightedWebCache.m in Sources */, + 399438677DFD2C80FB69462C8ECC4363 /* UIImageView+WebCache.m in Sources */, + C249FAC1A302B0BC7B0A814794632172 /* UIView+WebCache.m in Sources */, + C394AC2FF2A3749C770D43941A14AD10 /* UIView+WebCacheOperation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3619,6 +4133,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 72A6CB2C88BA4CD4BD6955BD36012D99 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B8557EEA47EDF2983037CA6F23CFC14F /* MMDocument.m in Sources */, + D86B868340F3C8282FE68D4D00D8532B /* MMElement.m in Sources */, + 31D5F5B5FFA9A7A45A854661DAA8A2F3 /* MMGenerator.m in Sources */, + 2A5FB148DAB00CAECD0EB220F836DF09 /* MMHTMLParser.m in Sources */, + D9946A126695EAED17FEC354AE555898 /* MMMarkdown-dummy.m in Sources */, + 1C4F5F7E3FCB5375AECF30524FB0572C /* MMMarkdown.m in Sources */, + B7A6DA953DE04FA364EA7ED3AE19F10E /* MMParser.m in Sources */, + 650E5E6FA80C9D2DC55F9DA0B6C4CF0C /* MMScanner.m in Sources */, + 2967D3CABD9805E1DA7397843BB325DE /* MMSpanParser.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7C08821E807D81FA398420A1FAAF68B3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3637,6 +4167,41 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 84507D60A136C214F9649B5CB8335B3F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5BEC6A8B643740ADE86392698D8856B9 /* Extensions.swift in Sources */, + 17F8D47DBFDFC13718B9DA0AA662A674 /* Swipeable.swift in Sources */, + 2F74243ABC4FA927506E0658BC46FAF2 /* SwipeAction.swift in Sources */, + D2BC8636B60C9F25B6DD07DD5A270620 /* SwipeActionButton.swift in Sources */, + 7D94815CEACF47FB67BFB19FC955F39B /* SwipeActionsView.swift in Sources */, + 547C4C750541F1F40D12C07092A87689 /* SwipeActionTransitioning.swift in Sources */, + 7FE1CB95BB194B2F931D50572400F21A /* SwipeAnimator.swift in Sources */, + 4B1D6A1317B1B3D2D6A188A567BDD1AC /* SwipeCellKit-dummy.m in Sources */, + 8AE3E8E241C4959F7B93E30E6F956E02 /* SwipeCollectionViewCell+Display.swift in Sources */, + A9D33D119B98966B0B370E9C4B774090 /* SwipeCollectionViewCell.swift in Sources */, + 3200BA7205C711927D746239F0FF294D /* SwipeCollectionViewCellDelegate.swift in Sources */, + EBBBF6429766146C2A44A6608DD4E24B /* SwipeExpanding.swift in Sources */, + DAB4F9B3DF1A279BF7FF7DB2F77201D9 /* SwipeExpansionStyle.swift in Sources */, + 507378CAB9B28F32C62ACC70EF9BF3FC /* SwipeFeedback.swift in Sources */, + E1674AF09396BC05AAA9A333CC8EDFEC /* SwipeTableOptions.swift in Sources */, + 8F3AC5C8EEB7C8CAC52A663EC4F50C23 /* SwipeTableViewCell+Accessibility.swift in Sources */, + 371E36E72830C37605D0BDC07CC8AC6D /* SwipeTableViewCell+Display.swift in Sources */, + 5F55BC992E00BD8210D767F868B61A18 /* SwipeTableViewCell.swift in Sources */, + DC6CEA806EAD71E10889A5F384D92454 /* SwipeTableViewCellDelegate.swift in Sources */, + 35807DA02C4E9562EAC371455D95963C /* SwipeTransitionLayout.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 846A84D1E71950E91E9A2E68B1A18D29 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 72849429150A278BF8143655EF19299F /* Pods-Freetime-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A09EBBB3B8726BD422137D997FA90EFC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3772,31 +4337,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AF8AEDC058FB9AEFF96C546CBA07DE96 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2BC840AA1C82B2EC916E3B3C1E960BE3 /* NSData+ImageContentType.m in Sources */, - 98801B1482776AEDA6F32CE9CAEA504A /* NSImage+WebCache.m in Sources */, - 94256F80CFD781B3999607A86A35FEE6 /* SDImageCache.m in Sources */, - DC509CB36058B28A13F93CFF1B8DFD74 /* SDImageCacheConfig.m in Sources */, - 8C25EDABE6C584A764AE64B9971A8C6B /* SDWebImage-dummy.m in Sources */, - 4DBF1630BDD0CC3B7CE8A370F0C433E2 /* SDWebImageCompat.m in Sources */, - 2B6E76F9D4ACEC94F1DCD974E9ABA981 /* SDWebImageDecoder.m in Sources */, - 0923E242B01346339813EE0DFB46E7AD /* SDWebImageDownloader.m in Sources */, - CFF0870D037A2C30928E3F20697FEB0B /* SDWebImageDownloaderOperation.m in Sources */, - D71E864F10432F7AB958CDE4EF330093 /* SDWebImageManager.m in Sources */, - 92A3E7BF1B2F3FC576382900C9DFA8CB /* SDWebImagePrefetcher.m in Sources */, - 18876D3FA7FF0EB402AB61E3E908B091 /* UIButton+WebCache.m in Sources */, - EC8EC535FBCD115480C7D7E364B34E77 /* UIImage+GIF.m in Sources */, - 685C43342DDBC668EA98F99C8C479196 /* UIImage+MultiFormat.m in Sources */, - DEF48B42D5EE4C806089F9090B6664ED /* UIImageView+HighlightedWebCache.m in Sources */, - 929AEE4B3F440E3A5EC440B5346B0225 /* UIImageView+WebCache.m in Sources */, - 70FAB2256BC1A9F99AFB675855F78D3E /* UIView+WebCache.m in Sources */, - 931A4E06B7F01A2A8B3993FB535DD416 /* UIView+WebCacheOperation.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; B0B1B8DA1B6BB777127F80CFF01D983B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3809,73 +4349,72 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BBEC1DFDADF1D43E0D0693D35F7D20F4 /* Sources */ = { + B6367B9EE58F148C21C35C3F30AE6023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 108BF802962622C84C188637889217D7 /* Pods-FreetimeTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C7A2BC13F368A76DCA7D9DE0E58DFDB4 /* Sources */ = { + BE320BF6994DCFE929BD209B8C3AD171 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 23FCE36B0A77A886A91C340C85474DAE /* ALView+PureLayout.m in Sources */, - 25E4B57BAA728F792CE6FAF388BE0AAB /* NSArray+PureLayout.m in Sources */, - AB6E3BD8EFD8F775AF6FF25BF66E43B6 /* NSLayoutConstraint+PureLayout.m in Sources */, - FA02995273AE47966FB43E5B8B9BC151 /* PureLayout-dummy.m in Sources */, + 47F34D51F1D4522FB60A61BAC4798550 /* ALView+PureLayout.m in Sources */, + 9993A4E68752F9D1EAF53B7ED86491F3 /* NSArray+PureLayout.m in Sources */, + 97978EFCA76726FBDF538DF7035F3416 /* NSLayoutConstraint+PureLayout.m in Sources */, + E5DBB7800109A7FC8922EE986B196EFD /* PureLayout-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D9B41EC5E278147E7D54C7240EA08EEB /* Sources */ = { + C7ABF668305CC29437FAAE6366766D38 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 16F31531C6FCC3339229739AAFC3B8B7 /* ChevronView.swift in Sources */, - 07AF0E6E7D3BB3A0851CC8A3619F0094 /* CircularView.swift in Sources */, - 2C5302D260DCD22F621EF1FA04ECCE56 /* ColorUtils.swift in Sources */, - 8AA48673C0CAA050ACC1EB736409ADA1 /* ContentViewScrollView.swift in Sources */, - D327764582ADF5D9DA854AFE29A52ED0 /* ImageUtils.swift in Sources */, - 45577BE274D2AE8FB333228699A97CB6 /* PositionalUtils.swift in Sources */, - 9F093D3A4832A66AFF32B704720ED437 /* Separator.swift in Sources */, - F28DC2F867CF987158262E6224DBAC59 /* Tabman-dummy.m in Sources */, - 3AF17067CB3FD936B7EE33C48E37B5AB /* TabmanBar+Appearance.swift in Sources */, - E80A0A506EAD71F2383C460C8D59AC94 /* TabmanBar+BackgroundView.swift in Sources */, - 41429B016F66BE1F39333FCF7DBD5E5C /* TabmanBar+Config.swift in Sources */, - 95291CFAD0599DCE5F5918FEEF40A7FA /* TabmanBar+Construction.swift in Sources */, - 4F135E2B8F1666EB7468EB7176F96ABA /* TabmanBar+Indicator.swift in Sources */, - EB91C4AF5A7AB54BA31223B027D4F804 /* TabmanBar+Insets.swift in Sources */, - 1101639DFE619D3424401D32E98DFB92 /* TabmanBar+Item.swift in Sources */, - 315EC92125F6D4046E12F682C644C10F /* TabmanBar+Layout.swift in Sources */, - E41CDDBD5ABA2B8A3A5CDD24C9DB9925 /* TabmanBar+Protocols.swift in Sources */, - 591967255F9BA6816AB6CA14C74CFD7F /* TabmanBar.swift in Sources */, - B49D047FA01287F1877BF8F523DDEE55 /* TabmanBarTransitionStore.swift in Sources */, - 0D9C120FB4E07BF9B6CDC74FA6153F33 /* TabmanBlockIndicator.swift in Sources */, - E8CFEB09758F26F5BA849D45656ADCAE /* TabmanBlockTabBar.swift in Sources */, - FE1CB2E1D0C4E5F19AA04DCB69D67BA9 /* TabmanButtonBar.swift in Sources */, - 4EA761BA012483A0E992280836D8E596 /* TabmanChevronIndicator.swift in Sources */, - 46298B5B83F2A6C1FDF1F87DDA0CEA6A /* TabmanClearIndicator.swift in Sources */, - 69D043CA17A24B9C251A7D965E047500 /* TabmanDotIndicator.swift in Sources */, - 5EBDE313A0F611135AE35C6D44BA7BC9 /* TabmanFixedButtonBar.swift in Sources */, - 463BF3AA365B047DFFDF75B4A7D2282A /* TabmanIndicator.swift in Sources */, - 7B71366D6B7F1F80D2766D8BA1EF3B02 /* TabmanIndicatorTransition.swift in Sources */, - D8C61AFD0B077871391BE53A9224036A /* TabmanItemColorCrossfadeTransition.swift in Sources */, - F1E11558ECCDE830398AB5245F8818F6 /* TabmanItemMaskTransition.swift in Sources */, - 28BCF213288A3DC3BC3EA48E2435565B /* TabmanItemTransition.swift in Sources */, - BF96299DFCB58CA06B3B5B2E5BADD4DA /* TabmanLineBar.swift in Sources */, - 658C72E5D3467A0724748915417B92A7 /* TabmanLineIndicator.swift in Sources */, - 7E529BF170582CC651EB96BB16D3E725 /* TabmanScrollingBarIndicatorTransition.swift in Sources */, - 46C6D09C27ADB87CDF02FFA356866A4B /* TabmanScrollingButtonBar.swift in Sources */, - D119004C3AC257F14A9EEF269E0E684A /* TabmanStaticBarIndicatorTransition.swift in Sources */, - 8299A04E4E8B7F7576076AFDD1596986 /* TabmanStaticButtonBar.swift in Sources */, - D8A0351B97A06BC7ADD57145C8E73610 /* TabmanTransition.swift in Sources */, - 778215E12C8273C5F8417AA64709BBFD /* TabmanViewController+Embedding.swift in Sources */, - CAEE8DD1C9939427FAD7A5E139074AFF /* TabmanViewController+Insetting.swift in Sources */, - 4067EEA66D7163B8E836F755857EB688 /* TabmanViewController.swift in Sources */, - E9E26E7492101488F9975A4FF5BFF9EB /* UIScrollView+Interaction.swift in Sources */, - 7736A1C2ACA5C16A51087CED3E4FA2F9 /* UIView+Utils.swift in Sources */, - F5DA014C2F9AA514F964B6F8DEFD4A51 /* ViewUtils.swift in Sources */, + 4A208CB9DB3C1047AD5FB71DA5B2CEC9 /* ChevronView.swift in Sources */, + 8DA6271D71454DDCA2F1BE3B30E0CE52 /* CircularView.swift in Sources */, + DFB44EE132876433615BCA6A91DB8C22 /* ColorUtils.swift in Sources */, + 424A76CDC942D01BECCD24E156A4A944 /* ContentViewScrollView.swift in Sources */, + B58A4B9AB5361A8F86C951B97890D4D4 /* ImageUtils.swift in Sources */, + 7E22789999B4722C9C63DFBD7F33BD5B /* PositionalUtils.swift in Sources */, + B159EC93CE584A1E328420D14B7F85DD /* Separator.swift in Sources */, + FEB6FC91E7A550E3F689DD62F4C4095F /* Tabman-dummy.m in Sources */, + 7E8BCB204983C093711EE4F1A2689919 /* TabmanBar+Appearance.swift in Sources */, + 1B98F3B77CBDBC42FB11C512EA6D949A /* TabmanBar+BackgroundView.swift in Sources */, + 4DA758C164DA509446D15AE5F9D2CF18 /* TabmanBar+Config.swift in Sources */, + BFC97FB6CF780BA20E9D978DEC0A92BF /* TabmanBar+Construction.swift in Sources */, + EF077D04CD354499455470C11F651028 /* TabmanBar+Indicator.swift in Sources */, + 386B731F38FAC2F314A3EC6B2A5F3501 /* TabmanBar+Insets.swift in Sources */, + 485183A8A433843AC9CE7FD0EA93E415 /* TabmanBar+Item.swift in Sources */, + F36880D287BEE7E4A2CD4BFC6B40492A /* TabmanBar+Layout.swift in Sources */, + A218992B867812E75C5B8BE9CBCFC518 /* TabmanBar+Protocols.swift in Sources */, + 9439748649D1F3FBD2803DDF2380A8E1 /* TabmanBar.swift in Sources */, + 9755D17C479454585F6A69A20F6FCD5C /* TabmanBarTransitionStore.swift in Sources */, + 46F93D89A98296A34912D533D11F03F5 /* TabmanBlockIndicator.swift in Sources */, + 43E27B24A2EE8406DCE3B5BC0994D02B /* TabmanBlockTabBar.swift in Sources */, + 8DDCE5CD1C6729746CACE9A7FA3307F4 /* TabmanButtonBar.swift in Sources */, + E83F76297B83B102EAA1050055C6A00D /* TabmanChevronIndicator.swift in Sources */, + D2BA8C91DD8C0604C8F4065E76820197 /* TabmanClearIndicator.swift in Sources */, + 1CDA4C981A9F60E6DF1203221C56771C /* TabmanDotIndicator.swift in Sources */, + 35EBA8F9C20C950BED564F4824300BF2 /* TabmanFixedButtonBar.swift in Sources */, + 2B76D870275B631B3FE208DF99EC5A09 /* TabmanIndicator.swift in Sources */, + 1A1CC87A734F34EB6FC72CAC85470F51 /* TabmanIndicatorTransition.swift in Sources */, + 203EE6616AF512065A60DA107BDD9917 /* TabmanItemColorCrossfadeTransition.swift in Sources */, + E815A5FC28CC6C18276AFD061AAD5CDE /* TabmanItemMaskTransition.swift in Sources */, + 44985C4E5F3A9B5918C192D0863B2E17 /* TabmanItemTransition.swift in Sources */, + D0DA1218B471A09D482DE890CF7443E4 /* TabmanLineBar.swift in Sources */, + 858A87501B2CCF0852B5E25EA02368C0 /* TabmanLineIndicator.swift in Sources */, + 829661EF8308BF3CD709C831B70A43B6 /* TabmanScrollingBarIndicatorTransition.swift in Sources */, + 3D7C4607D12DAE6262A72B7737149C6A /* TabmanScrollingButtonBar.swift in Sources */, + AFB5FC7F954810BDB2255BB318707924 /* TabmanStaticBarIndicatorTransition.swift in Sources */, + 0C9A681024557C6D14C9AA37548574A2 /* TabmanStaticButtonBar.swift in Sources */, + 7E429A917415BB98266FAB4054203BE2 /* TabmanTransition.swift in Sources */, + CD31DF2DBD802A91847050CB3A527B26 /* TabmanViewController+Embedding.swift in Sources */, + 84DEDF92AC1234B596C77B9BA9A7E40B /* TabmanViewController+Insetting.swift in Sources */, + C7D24CCCCE3AF6924F8D30EEECE93CA0 /* TabmanViewController.swift in Sources */, + 33CF7AFDDEA5107B926297FE4ACE92F8 /* UIScrollView+Interaction.swift in Sources */, + D9C6AAF8B0F94B1EB597EBA2CCC5C03C /* UIView+Utils.swift in Sources */, + C64BE8454B5F772911B53CBF1447B310 /* ViewUtils.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3898,6 +4437,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F0C22E9CE344B2B98990400AE413D1B4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7C8F49D13F5EFF016068F2C1D9F0B9F4 /* Pods-FreetimeTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F5C2097C25B23087C6F2EBF9FF7361F4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3920,6 +4467,47 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F8F4ADECFE48BC555F6D6CE9B8E18E84 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 14B7EF4D5FFD7734C00C87D645CF49E4 /* Constraint.swift in Sources */, + E2B6847BBBDF0AE30958BC73A22ECCC4 /* ConstraintAttributes.swift in Sources */, + 144D526E66EEE88867604FAF441D0370 /* ConstraintConfig.swift in Sources */, + 4D837DB2FF29F1B6485CA015305A1DD1 /* ConstraintConstantTarget.swift in Sources */, + 796711119EF0222781FAC99280562ADD /* ConstraintDescription.swift in Sources */, + AE152C5C197EA2DC7E87C9302A94AF8C /* ConstraintDSL.swift in Sources */, + 2E4061195551ED5FB4E776E3B330EF5E /* ConstraintInsets.swift in Sources */, + DAA2E4F253C2762715835CC67110883D /* ConstraintInsetTarget.swift in Sources */, + B5FC896640BE388F869378FC1D5E15DB /* ConstraintItem.swift in Sources */, + E8B0CF6D3E3D40B60941591795130B5C /* ConstraintLayoutGuide+Extensions.swift in Sources */, + C14DAA42CC0958124C214746522AF9A0 /* ConstraintLayoutGuide.swift in Sources */, + A6FB1919940722F282B999FC7EBB3D75 /* ConstraintLayoutGuideDSL.swift in Sources */, + DD70B874DE1F23C2E0126CF953C5DCF4 /* ConstraintLayoutSupport.swift in Sources */, + 63D0A94FD8662E31CE1DBA368C5DF21F /* ConstraintLayoutSupportDSL.swift in Sources */, + 60965452226CA372C6B147BC057E500C /* ConstraintMaker.swift in Sources */, + D4EC2FA41D31A2F84CD7D4249295238C /* ConstraintMakerEditable.swift in Sources */, + 233A09A56A348360BF4D578CE4DFAAAD /* ConstraintMakerExtendable.swift in Sources */, + 4935CFD3B0451EE27B2EA02201E5F70B /* ConstraintMakerFinalizable.swift in Sources */, + B0EEFB5454BF1802E5BD5F5E38C5D0AB /* ConstraintMakerPriortizable.swift in Sources */, + 7A53F19D615D569EE984A960FB54C9A7 /* ConstraintMakerRelatable.swift in Sources */, + D242AA74A6956DE0C70668C0E1F70916 /* ConstraintMultiplierTarget.swift in Sources */, + 80814B57F356127FE61A43E3F67E10DF /* ConstraintOffsetTarget.swift in Sources */, + DC8394EFD100272143DE977DD6956D94 /* ConstraintPriority.swift in Sources */, + C299DDDBD82E2839CF088522D4DA8D06 /* ConstraintPriorityTarget.swift in Sources */, + 79DF4B7B3B6E4E80D2EBA0CBA32BEEC7 /* ConstraintRelatableTarget.swift in Sources */, + 96F1B786B9CD59AFA52E5D72A9F13728 /* ConstraintRelation.swift in Sources */, + 2BF4CE6E63D8A7A3E97F293F2FA1C181 /* ConstraintView+Extensions.swift in Sources */, + ACB15DF1064055B263AB04CC88660135 /* ConstraintView.swift in Sources */, + A7C405BE3EBD5BD20EE080EDE6222E32 /* ConstraintViewDSL.swift in Sources */, + 63DBB9C74BB6A74064C7025A29512722 /* Debugging.swift in Sources */, + 8461446002A9ECCF46EB47026AFF11E8 /* LayoutConstraint.swift in Sources */, + 6F7C1AD74562DE4489F36DB2A4B4410C /* LayoutConstraintItem.swift in Sources */, + BF4B50F6ED511ED9C677C8AC96443E9C /* SnapKit-dummy.m in Sources */, + 073A1439B05F013F4CA22657F46AEBAC /* UILayoutSupport+Extensions.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FD1223AEFD10C8D62198EFC5F7DDBA41 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3930,47 +4518,47 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 091A32B95C004CEE3AA1FDB2957AE5A9 /* PBXTargetDependency */ = { + 033749BC48CF07FEB462A42EBF851143 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = HTMLString; - target = 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */; - targetProxy = B7BAC43C88451762557CFCB3D11B694F /* PBXContainerItemProxy */; + name = SnapKit; + target = CCE618C3977F9DC5DA78211D580D9FB3 /* SnapKit */; + targetProxy = 562EAB21BA88AB142F668CCF33769B7C /* PBXContainerItemProxy */; }; - 0E39395B06E747D705DAB7CEF340F473 /* PBXTargetDependency */ = { + 03B5B6B54A8CE74183F268624D4C1132 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IGListKit; - target = ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */; - targetProxy = 19C269444DE9228D6F1C3F0FCCBFE2F1 /* PBXContainerItemProxy */; + name = JDStatusBarNotification; + target = C377DF21B436B67266B44EA4707B8390 /* JDStatusBarNotification */; + targetProxy = 6AA78D2D2FC773571BADF5613D58CFD6 /* PBXContainerItemProxy */; }; - 0F4E0C52BD9982C3349D608D2F06D282 /* PBXTargetDependency */ = { + 082D9B7EA54E6E963BDD2D21B938DD3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TUSafariActivity; - target = 0023DF362DE7EC48C26408D57F325B3D /* TUSafariActivity */; - targetProxy = 61B6604CBFC5FCF948EEC7D89C4148FF /* PBXContainerItemProxy */; + name = FLEX; + target = FD3618ED40B9ACFFBBE35CA6D582EA89 /* FLEX */; + targetProxy = D7C1E704EB76BC5B3E8F5EE58A48CA65 /* PBXContainerItemProxy */; }; - 14C08B979A90715271201A82A3909786 /* PBXTargetDependency */ = { + 107F4DB7C54587476F8E02FAECBA75E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Apollo; - target = D2BB6B84BA7576195BC3964484476114 /* Apollo */; - targetProxy = D625F983E5B5EA8F95C6312F78505B79 /* PBXContainerItemProxy */; + name = SlackTextViewController; + target = 4F7577A0328F39BF7EC7E8E1692FAC1D /* SlackTextViewController */; + targetProxy = 7EC3B829281AF3CBF2DBAB3CADE643AD /* PBXContainerItemProxy */; }; - 19C0070B2C1B88C9F5D8C21D09E09040 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PureLayout; - target = AA08AA8840B2F0FAB101D1A403A4C9F9 /* PureLayout */; - targetProxy = 464A9FD1AB4FBB8F9F8DA2C85DA5ED50 /* PBXContainerItemProxy */; - }; - 2CA4BEA7CB6F0311FBF4AB1DBE4CB8A7 /* PBXTargetDependency */ = { + 2703CACF477FE91F35C198071E086B0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Tabman; - target = 479DFC5835018DAF6FB5C60B1E5EA6BB /* Tabman */; - targetProxy = 2DD1A856161E44ECB9BFBBCEF77FC99F /* PBXContainerItemProxy */; + target = 7222DCFF04E5B5969CBEDABAB0365218 /* Tabman */; + targetProxy = D494ED1CE140A13F68DA02D27F012FED /* PBXContainerItemProxy */; }; - 37AECB5EAF0860FF8AC3B3414AD23880 /* PBXTargetDependency */ = { + 29E7FCC1893B86BCF7FE2F9E148B4413 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = HTMLString; - target = 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */; - targetProxy = CC3DB176B671C302D9BDEBBEB8EB9D91 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 56AD1AD0164A41F3420AA12199B694A8 /* SDWebImage */; + targetProxy = 9DB8B5BA981011B5DBE889C08781BA5F /* PBXContainerItemProxy */; + }; + 2D529482AF8C5B08A6603C3769C179DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwipeCellKit; + target = 3C1A01781C99518DC8974E992A1F3878 /* SwipeCellKit */; + targetProxy = CB2D8F932BDDE9F63AFA0EDC7F3174FF /* PBXContainerItemProxy */; }; 3D4842DCB01A130B5A9B12320516D8C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3978,83 +4566,95 @@ target = B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */; targetProxy = 026398C562E55E4BB13F5B6F644A9244 /* PBXContainerItemProxy */; }; - 48499D3B830F7E5F81B5BE59BC830717 /* PBXTargetDependency */ = { + 4B4B9DDAA95B6E68491583D5096BFA71 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FLEX; - target = FD3618ED40B9ACFFBBE35CA6D582EA89 /* FLEX */; - targetProxy = 1B815428C76C45C9A1BA68F170B40FF5 /* PBXContainerItemProxy */; + name = Alamofire; + target = 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */; + targetProxy = A2C28A4D4696D9B9AEB290DADF04C767 /* PBXContainerItemProxy */; }; - 49A8CBF77542A8DCA51560DB917AABE7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TUSafariActivity; - target = 0023DF362DE7EC48C26408D57F325B3D /* TUSafariActivity */; - targetProxy = 5E774BAB30638C91B4CC8A52D11AE39D /* PBXContainerItemProxy */; - }; - 4ECFDE0B2F5D2695E10B68AD71A71486 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IGListKit; - target = ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */; - targetProxy = DA42ECBC58C5A71F001F93185244F236 /* PBXContainerItemProxy */; - }; - 517BA5014AEA74B39F427FBEC6EC9E54 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 073635E92FDDBFE48DDDA57C2BA819BD /* SDWebImage */; - targetProxy = BFA8B5A542F722C2A6FB01FF61A5F1A0 /* PBXContainerItemProxy */; - }; - 5BDCD89C1C4B536B77C5E7415124ADCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Pageboy; - target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; - targetProxy = D9657201E6CB4487086CFCCD2C2A9A81 /* PBXContainerItemProxy */; - }; - 5BF49538D4DC4AAAF209AAFAAC44F3BB /* PBXTargetDependency */ = { + 503BC19C35F0B1D181FADF536A65B45D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PureLayout; - target = AA08AA8840B2F0FAB101D1A403A4C9F9 /* PureLayout */; - targetProxy = 99AB6E8FC25ACCE30F254CBD7A1DF821 /* PBXContainerItemProxy */; + target = 31EE864F9EE2C6DEFCE734CD5EC21E83 /* PureLayout */; + targetProxy = 3A962B85FC639F86CA274F0DDFD9CDA0 /* PBXContainerItemProxy */; }; - 6DBEED055693C5EED16919A8D2E2619E /* PBXTargetDependency */ = { + 52A71542134160BBA6FD881F79948E6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AlamofireNetworkActivityIndicator; - target = 087D09C9280518CA4414F49A5401F47A /* AlamofireNetworkActivityIndicator */; - targetProxy = 7FC00B32987AB17B077765C46FC3037D /* PBXContainerItemProxy */; + name = HTMLString; + target = 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */; + targetProxy = A1CA77F61CCB41429A5CF60DBA7FD1E6 /* PBXContainerItemProxy */; }; - 7BF9F6183AD1A3DE02427487CA6218B1 /* PBXTargetDependency */ = { + 547A492348356F2226085806E7A6776C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Tabman; - target = 479DFC5835018DAF6FB5C60B1E5EA6BB /* Tabman */; - targetProxy = DD62C3B59C3961B9AF42E421E59572BB /* PBXContainerItemProxy */; + name = FLAnimatedImage; + target = B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */; + targetProxy = 97DF2C81355079EDF308D7AB1908C57F /* PBXContainerItemProxy */; }; - 845F735EDBA9F9106E050154798C31EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = NYTPhotoViewer; - target = 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */; - targetProxy = E072D9067650AE900F1F888683F59336 /* PBXContainerItemProxy */; - }; - 87C420B0159575C194D0E301CCAC309D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FLEX; - target = FD3618ED40B9ACFFBBE35CA6D582EA89 /* FLEX */; - targetProxy = 9993787E440D0190BACC2D38CEC38D80 /* PBXContainerItemProxy */; - }; - 8AF6E0264909BBB8B1DB27E9B7FC730D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 073635E92FDDBFE48DDDA57C2BA819BD /* SDWebImage */; - targetProxy = 056B870676E2BFB06AD288B6CBF7D8DA /* PBXContainerItemProxy */; - }; - 9226C89C5EB4109C04EFD889E96B0273 /* PBXTargetDependency */ = { + 5F34F01F6A2772A49DA86419AED6DD48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JDStatusBarNotification; target = C377DF21B436B67266B44EA4707B8390 /* JDStatusBarNotification */; - targetProxy = 48C680DCA7AC2A0A1B54DB6FAE1A5F55 /* PBXContainerItemProxy */; + targetProxy = 53588B6E1825B3FF3DFC5B757227DBA9 /* PBXContainerItemProxy */; }; - A3DE2DEDDCEE2367D9815158777138CC /* PBXTargetDependency */ = { + 6478F51F7E879CB894EDBD28FC935786 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SnapKit; - target = FD7D2BB4C0EE06161E29675AA10FF5B9 /* SnapKit */; - targetProxy = AEB83136DB9DC9CAD64A7B6274C29C4C /* PBXContainerItemProxy */; + name = Tabman; + target = 7222DCFF04E5B5969CBEDABAB0365218 /* Tabman */; + targetProxy = 6A0399735E899157F9FF0A4927DD6AD0 /* PBXContainerItemProxy */; + }; + 663E4E49B4A8BE3855A7C87DB6C29BC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwipeCellKit; + target = 3C1A01781C99518DC8974E992A1F3878 /* SwipeCellKit */; + targetProxy = BF6370E4C38DBD1ECAD4ECD93E1F1E0B /* PBXContainerItemProxy */; + }; + 67861507F1ACD6070C68905212FC83F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */; + targetProxy = 19E89ACE91CA436E394B4B3DD8D79935 /* PBXContainerItemProxy */; + }; + 71F1C856C757F8B8F4A5EF7FF4708A09 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IGListKit; + target = ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */; + targetProxy = E8CAA0E072B4F98D7ECB8F8525B726E3 /* PBXContainerItemProxy */; + }; + 789B209636C062923C983755843CC3C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FLEX; + target = FD3618ED40B9ACFFBBE35CA6D582EA89 /* FLEX */; + targetProxy = 6216C64CCF3B22D02C617D14DF81F575 /* PBXContainerItemProxy */; + }; + 85C642F2A99B817E906CB96406A728D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FLAnimatedImage; + target = B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */; + targetProxy = 7D98B31AC0361649CCAF19DCCE06F40B /* PBXContainerItemProxy */; + }; + A076DCA65F103595E885FAF551E7CA7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PureLayout; + target = 31EE864F9EE2C6DEFCE734CD5EC21E83 /* PureLayout */; + targetProxy = 0AE566D8FB9AC0C80C4DDD9AD4149CB1 /* PBXContainerItemProxy */; + }; + A35ECB93E33F91121D59B3ED7220F6AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMMarkdown; + target = 25387FA5BA01EFE7846214CC628290DD /* MMMarkdown */; + targetProxy = FE1DA3284F2370B7AEB027C498195B37 /* PBXContainerItemProxy */; + }; + A8B2B82FFC16C36E7D0AE72B80290407 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Pageboy; + target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; + targetProxy = BEB0A815EE82E6E18032E10A8126907E /* PBXContainerItemProxy */; + }; + AA3C7E37D19670EF78301316E61E9ED1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TUSafariActivity; + target = 6ACEDEAF6680EEB03B7DB300E7317B92 /* TUSafariActivity */; + targetProxy = 08C60411E2B9B08D6F23F0AD364F9F82 /* PBXContainerItemProxy */; }; AD31C975893CEFB83B8CCB5F951E8E09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -4062,71 +4662,95 @@ target = 4DCCD366622495856554FC72493F6F91 /* NYTPhotoViewer-NYTPhotoViewer */; targetProxy = A78864EC162CBC9CFBA512F8E7F511B6 /* PBXContainerItemProxy */; }; - B7093571D84BEFF0FE083C843E0D7F27 /* PBXTargetDependency */ = { + B5CF07BF174C685E52505EB05362D746 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Alamofire; - target = 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */; - targetProxy = 36BB8655FEB66F53ED4C51A0E1717F7C /* PBXContainerItemProxy */; + name = NYTPhotoViewer; + target = 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */; + targetProxy = 48CAA7EEFA3FC189763C2A8927CB9926 /* PBXContainerItemProxy */; }; - B75592902A771C3A5CB65D549D533E16 /* PBXTargetDependency */ = { + B5E9691C1324FCD2878190F5E8CF2DDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SnapKit; - target = FD7D2BB4C0EE06161E29675AA10FF5B9 /* SnapKit */; - targetProxy = 0746C4F5FD10067162E19C3360F16768 /* PBXContainerItemProxy */; + name = MMMarkdown; + target = 25387FA5BA01EFE7846214CC628290DD /* MMMarkdown */; + targetProxy = 32323C9B21941DA83A73CDDD7283E1E2 /* PBXContainerItemProxy */; }; - B7B583B89E17B608BA98B767DA50109F /* PBXTargetDependency */ = { + B7D235669672F8B7F579BA2F005DE0FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PureLayout; - target = AA08AA8840B2F0FAB101D1A403A4C9F9 /* PureLayout */; - targetProxy = FCBA7FC02381EDF2E5CEE48DC35738E8 /* PBXContainerItemProxy */; + name = TUSafariActivity; + target = 6ACEDEAF6680EEB03B7DB300E7317B92 /* TUSafariActivity */; + targetProxy = 5052425942F198878FE0A5445ECCCF0E /* PBXContainerItemProxy */; }; - BBD5AB808D14EC419649E82390CF2652 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Apollo; - target = D2BB6B84BA7576195BC3964484476114 /* Apollo */; - targetProxy = 54DA2C7E331E72B886AFC62E9F5AC975 /* PBXContainerItemProxy */; - }; - C0036691DB23E0EE8439A50A394734FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */; - targetProxy = F0092CDFD6F4DD635EE96B56D14041FF /* PBXContainerItemProxy */; - }; - C098D6FF7F850D7FE9800E8666C4EE94 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Pageboy; - target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; - targetProxy = 84413C26B3483E99872BBAE25BD06351 /* PBXContainerItemProxy */; - }; - D0FC42E4D8630C270FA817696F96ACC2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Pageboy; - target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; - targetProxy = 5F40651CD01188014DF26AB43B982513 /* PBXContainerItemProxy */; - }; - DA8AAC4B1ABAA38F243F75651A6910D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FLAnimatedImage; - target = B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */; - targetProxy = 694D87BCDC328E7B62775607A5051DEF /* PBXContainerItemProxy */; - }; - E277BDD1C08822E7930FD2C25C1A07B9 /* PBXTargetDependency */ = { + BA6F64D854519DE922DAD54F51F04A91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TUSafariActivity-TUSafariActivity"; - target = 7FF7A362EC994DDEA78314CC617F57A7 /* TUSafariActivity-TUSafariActivity */; - targetProxy = 22B6EE18CC6540C6DA8BC607322C6B00 /* PBXContainerItemProxy */; + target = 45AE7B562A5B3C0683612BD0EA5F630C /* TUSafariActivity-TUSafariActivity */; + targetProxy = 155B791DE808D4254F675A7E57FDC6A0 /* PBXContainerItemProxy */; }; - E7DA12E57E2690B479623CDC480803E9 /* PBXTargetDependency */ = { + BE97F0DDF5422E32104C2D65713237D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FLAnimatedImage; - target = B0F535BA07C1CA1E7384B068B2171E24 /* FLAnimatedImage */; - targetProxy = 4EEDFC319119C8648F3D3DE76D5CACDB /* PBXContainerItemProxy */; + name = NYTPhotoViewer; + target = 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */; + targetProxy = 029808AE5C97D85F0B70BEDE27C54530 /* PBXContainerItemProxy */; }; - EEC2EB3CBD95609034ADE97A8BF8AA5D /* PBXTargetDependency */ = { + BF0CAF92E2CF5FCC0EBC50E1E2E1CCE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = CCE618C3977F9DC5DA78211D580D9FB3 /* SnapKit */; + targetProxy = E9D3E518E17CF5DAE79DF427CE5D7752 /* PBXContainerItemProxy */; + }; + BF7C5821753D81EE5499B9A73DEFC1EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Pageboy; + target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; + targetProxy = 0AD02A341279F873C8D7B7C7F999DA84 /* PBXContainerItemProxy */; + }; + C0D1F5F98B2C51887F87A01686C30203 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AlamofireNetworkActivityIndicator; target = 087D09C9280518CA4414F49A5401F47A /* AlamofireNetworkActivityIndicator */; - targetProxy = 0CD576AE8F10A1D8DE665FD23D0BCB69 /* PBXContainerItemProxy */; + targetProxy = 1B399AE63B73EA9E36868E64CEF7AAEF /* PBXContainerItemProxy */; + }; + C1B0295AC51CD8B20D96725115215A07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PureLayout; + target = 31EE864F9EE2C6DEFCE734CD5EC21E83 /* PureLayout */; + targetProxy = 6CDC3DEBB1569AE7A03EEC8A6B0AEE40 /* PBXContainerItemProxy */; + }; + CFB2E09D3C7744554C6243AA50EBFAC2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IGListKit; + target = ABE45CF6BEA566FD872550B6586AE2F5 /* IGListKit */; + targetProxy = 0A4FF67C3DF18A8B93EBA0F1EA8AF8D6 /* PBXContainerItemProxy */; + }; + E5FAF9B61FE53192E4A4E5C2F92378D7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Pageboy; + target = 47BCCC24C423E83806D8086C877EAFB8 /* Pageboy */; + targetProxy = A8E7F9D68563A3068AD1E9ACD6BC93EB /* PBXContainerItemProxy */; + }; + E6460F5D01C1F4CE4727F90B332DB3E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 56AD1AD0164A41F3420AA12199B694A8 /* SDWebImage */; + targetProxy = 15C76D59A46BCD89AB56869111FF9EF8 /* PBXContainerItemProxy */; + }; + E68536AB2DBAA442300B45E6D6089F17 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Apollo; + target = D2BB6B84BA7576195BC3964484476114 /* Apollo */; + targetProxy = 5813952D86A86464E56F82B2BF6AE2C5 /* PBXContainerItemProxy */; + }; + EA41729C09E7CBFFA1137A12BDBE34FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Apollo; + target = D2BB6B84BA7576195BC3964484476114 /* Apollo */; + targetProxy = 10774DD969B36495A28717E66D0BC7A1 /* PBXContainerItemProxy */; + }; + EC514B5B992393EA3207926ADFEE7F79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = HTMLString; + target = 4DA933E2A562DDBD4F154B1CDB899D3E /* HTMLString */; + targetProxy = 3919AE5CB79C192DD30B9125317E7724 /* PBXContainerItemProxy */; }; F3AC1D150F3D764F23953140959CF756 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -4134,24 +4758,96 @@ target = 66B239826EF1D39D2D6C594AC2DBFF77 /* Alamofire */; targetProxy = BDC86891029325593D05CA29E7ED465F /* PBXContainerItemProxy */; }; - F3DA62BABACB580FAFAE6535E2BB9781 /* PBXTargetDependency */ = { + F5F1957533E4767977D8F843F8B17A82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JDStatusBarNotification; - target = C377DF21B436B67266B44EA4707B8390 /* JDStatusBarNotification */; - targetProxy = DBAB50034CB2F7BAE6B0C28D6C3FE72B /* PBXContainerItemProxy */; + name = SlackTextViewController; + target = 4F7577A0328F39BF7EC7E8E1692FAC1D /* SlackTextViewController */; + targetProxy = 63D6B5331A1469B4F51456E61590252D /* PBXContainerItemProxy */; }; - F97147F51962F24F0A259CC098A0BA40 /* PBXTargetDependency */ = { + FC2C3C3EC536585A5F548CA897C19266 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NYTPhotoViewer; - target = 309332BD9B29CA3688BBE5E022D42BB3 /* NYTPhotoViewer */; - targetProxy = 473B5578C54FC7F9E61ABD686371A19E /* PBXContainerItemProxy */; + name = AlamofireNetworkActivityIndicator; + target = 087D09C9280518CA4414F49A5401F47A /* AlamofireNetworkActivityIndicator */; + targetProxy = C5C5191E25FFD6A26CBCEF0C2E70F091 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 08BB5AECD0E5CC7388EED4DCF9729E8A /* Debug */ = { + 02BDF02C6A535B0E7C0A86270FA50EBF /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E29B4B40D19BA6C0011AE2BD9B351129 /* Pods-FreetimeTests.testflight.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_FreetimeTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 037724B4E4D0A4B34A7486440D966288 /* TestFlight */ = { isa = XCBuildConfiguration; baseConfigurationReference = BC57DAC73EE70E7859A186C25EF2DB4F /* AlamofireNetworkActivityIndicator.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = AlamofireNetworkActivityIndicator; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 0430507E9AE471A9DE260F2E32C0C7AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8DDFF59E27D249E021FAA0A18B824304 /* MMMarkdown.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -4165,18 +4861,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/MMMarkdown/MMMarkdown-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MMMarkdown/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; + MODULEMAP_FILE = "Target Support Files/MMMarkdown/MMMarkdown.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = AlamofireNetworkActivityIndicator; + PRODUCT_NAME = MMMarkdown; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -4184,6 +4878,72 @@ }; name = Debug; }; + 0C1E55BA9FD6AE4AC8FC57497561522C /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/JDStatusBarNotification/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = JDStatusBarNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 0E81C2DD2454DB1255DA15E733CF7948 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FLAnimatedImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = FLAnimatedImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 0FE133F0FAF2624359D26F1725DD7E70 /* TestFlight */ = { isa = XCBuildConfiguration; buildSettings = { @@ -4227,119 +4987,32 @@ }; name = TestFlight; }; - 12B6FA3F19EEB88CE48D1697F190AF65 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = HTMLString; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 15C3CEE9E23FDAB3E2C0F122DD7A7D5A /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FLEX/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FLEX/FLEX.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = FLEX; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 17EBB62ABBFBF286AB6D795E77F93888 /* Release */ = { + 1438965ACD95832C54FD0ED4F8043165 /* TestFlight */ = { isa = XCBuildConfiguration; baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TUSafariActivity"; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/TUSafariActivity/ResourceBundle-TUSafariActivity-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_NAME = TUSafariActivity; SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 1A63B6B72E469F6628787D5FD765CE6F /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/JDStatusBarNotification/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = JDStatusBarNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -4347,61 +5020,7 @@ }; name = TestFlight; }; - 1CC6ED258BCEE3AE61865B02CF601F38 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; - buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/NYTPhotoViewer"; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/ResourceBundle-NYTPhotoViewer-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = NYTPhotoViewer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = TestFlight; - }; - 1CE2D22549E5F1BD8D2FF93086466668 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BC57DAC73EE70E7859A186C25EF2DB4F /* AlamofireNetworkActivityIndicator.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = AlamofireNetworkActivityIndicator; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2A66646E085C9F27A2F9AE8BDA80CFD6 /* TestFlight */ = { + 143FC5CB10357BD96F7B49DACD9E4EF3 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = E4F70DD6AEE14A709BA65FBB42984C4F /* PureLayout.xcconfig */; buildSettings = { @@ -4427,7 +5046,59 @@ PRODUCT_NAME = PureLayout; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 1CC6ED258BCEE3AE61865B02CF601F38 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/NYTPhotoViewer"; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/ResourceBundle-NYTPhotoViewer-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = NYTPhotoViewer; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = TestFlight; + }; + 267B3DA6AA289C6D3630EDE2FF341DC2 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Tabman; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -4435,6 +5106,106 @@ }; name = TestFlight; }; + 2C8C2AA19AC5A902F8C97AB75928A2E5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 745DF244085634F76745505235A66DE6 /* SlackTextViewController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SlackTextViewController/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SlackTextViewController/SlackTextViewController.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SlackTextViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2DFEA0B3CB924916022D537F5F6B16C9 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 310C5D0416D54044DDB91FC0BC9E5F86 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = TUSafariActivity; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 31C057AE69EB724E9E9030B3C1FA5B3E /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; @@ -4452,7 +5223,7 @@ }; name = Release; }; - 357512DD0FE1588745418557A4FA3B82 /* Release */ = { + 354D5C97B814A3BDDCAA8CCF48128DB2 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0FF85F44BAD64DD374FDDF274FD7F4E1 /* Pods-Freetime.release.xcconfig */; buildSettings = { @@ -4490,77 +5261,7 @@ }; name = Release; }; - 37283EA2A110252DDAEFE298F3659676 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BC57DAC73EE70E7859A186C25EF2DB4F /* AlamofireNetworkActivityIndicator.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = AlamofireNetworkActivityIndicator; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 3F418E364C82E33A473727B5CE5AC257 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 466244E3E4A91D41828478FF42930EC4 /* Pageboy.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pageboy/Pageboy-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Pageboy/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Pageboy/Pageboy.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Pageboy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 402B23D9E2D4732EB659E74390692D63 /* Release */ = { + 372E477F1E7D3FFD03993585B0E4DB4F /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7F46C2D7094C5BBA28CC945AB8146F76 /* IGListKit.xcconfig */; buildSettings = { @@ -4586,7 +5287,6 @@ PRODUCT_NAME = IGListKit; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -4594,236 +5294,7 @@ }; name = Release; }; - 42504174587BC539D90EC90ACB98AD0E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FLAnimatedImage/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = FLAnimatedImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 44A2266939FA9A45992B45E4067CE6F0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = NYTPhotoViewer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 4A759867D929357796C7829F00D0BCD2 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Apollo/Apollo-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Apollo/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Apollo/Apollo.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Apollo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 4AEBDCFF43A2A5740624CC951A97D11F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E4F70DD6AEE14A709BA65FBB42984C4F /* PureLayout.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/PureLayout/PureLayout-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/PureLayout/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/PureLayout/PureLayout.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = PureLayout; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 4B177D5A17CF894B24F1F032629F43FC /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; - buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TUSafariActivity"; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/TUSafariActivity/ResourceBundle-TUSafariActivity-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TUSafariActivity; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = TestFlight; - }; - 4C526D0E4089BC8382F6E02E95443B94 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E29B4B40D19BA6C0011AE2BD9B351129 /* Pods-FreetimeTests.testflight.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_FreetimeTests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 50B0BC8B2264CFD56A644A24BD0D25B3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 56C77194AE7F9A982FF365D6F93ACACE /* Debug */ = { + 4238CFB7A740772EC3EDA65DEF464AE5 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */; buildSettings = { @@ -4849,7 +5320,6 @@ PRODUCT_NAME = FLEX; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -4857,43 +5327,9 @@ }; name = Debug; }; - 56FCD89C55C71413ACA3471C40F54DC7 /* TestFlight */ = { + 433E572775BA0A1BF2A862401B8B0DD6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TUSafariActivity; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 5A004118DBBC85532C9A8154F809176B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -4907,17 +5343,17 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = Tabman; + PRODUCT_NAME = HTMLString; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -4926,7 +5362,220 @@ }; name = Debug; }; - 5DCCB76725CE22D3ADE1ABDD9CD602F0 /* Debug */ = { + 436928AFC8A48114791E3AA467114996 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 150E7B0F62E5178288A6797A7421468C /* SwipeCellKit.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SwipeCellKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SwipeCellKit/SwipeCellKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = SwipeCellKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 48CFC289D23E5E0FCCE526345B9795D2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 4B552A9ED007EF250F33F2A9EE95D9B8 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7F46C2D7094C5BBA28CC945AB8146F76 /* IGListKit.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/IGListKit/IGListKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/IGListKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/IGListKit/IGListKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = IGListKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 522F78E3F29D3A3511756A8BF20FF92C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F5B258896BBC36F31E36847175371EA3 /* Pods-Freetime.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Freetime/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Freetime/Pods-Freetime.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Freetime; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 5434882484C38EEC33538F2B95EC6951 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C60C0B47DD73E47D2D307A72409FA898 /* Pods-FreetimeTests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_FreetimeTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 561F7AFE38ADDFE395EE82AA346BC955 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Tabman; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 596ABCE29F7623467FF25E7F550017DD /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 466244E3E4A91D41828478FF42930EC4 /* Pageboy.xcconfig */; buildSettings = { @@ -4952,7 +5601,7 @@ PRODUCT_NAME = Pageboy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -4961,9 +5610,9 @@ }; name = Debug; }; - 610DB8628F848AA1D321B1EC5AAE4A4C /* Release */ = { + 5C8587CA56BABD751920A924309B2063 /* TestFlight */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; + baseConfigurationReference = 466244E3E4A91D41828478FF42930EC4 /* Pageboy.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -4977,23 +5626,23 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Pageboy/Pageboy-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pageboy/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pageboy/Pageboy.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TUSafariActivity; + PRODUCT_NAME = Pageboy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = TestFlight; }; 6232A61252BB4E4A391C19879ECE662F /* Debug */ = { isa = XCBuildConfiguration; @@ -5012,9 +5661,9 @@ }; name = Debug; }; - 6B885BF0E7FC55424D7673BA90ACA531 /* TestFlight */ = { + 626F14F56D55D57FA6FF5A00C260B62C /* TestFlight */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */; + baseConfigurationReference = 150E7B0F62E5178288A6797A7421468C /* SwipeCellKit.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5028,52 +5677,14 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FLAnimatedImage/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SwipeCellKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap"; + MODULEMAP_FILE = "Target Support Files/SwipeCellKit/SwipeCellKit.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = FLAnimatedImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 6F4F4414AB416530A927A115F42022F9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7BF655D2340606EB677CEF746E625878 /* Pods-FreetimeTests.release.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_FreetimeTests; + PRODUCT_NAME = SwipeCellKit; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; @@ -5082,285 +5693,9 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 799A6212EDCAEF84DC672C5135E4C435 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 8684098BE9EEF707372941144CAF2608 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/JDStatusBarNotification/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = JDStatusBarNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 86DC9D1B07C2E0FFC4C4B064C4D6FAD0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = HTMLString; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 91DBB590A1465F9B4859E215DC27CB17 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = HTMLString; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 92F20E3F3A15C9CF9C45A54D36D6DE33 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = NYTPhotoViewer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; name = TestFlight; }; - 943BBBAA5A6322E1BCC92C047AE40171 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SnapKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - 9468AE57CC5120AFE567602621CFF2D5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = NYTPhotoViewer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 96B23AB16F7FB457F7019A1EAEC1CE72 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FLEX/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FLEX/FLEX.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = FLEX; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 9BFC9E4A7AAD7A607ACE06D95A401A5A /* Debug */ = { + 643C76AA582046977B7877822ED7A258 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -5404,14 +5739,13 @@ ONLY_ACTIVE_ARCH = YES; PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; - A1338BF14A0BCA2E095B7B13B53C847C /* TestFlight */ = { + 64D640031DDE7039628C6C52CF762D46 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; + baseConfigurationReference = 150E7B0F62E5178288A6797A7421468C /* SwipeCellKit.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5425,17 +5759,83 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SwipeCellKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SwipeCellKit/SwipeCellKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SwipeCellKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 6A648E2888B573918654F4BA35D9D18C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 745DF244085634F76745505235A66DE6 /* SlackTextViewController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SlackTextViewController/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Alamofire; + MODULEMAP_FILE = "Target Support Files/SlackTextViewController/SlackTextViewController.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = SlackTextViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 6AF7C7885711294C3FC506369648493C /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = HTMLString; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -5444,9 +5844,9 @@ }; name = TestFlight; }; - A3F640CD29C74D4DCC42746467F6C141 /* TestFlight */ = { + 726B133B3EDF1104FE8B3F10692078DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F46C2D7094C5BBA28CC945AB8146F76 /* IGListKit.xcconfig */; + baseConfigurationReference = 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5460,17 +5860,82 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/IGListKit/IGListKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/IGListKit/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FLEX/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/IGListKit/IGListKit.modulemap"; + MODULEMAP_FILE = "Target Support Files/FLEX/FLEX.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = IGListKit; + PRODUCT_NAME = FLEX; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 728B48F84A08949E487A1407F46B705E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = NYTPhotoViewer; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 73377392ADDCFD8D7823886DBED9E82B /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = NYTPhotoViewer; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -5478,7 +5943,7 @@ }; name = TestFlight; }; - A9C394DB4D294110D5E34DC53BC1DD48 /* Debug */ = { + 78109A86586F1B4CE8597A17DAC12C98 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */; buildSettings = { @@ -5504,7 +5969,6 @@ PRODUCT_NAME = JDStatusBarNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -5512,9 +5976,9 @@ }; name = Debug; }; - AA05EF59D1389EBBA6BA850CFE7A97C9 /* TestFlight */ = { + 7DFD0868E8A9E2E6861BB66161A1BD38 /* TestFlight */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5528,53 +5992,14 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Tabman; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - AC0B7479C275027331B342D949849B93 /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D0B07912BE1B2875B2E7336568F36E9B /* Pods-Freetime.testflight.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Freetime/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Freetime/Pods-Freetime.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Freetime; + PRODUCT_NAME = SnapKit; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; @@ -5585,9 +6010,9 @@ }; name = TestFlight; }; - B2E423311CE82E0FB24D1426E4504559 /* Debug */ = { + 85CBC8CFEDE486B3DE44D538F8E7444C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5B258896BBC36F31E36847175371EA3 /* Pods-Freetime.debug.xcconfig */; + baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5601,18 +6026,14 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Freetime/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Freetime/Pods-Freetime.modulemap"; + MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Freetime; + PRODUCT_NAME = SnapKit; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; @@ -5624,7 +6045,295 @@ }; name = Debug; }; - B58F5B7547818FBA275998F84E0A6C4C /* Debug */ = { + 8F00DE8A65F9A2450D1CCC3EAE0F8676 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8DDFF59E27D249E021FAA0A18B824304 /* MMMarkdown.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/MMMarkdown/MMMarkdown-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MMMarkdown/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/MMMarkdown/MMMarkdown.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = MMMarkdown; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 92E0098B0147A3A4CA98F095D3216AEF /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Apollo/Apollo-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Apollo/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Apollo/Apollo.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Apollo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 933D616197253DC5E892E4C609AB694E /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8DDFF59E27D249E021FAA0A18B824304 /* MMMarkdown.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/MMMarkdown/MMMarkdown-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MMMarkdown/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/MMMarkdown/MMMarkdown.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = MMMarkdown; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + 94A839E9042EE599C25465D61E1C865C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 99453F11C74519FF0FB7ABBE60DB6C2D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BC57DAC73EE70E7859A186C25EF2DB4F /* AlamofireNetworkActivityIndicator.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = AlamofireNetworkActivityIndicator; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 9AF1D06493AB83BA6B09324A1D8335F0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SnapKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + A637772C3867DE521359238AC253EBDF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Tabman; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A6BA68CB860132547479120BF412DA25 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FLAnimatedImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = FLAnimatedImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A8E3024AE63500C3399A2B2889EB1880 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TUSafariActivity"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/TUSafariActivity/ResourceBundle-TUSafariActivity-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = TUSafariActivity; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + AE792EB7F8E4D054D8E2FF6CEAE87D6D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */; buildSettings = { @@ -5650,7 +6359,7 @@ PRODUCT_NAME = Apollo; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -5659,9 +6368,9 @@ }; name = Debug; }; - BB752DF8AC6E9C6210B48186A1C8AB23 /* Release */ = { + AEEE0BB1A7D3AC12BF146476C19AC9C5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DD3B1298AC05CDC9F9D96CCE842DA00 /* Tabman.xcconfig */; + baseConfigurationReference = 466244E3E4A91D41828478FF42930EC4 /* Pageboy.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5675,17 +6384,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Tabman/Tabman-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Tabman/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Pageboy/Pageboy-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pageboy/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Tabman/Tabman.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pageboy/Pageboy.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Tabman; + PRODUCT_NAME = Pageboy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -5694,6 +6402,39 @@ }; name = Release; }; + AFFBC8511E45DF421C611A2C6F18FEFC /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; C03B8870130C98D1B02B59D003687524 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -5738,7 +6479,7 @@ }; name = Release; }; - C3B16D17229F4E9FA55F74240EEC9D83 /* Debug */ = { + C1C17509F7058644861D6B0526875EF4 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; buildSettings = { @@ -5753,9 +6494,144 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; + name = Release; + }; + C474F6534087A76B10D4CFD6DC262B7A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50F0D9FAEB54358E6CCD3877654837D4 /* Alamofire.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C6ABE0C203B7A91B7F994B6AF77CC5C3 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 745DF244085634F76745505235A66DE6 /* SlackTextViewController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SlackTextViewController/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SlackTextViewController/SlackTextViewController.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SlackTextViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + CDE1A1D0B7047C8075E77A3A6B12AE4C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BC57DAC73EE70E7859A186C25EF2DB4F /* AlamofireNetworkActivityIndicator.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = AlamofireNetworkActivityIndicator; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; name = Debug; }; - CE31204C094B0E90D0C2FCC1C3371524 /* Debug */ = { + D8BDFDBD81DB149228171040A81BAAAB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TUSafariActivity; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + DD0D7C74C580D61D0DFFB75544EE2BEE /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7F46C2D7094C5BBA28CC945AB8146F76 /* IGListKit.xcconfig */; buildSettings = { @@ -5781,7 +6657,6 @@ PRODUCT_NAME = IGListKit; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -5789,7 +6664,7 @@ }; name = Debug; }; - CECBC5158CC3261BDE0F5C0502CA8871 /* Debug */ = { + DE26BBA386F198D86DD6562A9C50703B /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = E4F70DD6AEE14A709BA65FBB42984C4F /* PureLayout.xcconfig */; buildSettings = { @@ -5815,7 +6690,6 @@ PRODUCT_NAME = PureLayout; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -5823,322 +6697,7 @@ }; name = Debug; }; - D293562BADDAE0BFE08B255F2F831FFF /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - DB5CC4284A9CD3C01E1A4912CFD61C43 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - E0A9100DF3150D88D7B73D46347763B2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Apollo/Apollo-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Apollo/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Apollo/Apollo.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Apollo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E271E03361E47D02671B89D0F446F06B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E782CEA6F57CD439059F7EF35ADDADF8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C60C0B47DD73E47D2D307A72409FA898 /* Pods-FreetimeTests.debug.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_FreetimeTests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - EBFDB71BC3D911B2AD784978C695104E /* TestFlight */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 466244E3E4A91D41828478FF42930EC4 /* Pageboy.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pageboy/Pageboy-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Pageboy/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Pageboy/Pageboy.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Pageboy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = TestFlight; - }; - F0E9DFE8DE07C16060B48AFBCDA7E31E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SnapKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F52084FF72AF0EEC4222BC1BE1469F24 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 723E9D597B7AAA8F2DF14665CFFDDF7E /* SnapKit.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SnapKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SnapKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - F9E3263D8A88350F0E7F05BCB7626235 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TUSafariActivity/TUSafariActivity-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TUSafariActivity/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/TUSafariActivity/TUSafariActivity.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = TUSafariActivity; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - FA2876D68766521A9137F0E892D2A6EE /* Release */ = { + E2378517615464E62B604CDE2A119D7B /* TestFlight */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8359E341D6743429A3212F71922B18A4 /* FLAnimatedImage.xcconfig */; buildSettings = { @@ -6164,7 +6723,334 @@ PRODUCT_NAME = FLAnimatedImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + E23BECBC9D6A0FB5DB01DBBDA0DF3153 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D38357AF7DFE2BF65008CE3B691DFB2B /* HTMLString.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/HTMLString/HTMLString-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/HTMLString/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/HTMLString/HTMLString.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = HTMLString; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E2893342CDE43A497DA21FF928C3DEC0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7BF655D2340606EB677CEF746E625878 /* Pods-FreetimeTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-FreetimeTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_FreetimeTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E3972F59A3CB0FEE6EB22732D537B29B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ABEB66E48612A663322B06211E4A23AC /* SDWebImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E3D7BE20137BB64B79A9B94353F9787A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 596F7803AB5AC85838F35B812C122790 /* NYTPhotoViewer.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NYTPhotoViewer/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = NYTPhotoViewer; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E884EA9E23BF4D7FCBDE85D88E460C08 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D0B07912BE1B2875B2E7336568F36E9B /* Pods-Freetime.testflight.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Freetime/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Freetime/Pods-Freetime.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Freetime; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + EC44ABDB97D8D4B120DBDFF0EC5E59D6 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93DF9C93A1678941E0243E50D015B21D /* FLEX.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FLEX/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FLEX/FLEX.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = FLEX; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + EFB1D92487DD6B4012B5BEDFCFE8A5E0 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 42563441CBB7A6EA37FA79DC41E25D2C /* TUSafariActivity.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TUSafariActivity"; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/TUSafariActivity/ResourceBundle-TUSafariActivity-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TUSafariActivity; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = TestFlight; + }; + F062E6148DC2D3C20961B67EF88F93C5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FB6EEB14E5E01EDE6A8B4F58AF34F665 /* Apollo.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Apollo/Apollo-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Apollo/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Apollo/Apollo.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Apollo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FAF53CA0556D605829D9E7E063008598 /* TestFlight */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4F70DD6AEE14A709BA65FBB42984C4F /* PureLayout.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/PureLayout/PureLayout-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PureLayout/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/PureLayout/PureLayout.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = PureLayout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = TestFlight; + }; + FFEA42068DF410BB80876A63CCE1BAE3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C90A509E3B5040946FF60370166AA673 /* JDStatusBarNotification.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/JDStatusBarNotification/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/JDStatusBarNotification/JDStatusBarNotification.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = JDStatusBarNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; @@ -6175,22 +7061,12 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 05AF7DEC6BD155D9FA43101A37143660 /* Build configuration list for PBXNativeTarget "Pods-Freetime" */ = { + 06D49844030E031AE6FECA34FAA105A0 /* Build configuration list for PBXNativeTarget "SwipeCellKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - B2E423311CE82E0FB24D1426E4504559 /* Debug */, - 357512DD0FE1588745418557A4FA3B82 /* Release */, - AC0B7479C275027331B342D949849B93 /* TestFlight */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 0770AD2EB8D1962431D8BE48C156576E /* Build configuration list for PBXNativeTarget "PureLayout" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CECBC5158CC3261BDE0F5C0502CA8871 /* Debug */, - 4AEBDCFF43A2A5740624CC951A97D11F /* Release */, - 2A66646E085C9F27A2F9AE8BDA80CFD6 /* TestFlight */, + 436928AFC8A48114791E3AA467114996 /* Debug */, + 64D640031DDE7039628C6C52CF762D46 /* Release */, + 626F14F56D55D57FA6FF5A00C260B62C /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6205,12 +7081,32 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 1105198906A48D0A04A64BCF59556D51 /* Build configuration list for PBXNativeTarget "MMMarkdown" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0430507E9AE471A9DE260F2E32C0C7AA /* Debug */, + 8F00DE8A65F9A2450D1CCC3EAE0F8676 /* Release */, + 933D616197253DC5E892E4C609AB694E /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 167C9A6F2F0579430444EDC7A701DEFB /* Build configuration list for PBXNativeTarget "TUSafariActivity" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 310C5D0416D54044DDB91FC0BC9E5F86 /* Debug */, + D8BDFDBD81DB149228171040A81BAAAB /* Release */, + 1438965ACD95832C54FD0ED4F8043165 /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 1A7D5851197C42A7035F5E5DA1EAEB12 /* Build configuration list for PBXNativeTarget "FLAnimatedImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 42504174587BC539D90EC90ACB98AD0E /* Debug */, - FA2876D68766521A9137F0E892D2A6EE /* Release */, - 6B885BF0E7FC55424D7673BA90ACA531 /* TestFlight */, + A6BA68CB860132547479120BF412DA25 /* Debug */, + 0E81C2DD2454DB1255DA15E733CF7948 /* Release */, + E2378517615464E62B604CDE2A119D7B /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6218,9 +7114,9 @@ 1CB5C1542A9CCC2119D754EA0C7F6514 /* Build configuration list for PBXNativeTarget "Pageboy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5DCCB76725CE22D3ADE1ABDD9CD602F0 /* Debug */, - 3F418E364C82E33A473727B5CE5AC257 /* Release */, - EBFDB71BC3D911B2AD784978C695104E /* TestFlight */, + 596ABCE29F7623467FF25E7F550017DD /* Debug */, + AEEE0BB1A7D3AC12BF146476C19AC9C5 /* Release */, + 5C8587CA56BABD751920A924309B2063 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6228,9 +7124,19 @@ 25EEF9DFAB7F6B311A7F396B7D1B485B /* Build configuration list for PBXNativeTarget "NYTPhotoViewer" */ = { isa = XCConfigurationList; buildConfigurations = ( - 44A2266939FA9A45992B45E4067CE6F0 /* Debug */, - 9468AE57CC5120AFE567602621CFF2D5 /* Release */, - 92F20E3F3A15C9CF9C45A54D36D6DE33 /* TestFlight */, + 728B48F84A08949E487A1407F46B705E /* Debug */, + E3D7BE20137BB64B79A9B94353F9787A /* Release */, + 73377392ADDCFD8D7823886DBED9E82B /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2AD2A36E1CDBD8774B1FA5662ED47C63 /* Build configuration list for PBXNativeTarget "Pods-FreetimeTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5434882484C38EEC33538F2B95EC6951 /* Debug */, + E2893342CDE43A497DA21FF928C3DEC0 /* Release */, + 02BDF02C6A535B0E7C0A86270FA50EBF /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6238,19 +7144,29 @@ 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9BFC9E4A7AAD7A607ACE06D95A401A5A /* Debug */, + 643C76AA582046977B7877822ED7A258 /* Debug */, C03B8870130C98D1B02B59D003687524 /* Release */, 0FE133F0FAF2624359D26F1725DD7E70 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 58F20F5BF7FD334F716C9F5C6574953B /* Build configuration list for PBXNativeTarget "TUSafariActivity-TUSafariActivity" */ = { + 3AE2A4549F8579D6B2AB4708F8FE1223 /* Build configuration list for PBXNativeTarget "TUSafariActivity-TUSafariActivity" */ = { isa = XCConfigurationList; buildConfigurations = ( - C3B16D17229F4E9FA55F74240EEC9D83 /* Debug */, - 17EBB62ABBFBF286AB6D795E77F93888 /* Release */, - 4B177D5A17CF894B24F1F032629F43FC /* TestFlight */, + A8E3024AE63500C3399A2B2889EB1880 /* Debug */, + C1C17509F7058644861D6B0526875EF4 /* Release */, + EFB1D92487DD6B4012B5BEDFCFE8A5E0 /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 597EDBBDB64DE94766D1E4CD847E2781 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 85CBC8CFEDE486B3DE44D538F8E7444C /* Debug */, + 9AF1D06493AB83BA6B09324A1D8335F0 /* Release */, + 7DFD0868E8A9E2E6861BB66161A1BD38 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6258,9 +7174,29 @@ 5AB2EC8B8D30C8AD7D31B6D1A3FD9887 /* Build configuration list for PBXNativeTarget "Alamofire" */ = { isa = XCConfigurationList; buildConfigurations = ( - 799A6212EDCAEF84DC672C5135E4C435 /* Debug */, - 50B0BC8B2264CFD56A644A24BD0D25B3 /* Release */, - A1338BF14A0BCA2E095B7B13B53C847C /* TestFlight */, + 94A839E9042EE599C25465D61E1C865C /* Debug */, + C474F6534087A76B10D4CFD6DC262B7A /* Release */, + 2DFEA0B3CB924916022D537F5F6B16C9 /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5B732BCD89280FADE8826364D4CCCCE2 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 48CFC289D23E5E0FCCE526345B9795D2 /* Debug */, + E3972F59A3CB0FEE6EB22732D537B29B /* Release */, + AFFBC8511E45DF421C611A2C6F18FEFC /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5C470CE1BD9D1D203E64CA22DF9AAEF5 /* Build configuration list for PBXNativeTarget "PureLayout" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DE26BBA386F198D86DD6562A9C50703B /* Debug */, + 143FC5CB10357BD96F7B49DACD9E4EF3 /* Release */, + FAF53CA0556D605829D9E7E063008598 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6268,9 +7204,9 @@ 6B24A99198059E676DD13161DCBEAD35 /* Build configuration list for PBXNativeTarget "JDStatusBarNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - A9C394DB4D294110D5E34DC53BC1DD48 /* Debug */, - 8684098BE9EEF707372941144CAF2608 /* Release */, - 1A63B6B72E469F6628787D5FD765CE6F /* TestFlight */, + 78109A86586F1B4CE8597A17DAC12C98 /* Debug */, + FFEA42068DF410BB80876A63CCE1BAE3 /* Release */, + 0C1E55BA9FD6AE4AC8FC57497561522C /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6278,19 +7214,9 @@ 70A1EAA2A7FC36CD3DCE7BF6CF69A16D /* Build configuration list for PBXNativeTarget "IGListKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - CE31204C094B0E90D0C2FCC1C3371524 /* Debug */, - 402B23D9E2D4732EB659E74390692D63 /* Release */, - A3F640CD29C74D4DCC42746467F6C141 /* TestFlight */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 786B878907F78184477C40D2AAB2C260 /* Build configuration list for PBXNativeTarget "TUSafariActivity" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F9E3263D8A88350F0E7F05BCB7626235 /* Debug */, - 610DB8628F848AA1D321B1EC5AAE4A4C /* Release */, - 56FCD89C55C71413ACA3471C40F54DC7 /* TestFlight */, + DD0D7C74C580D61D0DFFB75544EE2BEE /* Debug */, + 372E477F1E7D3FFD03993585B0E4DB4F /* Release */, + 4B552A9ED007EF250F33F2A9EE95D9B8 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6298,9 +7224,9 @@ 79B7EB6A52A234A1CA27B821EBD8172F /* Build configuration list for PBXNativeTarget "AlamofireNetworkActivityIndicator" */ = { isa = XCConfigurationList; buildConfigurations = ( - 08BB5AECD0E5CC7388EED4DCF9729E8A /* Debug */, - 1CE2D22549E5F1BD8D2FF93086466668 /* Release */, - 37283EA2A110252DDAEFE298F3659676 /* TestFlight */, + CDE1A1D0B7047C8075E77A3A6B12AE4C /* Debug */, + 99453F11C74519FF0FB7ABBE60DB6C2D /* Release */, + 037724B4E4D0A4B34A7486440D966288 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6308,49 +7234,29 @@ 8539EFF8551BD5F1F12F16559938C858 /* Build configuration list for PBXNativeTarget "HTMLString" */ = { isa = XCConfigurationList; buildConfigurations = ( - 91DBB590A1465F9B4859E215DC27CB17 /* Debug */, - 86DC9D1B07C2E0FFC4C4B064C4D6FAD0 /* Release */, - 12B6FA3F19EEB88CE48D1697F190AF65 /* TestFlight */, + 433E572775BA0A1BF2A862401B8B0DD6 /* Debug */, + E23BECBC9D6A0FB5DB01DBBDA0DF3153 /* Release */, + 6AF7C7885711294C3FC506369648493C /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9B44FAC0DB66DB8B7D20E15EC7DEC7E9 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { + 9ED0F855CF2F5C1F3E2FF5B1C0876414 /* Build configuration list for PBXNativeTarget "Tabman" */ = { isa = XCConfigurationList; buildConfigurations = ( - F0E9DFE8DE07C16060B48AFBCDA7E31E /* Debug */, - F52084FF72AF0EEC4222BC1BE1469F24 /* Release */, - 943BBBAA5A6322E1BCC92C047AE40171 /* TestFlight */, + A637772C3867DE521359238AC253EBDF /* Debug */, + 561F7AFE38ADDFE395EE82AA346BC955 /* Release */, + 267B3DA6AA289C6D3630EDE2FF341DC2 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A54C968ED13191EFB71BA1F3FDEB74DF /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + B58434E10A1662D9E47CD6EA03DA3B4C /* Build configuration list for PBXNativeTarget "Pods-Freetime" */ = { isa = XCConfigurationList; buildConfigurations = ( - DB5CC4284A9CD3C01E1A4912CFD61C43 /* Debug */, - E271E03361E47D02671B89D0F446F06B /* Release */, - D293562BADDAE0BFE08B255F2F831FFF /* TestFlight */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - ADC9EC0B9F59D835094FC358298AE0CB /* Build configuration list for PBXNativeTarget "Pods-FreetimeTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E782CEA6F57CD439059F7EF35ADDADF8 /* Debug */, - 6F4F4414AB416530A927A115F42022F9 /* Release */, - 4C526D0E4089BC8382F6E02E95443B94 /* TestFlight */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AE5073937C0D05C9B44A22787A3F5DBC /* Build configuration list for PBXNativeTarget "Tabman" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5A004118DBBC85532C9A8154F809176B /* Debug */, - BB752DF8AC6E9C6210B48186A1C8AB23 /* Release */, - AA05EF59D1389EBBA6BA850CFE7A97C9 /* TestFlight */, + 522F78E3F29D3A3511756A8BF20FF92C /* Debug */, + 354D5C97B814A3BDDCAA8CCF48128DB2 /* Release */, + E884EA9E23BF4D7FCBDE85D88E460C08 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6358,9 +7264,19 @@ D791B4249A6E9F44E066DA86A32BC55C /* Build configuration list for PBXNativeTarget "Apollo" */ = { isa = XCConfigurationList; buildConfigurations = ( - B58F5B7547818FBA275998F84E0A6C4C /* Debug */, - E0A9100DF3150D88D7B73D46347763B2 /* Release */, - 4A759867D929357796C7829F00D0BCD2 /* TestFlight */, + AE792EB7F8E4D054D8E2FF6CEAE87D6D /* Debug */, + F062E6148DC2D3C20961B67EF88F93C5 /* Release */, + 92E0098B0147A3A4CA98F095D3216AEF /* TestFlight */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + EDAB745DB8D2339CF7A9E349A7F3614A /* Build configuration list for PBXNativeTarget "SlackTextViewController" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6A648E2888B573918654F4BA35D9D18C /* Debug */, + 2C8C2AA19AC5A902F8C97AB75928A2E5 /* Release */, + C6ABE0C203B7A91B7F994B6AF77CC5C3 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6368,9 +7284,9 @@ F6FE6AC2552C62680357CCEAFF4B06C5 /* Build configuration list for PBXNativeTarget "FLEX" */ = { isa = XCConfigurationList; buildConfigurations = ( - 56C77194AE7F9A982FF365D6F93ACACE /* Debug */, - 96B23AB16F7FB457F7019A1EAEC1CE72 /* Release */, - 15C3CEE9E23FDAB3E2C0F122DD7A7D5A /* TestFlight */, + 4238CFB7A740772EC3EDA65DEF464AE5 /* Debug */, + 726B133B3EDF1104FE8B3F10692078DE /* Release */, + EC44ABDB97D8D4B120DBDFF0EC5E59D6 /* TestFlight */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Target Support Files/MMMarkdown/Info.plist b/Pods/Target Support Files/MMMarkdown/Info.plist new file mode 100644 index 00000000..4ebec8be --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.5.5 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/MMMarkdown/MMMarkdown-dummy.m b/Pods/Target Support Files/MMMarkdown/MMMarkdown-dummy.m new file mode 100644 index 00000000..f8ba0b47 --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/MMMarkdown-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_MMMarkdown : NSObject +@end +@implementation PodsDummy_MMMarkdown +@end diff --git a/Pods/Target Support Files/MMMarkdown/MMMarkdown-prefix.pch b/Pods/Target Support Files/MMMarkdown/MMMarkdown-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/MMMarkdown-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/MMMarkdown/MMMarkdown-umbrella.h b/Pods/Target Support Files/MMMarkdown/MMMarkdown-umbrella.h new file mode 100644 index 00000000..488ca1d2 --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/MMMarkdown-umbrella.h @@ -0,0 +1,26 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "MMDocument.h" +#import "MMDocument_Private.h" +#import "MMElement.h" +#import "MMGenerator.h" +#import "MMHTMLParser.h" +#import "MMMarkdown.h" +#import "MMMarkdownExtensions.h" +#import "MMParser.h" +#import "MMScanner.h" +#import "MMSpanParser.h" + +FOUNDATION_EXPORT double MMMarkdownVersionNumber; +FOUNDATION_EXPORT const unsigned char MMMarkdownVersionString[]; + diff --git a/Pods/Target Support Files/MMMarkdown/MMMarkdown.modulemap b/Pods/Target Support Files/MMMarkdown/MMMarkdown.modulemap new file mode 100644 index 00000000..8a2476bb --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/MMMarkdown.modulemap @@ -0,0 +1,6 @@ +framework module MMMarkdown { + umbrella header "MMMarkdown-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/MMMarkdown/MMMarkdown.xcconfig b/Pods/Target Support Files/MMMarkdown/MMMarkdown.xcconfig new file mode 100644 index 00000000..68a299f6 --- /dev/null +++ b/Pods/Target Support Files/MMMarkdown/MMMarkdown.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/MMMarkdown +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../Local Pods/MMMarkdown +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.markdown b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.markdown index e33416f0..8897d35f 100644 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.markdown @@ -215,6 +215,28 @@ OTHER DEALINGS IN THE SOFTWARE. (MIT License) +## MMMarkdown + +**Copyright (c) 2012-2013 Matt Diephouse** + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## NYTPhotoViewer Copyright (c) 2015-2016 The New York Times Company @@ -294,6 +316,29 @@ THE SOFTWARE. +## SlackTextViewController + +Copyright (c) Slack Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## SnapKit Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit @@ -317,6 +362,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## SwipeCellKit + +MIT License +Copyright (c) 2017 Jeremy Koch + +http://jerkoch.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + ## TUSafariActivity Copyright (c) 2012 ThinkUltimate (http://thinkultimate.com). diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.plist b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.plist index 775419d6..cff75598 100644 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-acknowledgements.plist @@ -274,6 +274,34 @@ OTHER DEALINGS IN THE SOFTWARE. Type PSGroupSpecifier + + FooterText + **Copyright (c) 2012-2013 Matt Diephouse** + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + MMMarkdown + Type + PSGroupSpecifier + FooterText Copyright (c) 2015-2016 The New York Times Company @@ -377,6 +405,35 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + Copyright (c) Slack Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + License + MIT + Title + SlackTextViewController + Type + PSGroupSpecifier + FooterText Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit @@ -406,6 +463,37 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License +Copyright (c) 2017 Jeremy Koch + +http://jerkoch.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + License + MIT + Title + SwipeCellKit + Type + PSGroupSpecifier + FooterText Copyright (c) 2012 ThinkUltimate (http://thinkultimate.com). diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-frameworks.sh b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-frameworks.sh index 325ed38a..e8f7f7ca 100755 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-frameworks.sh +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-frameworks.sh @@ -6,10 +6,6 @@ mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then @@ -27,9 +23,9 @@ install_framework() source="$(readlink "${source}")" fi - # Use filter instead of exclude so missing patterns don't throw errors. - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" local basename basename="$(basename -s .framework "$1")" @@ -58,15 +54,6 @@ install_framework() fi } -# Copies the dSYM of a vendored framework -install_dsym() { - local source="$1" - if [ -r "$source" ]; then - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" - fi -} - # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then @@ -89,7 +76,7 @@ strip_invalid_archs() { archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" stripped="" for arch in $archs; do - if ! [[ "${ARCHS}" == *"$arch"* ]]; then + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then # Strip non-valid architectures in-place lipo -remove "$arch" -output "$binary" "$binary" || exit 1 stripped="$stripped $arch" @@ -102,54 +89,63 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLEX/FLEX.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLEX/FLEX.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [[ "$CONFIGURATION" == "TestFlight" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLEX/FLEX.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLEX/FLEX.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-resources.sh b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-resources.sh index a7df4405..aed060f0 100755 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-resources.sh +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime-resources.sh @@ -8,10 +8,6 @@ RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt XCASSET_FILES=() -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" @@ -48,29 +44,29 @@ EOM fi case $RESOURCE_PATH in *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" ;; *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" ;; *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" ;; *.xcassets) @@ -78,7 +74,7 @@ EOM XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; *) - echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" ;; esac diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.debug.xcconfig b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.debug.xcconfig index e1ddc1bf..861088e1 100644 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.debug.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.release.xcconfig b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.release.xcconfig index ae15148c..f82c6e2f 100644 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.release.xcconfig +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.release.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.testflight.xcconfig b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.testflight.xcconfig index e1ddc1bf..861088e1 100644 --- a/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.testflight.xcconfig +++ b/Pods/Target Support Files/Pods-Freetime/Pods-Freetime.testflight.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.markdown index e33416f0..8897d35f 100644 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.markdown @@ -215,6 +215,28 @@ OTHER DEALINGS IN THE SOFTWARE. (MIT License) +## MMMarkdown + +**Copyright (c) 2012-2013 Matt Diephouse** + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## NYTPhotoViewer Copyright (c) 2015-2016 The New York Times Company @@ -294,6 +316,29 @@ THE SOFTWARE. +## SlackTextViewController + +Copyright (c) Slack Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## SnapKit Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit @@ -317,6 +362,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## SwipeCellKit + +MIT License +Copyright (c) 2017 Jeremy Koch + +http://jerkoch.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + ## TUSafariActivity Copyright (c) 2012 ThinkUltimate (http://thinkultimate.com). diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.plist b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.plist index 775419d6..cff75598 100644 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-acknowledgements.plist @@ -274,6 +274,34 @@ OTHER DEALINGS IN THE SOFTWARE. Type PSGroupSpecifier + + FooterText + **Copyright (c) 2012-2013 Matt Diephouse** + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + MMMarkdown + Type + PSGroupSpecifier + FooterText Copyright (c) 2015-2016 The New York Times Company @@ -377,6 +405,35 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + Copyright (c) Slack Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + License + MIT + Title + SlackTextViewController + Type + PSGroupSpecifier + FooterText Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit @@ -406,6 +463,37 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License +Copyright (c) 2017 Jeremy Koch + +http://jerkoch.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + License + MIT + Title + SwipeCellKit + Type + PSGroupSpecifier + FooterText Copyright (c) 2012 ThinkUltimate (http://thinkultimate.com). diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-frameworks.sh b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-frameworks.sh index 325ed38a..e8f7f7ca 100755 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-frameworks.sh +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-frameworks.sh @@ -6,10 +6,6 @@ mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then @@ -27,9 +23,9 @@ install_framework() source="$(readlink "${source}")" fi - # Use filter instead of exclude so missing patterns don't throw errors. - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" local basename basename="$(basename -s .framework "$1")" @@ -58,15 +54,6 @@ install_framework() fi } -# Copies the dSYM of a vendored framework -install_dsym() { - local source="$1" - if [ -r "$source" ]; then - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" - fi -} - # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then @@ -89,7 +76,7 @@ strip_invalid_archs() { archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" stripped="" for arch in $archs; do - if ! [[ "${ARCHS}" == *"$arch"* ]]; then + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then # Strip non-valid architectures in-place lipo -remove "$arch" -output "$binary" "$binary" || exit 1 stripped="$stripped $arch" @@ -102,54 +89,63 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLEX/FLEX.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLEX/FLEX.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [[ "$CONFIGURATION" == "TestFlight" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" - install_framework "${BUILT_PRODUCTS_DIR}/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Apollo/Apollo.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/FLEX/FLEX.framework" - install_framework "${BUILT_PRODUCTS_DIR}/HTMLString/HTMLString.framework" - install_framework "${BUILT_PRODUCTS_DIR}/IGListKit/IGListKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/JDStatusBarNotification/JDStatusBarNotification.framework" - install_framework "${BUILT_PRODUCTS_DIR}/NYTPhotoViewer/NYTPhotoViewer.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Pageboy/Pageboy.framework" - install_framework "${BUILT_PRODUCTS_DIR}/PureLayout/PureLayout.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/TUSafariActivity/TUSafariActivity.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Tabman/Tabman.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework" + install_framework "$BUILT_PRODUCTS_DIR/Apollo/Apollo.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLAnimatedImage/FLAnimatedImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/FLEX/FLEX.framework" + install_framework "$BUILT_PRODUCTS_DIR/HTMLString/HTMLString.framework" + install_framework "$BUILT_PRODUCTS_DIR/IGListKit/IGListKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" + install_framework "$BUILT_PRODUCTS_DIR/MMMarkdown/MMMarkdown.framework" + install_framework "$BUILT_PRODUCTS_DIR/NYTPhotoViewer/NYTPhotoViewer.framework" + install_framework "$BUILT_PRODUCTS_DIR/Pageboy/Pageboy.framework" + install_framework "$BUILT_PRODUCTS_DIR/PureLayout/PureLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/SDWebImage/SDWebImage.framework" + install_framework "$BUILT_PRODUCTS_DIR/SlackTextViewController/SlackTextViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SnapKit/SnapKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwipeCellKit/SwipeCellKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/TUSafariActivity/TUSafariActivity.framework" + install_framework "$BUILT_PRODUCTS_DIR/Tabman/Tabman.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-resources.sh b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-resources.sh index a7df4405..aed060f0 100755 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-resources.sh +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests-resources.sh @@ -8,10 +8,6 @@ RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt XCASSET_FILES=() -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" @@ -48,29 +44,29 @@ EOM fi case $RESOURCE_PATH in *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" ;; *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" ;; *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" ;; *.xcassets) @@ -78,7 +74,7 @@ EOM XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; *) - echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" ;; esac diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.debug.xcconfig b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.debug.xcconfig index e1ddc1bf..861088e1 100644 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.debug.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.release.xcconfig b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.release.xcconfig index ae15148c..f82c6e2f 100644 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.release.xcconfig +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.release.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.testflight.xcconfig b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.testflight.xcconfig index e1ddc1bf..861088e1 100644 --- a/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.testflight.xcconfig +++ b/Pods/Target Support Files/Pods-FreetimeTests/Pods-FreetimeTests.testflight.xcconfig @@ -1,9 +1,9 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator" "$PODS_CONFIGURATION_BUILD_DIR/Apollo" "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/HTMLString" "$PODS_CONFIGURATION_BUILD_DIR/IGListKit" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown" "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer" "$PODS_CONFIGURATION_BUILD_DIR/Pageboy" "$PODS_CONFIGURATION_BUILD_DIR/PureLayout" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController" "$PODS_CONFIGURATION_BUILD_DIR/SnapKit" "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit" "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity" "$PODS_CONFIGURATION_BUILD_DIR/Tabman" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 ANIMATED_GIF_SUPPORT=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SnapKit" -framework "TUSafariActivity" -framework "Tabman" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AlamofireNetworkActivityIndicator/AlamofireNetworkActivityIndicator.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Apollo/Apollo.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLAnimatedImage/FLAnimatedImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HTMLString/HTMLString.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IGListKit/IGListKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MMMarkdown/MMMarkdown.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NYTPhotoViewer/NYTPhotoViewer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Pageboy/Pageboy.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PureLayout/PureLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController/SlackTextViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SnapKit/SnapKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit/SwipeCellKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TUSafariActivity/TUSafariActivity.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Tabman/Tabman.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireNetworkActivityIndicator" -framework "Apollo" -framework "FLAnimatedImage" -framework "FLEX" -framework "HTMLString" -framework "IGListKit" -framework "JDStatusBarNotification" -framework "MMMarkdown" -framework "NYTPhotoViewer" -framework "Pageboy" -framework "PureLayout" -framework "SDWebImage" -framework "SlackTextViewController" -framework "SnapKit" -framework "SwipeCellKit" -framework "TUSafariActivity" -framework "Tabman" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/SlackTextViewController/Info.plist b/Pods/Target Support Files/SlackTextViewController/Info.plist new file mode 100644 index 00000000..e45d747c --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.9.5 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m new file mode 100644 index 00000000..0870b7ac --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_SlackTextViewController : NSObject +@end +@implementation PodsDummy_SlackTextViewController +@end diff --git a/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-umbrella.h b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-umbrella.h new file mode 100644 index 00000000..74f65243 --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController-umbrella.h @@ -0,0 +1,28 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "SLKInputAccessoryView.h" +#import "SLKTextInput.h" +#import "SLKTextInputbar.h" +#import "SLKTextView+SLKAdditions.h" +#import "SLKTextView.h" +#import "SLKTextViewController.h" +#import "SLKTypingIndicatorProtocol.h" +#import "SLKTypingIndicatorView.h" +#import "SLKUIConstants.h" +#import "UIResponder+SLKAdditions.h" +#import "UIScrollView+SLKAdditions.h" +#import "UIView+SLKAdditions.h" + +FOUNDATION_EXPORT double SlackTextViewControllerVersionNumber; +FOUNDATION_EXPORT const unsigned char SlackTextViewControllerVersionString[]; + diff --git a/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.modulemap b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.modulemap new file mode 100644 index 00000000..490433c8 --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.modulemap @@ -0,0 +1,6 @@ +framework module SlackTextViewController { + umbrella header "SlackTextViewController-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig new file mode 100644 index 00000000..96b0b459 --- /dev/null +++ b/Pods/Target Support Files/SlackTextViewController/SlackTextViewController.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SlackTextViewController +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../Local Pods/SlackTextViewController +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/SwipeCellKit/Info.plist b/Pods/Target Support Files/SwipeCellKit/Info.plist new file mode 100644 index 00000000..62cf7b2f --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.9.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-dummy.m b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-dummy.m new file mode 100644 index 00000000..4b646ed5 --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_SwipeCellKit : NSObject +@end +@implementation PodsDummy_SwipeCellKit +@end diff --git a/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-umbrella.h b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-umbrella.h new file mode 100644 index 00000000..0ecad30a --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double SwipeCellKitVersionNumber; +FOUNDATION_EXPORT const unsigned char SwipeCellKitVersionString[]; + diff --git a/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.modulemap b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.modulemap new file mode 100644 index 00000000..3987bf9d --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.modulemap @@ -0,0 +1,6 @@ +framework module SwipeCellKit { + umbrella header "SwipeCellKit-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.xcconfig b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.xcconfig new file mode 100644 index 00000000..fcc4b099 --- /dev/null +++ b/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SwipeCellKit +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" "-suppress-warnings" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../Local Pods/SwipeCellKit +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/README.md b/README.md index 6d1c114e..a03ce36d 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,11 @@ GitHawk will be released with (at least) a three-phased rollout: - Accept, reject, and merge PRs - :rocket: +## Installation + +If you want to build GitHawk locally, run `npm install`. It will install [apollo-codegen](https://github.com/apollographql/apollo-codegen) that is required to generate the +GraphQL models. + ## Open Source & Copying I ship GitHawk on the App Store for free and provide its entire source code for free as well. In the spirit of openness, I have licensed my work under MIT so that you can use my code in your app, if you choose. diff --git a/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt b/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt index 13c0680d..53a6ec5d 100644 --- a/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt +++ b/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt @@ -24,6 +24,9 @@ For `IG… name: JDStatusBarNotification, nameSpecified: body: Copyright © 2013 Mar… +name: MMMarkdown, nameSpecified: +body: **Copyright (c) 2012… + name: NYTPhotoViewer, nameSpecified: body: Copyright (c) 2015-2… @@ -38,9 +41,16 @@ body: This code is distrib… name: SDWebImage, nameSpecified: body: Copyright (c) 2016 O… +name: SlackTextViewController, nameSpecified: +body: Copyright (c) Slack … + name: SnapKit, nameSpecified: body: Copyright (c) 2011-P… +name: SwipeCellKit, nameSpecified: +body: MIT License +Copyrig… + name: TUSafariActivity, nameSpecified: body: Copyright (c) 2012 T… @@ -75,6 +85,9 @@ For `IG… name: JDStatusBarNotification, nameSpecified: body: Copyright © 2013 Mar… +name: MMMarkdown, nameSpecified: +body: **Copyright (c) 2012… + name: NYTPhotoViewer, nameSpecified: body: Copyright (c) 2015-2… @@ -89,9 +102,16 @@ body: This code is distrib… name: SDWebImage, nameSpecified: body: Copyright (c) 2016 O… +name: SlackTextViewController, nameSpecified: +body: Copyright (c) Slack … + name: SnapKit, nameSpecified: body: Copyright (c) 2011-P… +name: SwipeCellKit, nameSpecified: +body: MIT License +Copyrig… + name: TUSafariActivity, nameSpecified: body: Copyright (c) 2012 T… diff --git a/Settings.bundle/com.mono0926.LicensePlist.plist b/Settings.bundle/com.mono0926.LicensePlist.plist index de1f732d..d76acdda 100644 --- a/Settings.bundle/com.mono0926.LicensePlist.plist +++ b/Settings.bundle/com.mono0926.LicensePlist.plist @@ -8,7 +8,7 @@ File com.mono0926.LicensePlist/Alamofire Title - Alamofire + Alamofire (4.4.0) Type PSChildPaneSpecifier @@ -16,7 +16,7 @@ File com.mono0926.LicensePlist/AlamofireNetworkActivityIndicator Title - AlamofireNetworkActivityIndicator + AlamofireNetworkActivityIndicator (2.1.0) Type PSChildPaneSpecifier @@ -24,7 +24,7 @@ File com.mono0926.LicensePlist/Apollo Title - Apollo + Apollo (0.5.6) Type PSChildPaneSpecifier @@ -32,7 +32,7 @@ File com.mono0926.LicensePlist/FLAnimatedImage Title - FLAnimatedImage + FLAnimatedImage (1.0.12) Type PSChildPaneSpecifier @@ -40,7 +40,7 @@ File com.mono0926.LicensePlist/FLEX Title - FLEX + FLEX (2.4.0) Type PSChildPaneSpecifier @@ -48,7 +48,7 @@ File com.mono0926.LicensePlist/HTMLString Title - HTMLString + HTMLString (3.0.0) Type PSChildPaneSpecifier @@ -56,7 +56,7 @@ File com.mono0926.LicensePlist/IGListKit Title - IGListKit + IGListKit (3.1.1) Type PSChildPaneSpecifier @@ -64,7 +64,15 @@ File com.mono0926.LicensePlist/JDStatusBarNotification Title - JDStatusBarNotification + JDStatusBarNotification (1.5.5) + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/MMMarkdown + Title + MMMarkdown (0.5.5) Type PSChildPaneSpecifier @@ -72,7 +80,7 @@ File com.mono0926.LicensePlist/NYTPhotoViewer Title - NYTPhotoViewer + NYTPhotoViewer (1.1.0) Type PSChildPaneSpecifier @@ -80,7 +88,7 @@ File com.mono0926.LicensePlist/Pageboy Title - Pageboy + Pageboy (2.0.0) Type PSChildPaneSpecifier @@ -88,7 +96,7 @@ File com.mono0926.LicensePlist/PureLayout Title - PureLayout + PureLayout (3.0.2) Type PSChildPaneSpecifier @@ -96,7 +104,15 @@ File com.mono0926.LicensePlist/SDWebImage Title - SDWebImage + SDWebImage (4.0.0) + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/SlackTextViewController + Title + SlackTextViewController (1.9.5) Type PSChildPaneSpecifier @@ -104,7 +120,15 @@ File com.mono0926.LicensePlist/SnapKit Title - SnapKit + SnapKit (3.2.0) + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/SwipeCellKit + Title + SwipeCellKit (1.9.0) Type PSChildPaneSpecifier @@ -112,7 +136,7 @@ File com.mono0926.LicensePlist/Tabman Title - Tabman + Tabman (1.0.0) Type PSChildPaneSpecifier @@ -120,7 +144,7 @@ File com.mono0926.LicensePlist/TUSafariActivity Title - TUSafariActivity + TUSafariActivity (1.0.4) Type PSChildPaneSpecifier diff --git a/Settings.bundle/com.mono0926.LicensePlist/MMMarkdown.plist b/Settings.bundle/com.mono0926.LicensePlist/MMMarkdown.plist new file mode 100644 index 00000000..a702afd2 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/MMMarkdown.plist @@ -0,0 +1,33 @@ + + + + + PreferenceSpecifiers + + + FooterText + **Copyright (c) 2012-2013 Matt Diephouse** + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/SlackTextViewController.plist b/Settings.bundle/com.mono0926.LicensePlist/SlackTextViewController.plist new file mode 100644 index 00000000..7372e988 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/SlackTextViewController.plist @@ -0,0 +1,34 @@ + + + + + PreferenceSpecifiers + + + FooterText + Copyright (c) Slack Technologies, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/SwipeCellKit.plist b/Settings.bundle/com.mono0926.LicensePlist/SwipeCellKit.plist new file mode 100644 index 00000000..1ffc4930 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/SwipeCellKit.plist @@ -0,0 +1,36 @@ + + + + + PreferenceSpecifiers + + + FooterText + MIT License +Copyright (c) 2017 Jeremy Koch + +http://jerkoch.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Type + PSGroupSpecifier + + + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..6d170c3d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,774 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "apollo-codegen": { + "version": "0.10.13", + "resolved": "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.10.13.tgz", + "integrity": "sha1-M3xaxYxYjTz284pQp+xs+CTy3Jg=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "change-case": "3.0.1", + "glob": "7.1.2", + "graphql": "0.9.6", + "inflected": "1.1.7", + "mkdirp": "0.5.1", + "node-fetch": "1.7.3", + "source-map-support": "0.4.18", + "yargs": "7.1.0" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, + "requires": { + "core-js": "2.5.1", + "regenerator-runtime": "0.11.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dev": true, + "requires": { + "no-case": "2.3.2", + "upper-case": "1.1.3" + } + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "change-case": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.0.1.tgz", + "integrity": "sha1-7l9a0EFa0a2egHLPSc1M+nZgpVQ=", + "dev": true, + "requires": { + "camel-case": "3.0.0", + "constant-case": "2.0.0", + "dot-case": "2.1.1", + "header-case": "1.0.1", + "is-lower-case": "1.1.3", + "is-upper-case": "1.1.2", + "lower-case": "1.1.4", + "lower-case-first": "1.0.2", + "no-case": "2.3.2", + "param-case": "2.1.1", + "pascal-case": "2.0.1", + "path-case": "2.1.1", + "sentence-case": "2.1.1", + "snake-case": "2.1.0", + "swap-case": "1.1.2", + "title-case": "2.1.1", + "upper-case": "1.1.3", + "upper-case-first": "1.1.2" + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "constant-case": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", + "integrity": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=", + "dev": true, + "requires": { + "snake-case": "2.1.0", + "upper-case": "1.1.3" + } + }, + "core-js": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", + "integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", + "dev": true + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "dot-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", + "integrity": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=", + "dev": true, + "requires": { + "no-case": "2.3.2" + } + }, + "encoding": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", + "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", + "dev": true, + "requires": { + "iconv-lite": "0.4.19" + } + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true, + "requires": { + "is-arrayish": "0.2.1" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", + "dev": true + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "graphql": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-0.9.6.tgz", + "integrity": "sha1-UUQh6dIlwp38j9MFRZq65YgV7yw=", + "dev": true, + "requires": { + "iterall": "1.1.1" + } + }, + "header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=", + "dev": true, + "requires": { + "no-case": "2.3.2", + "upper-case": "1.1.3" + } + }, + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", + "dev": true + }, + "inflected": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/inflected/-/inflected-1.1.7.tgz", + "integrity": "sha1-w5PfbihHLQ13swguw6ogkfS8lvk=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "1.1.1" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=", + "dev": true, + "requires": { + "lower-case": "1.1.4" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=", + "dev": true, + "requires": { + "upper-case": "1.1.3" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "iterall": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.1.1.tgz", + "integrity": "sha1-9/CvEemgTsZCYmD1AZ2fzKTVAhQ=", + "dev": true + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "requires": { + "invert-kv": "1.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + } + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "dev": true + }, + "lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=", + "dev": true, + "requires": { + "lower-case": "1.1.4" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "1.1.4" + } + }, + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dev": true, + "requires": { + "encoding": "0.1.12", + "is-stream": "1.1.0" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.4.1", + "validate-npm-package-license": "3.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "1.0.0" + } + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dev": true, + "requires": { + "no-case": "2.3.2" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "1.3.1" + } + }, + "pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=", + "dev": true, + "requires": { + "camel-case": "3.0.0", + "upper-case-first": "1.1.2" + } + }, + "path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=", + "dev": true, + "requires": { + "no-case": "2.3.2" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + } + }, + "regenerator-runtime": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", + "integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", + "dev": true + }, + "sentence-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", + "integrity": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=", + "dev": true, + "requires": { + "no-case": "2.3.2", + "upper-case-first": "1.1.2" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "snake-case": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", + "integrity": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=", + "dev": true, + "requires": { + "no-case": "2.3.2" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "requires": { + "source-map": "0.5.7" + } + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", + "dev": true + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + } + }, + "swap-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", + "integrity": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=", + "dev": true, + "requires": { + "lower-case": "1.1.4", + "upper-case": "1.1.3" + } + }, + "title-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", + "integrity": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=", + "dev": true, + "requires": { + "no-case": "2.3.2", + "upper-case": "1.1.3" + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "dev": true + }, + "upper-case-first": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz", + "integrity": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=", + "dev": true, + "requires": { + "upper-case": "1.1.3" + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true + }, + "yargs": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", + "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "dev": true, + "requires": { + "camelcase": "3.0.0", + "cliui": "3.2.0", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "os-locale": "1.4.0", + "read-pkg-up": "1.0.1", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "1.0.2", + "which-module": "1.0.0", + "y18n": "3.2.1", + "yargs-parser": "5.0.0" + } + }, + "yargs-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", + "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "dev": true, + "requires": { + "camelcase": "3.0.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 00000000..440a3b6f --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "apollo-codegen": "^0.10.13" + } +}