├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── GCBCore.podspec ├── GCBCore ├── Configuration │ ├── Configuration.swift │ ├── ConfigurationDownloader.swift │ ├── ConfigurationRefresher.swift │ ├── LocalConfigurationLoader.swift │ └── WidgetSettings.swift ├── DataDownloader.swift ├── Extensions │ ├── ErrorType.swift │ ├── UIAlertController.swift │ ├── UILabel.swift │ ├── UIView.swift │ └── UIViewController.swift ├── GrandCentralBoardController.swift ├── Job.swift ├── Models │ ├── Source.swift │ └── Timed.swift ├── Rendering.swift ├── Result.swift ├── Scheduler.swift ├── Views │ └── AutoStack.swift └── Widget.swift ├── GCBUtilities.podspec ├── GCBUtilities ├── Extensions │ ├── NSBundle.swift │ ├── NSDate.swift │ └── UIColor.swift ├── Resources │ └── gcb-error-icon.png ├── Utilities │ ├── AccessToken.swift │ ├── GoogleAPIDataProvider.swift │ ├── GoogleTokenProvider.swift │ ├── LabelWithSpacing.swift │ └── NetworkRequestManager.swift └── Views │ ├── WidgetTemplateView.swift │ └── WidgetTemplateView.xib ├── GrandCentralBoard.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── GrandCentralBoard-LocalConfig.xcscheme │ └── GrandCentralBoard.xcscheme ├── GrandCentralBoard.xcworkspace └── contents.xcworkspacedata ├── GrandCentralBoard ├── App │ ├── AppDelegate.swift │ ├── Assets │ │ └── Assets.xcassets │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon@1x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── iconFront@1x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── iconMiddle@1x.png │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon@1x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── iconFront@1x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── iconMiddle@1x.png │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ │ ├── ConnectionErrorIcon.imageset │ │ │ ├── ClockConnectionErrorIcon.png │ │ │ ├── ClockConnectionErrorIcon@2x.png │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── launch.png │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── Storyboards.swift │ └── ViewControllers │ │ └── MainViewController.swift ├── Extensions │ ├── Alamofire+NetworkRequestManager.swift │ ├── Moya.swift │ ├── NSDate+GrandCentralBoard.swift │ ├── NSThread.swift │ └── String.swift ├── NSBundle.swift ├── NSDate+StringWithFormat.swift ├── NSProcessInfo.swift ├── Podfile ├── String+Localized.swift ├── UIColor.swift └── Widgets │ ├── Bonus │ ├── BonusModels.swift │ ├── BonusWidget.swift │ ├── BonusWidgetBuilder.swift │ ├── BonuslyRequestTemplates.swift │ ├── Extensions │ │ ├── Array.swift │ │ ├── CGRect.swift │ │ ├── Dictionary.swift │ │ ├── Range.swift │ │ └── UIImage.swift │ ├── PaginatableRequestTemplate.swift │ ├── RequestBuilder.swift │ ├── RequestSender.swift │ ├── RequestSenderConfiguration.swift │ ├── RequestTemplate.swift │ ├── Scene │ │ ├── BonusScene.sks │ │ ├── BonusScene.swift │ │ ├── Bubble.swift │ │ └── BubbleScalingAnimator.swift │ ├── Server │ │ ├── bonusly.json │ │ └── configuration.json │ ├── Source │ │ ├── BonusSource.swift │ │ └── PeopleWithBonusesFetchController.swift │ ├── TimestampableRequestTemplate.swift │ ├── View │ │ ├── BonusWidgetView.swift │ │ ├── BonusWidgetView.xib │ │ └── BonusWidgetViewModel.swift │ └── WrappingRequestTemplate.swift │ ├── GitHub │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── no_pr.imageset │ │ │ ├── Contents.json │ │ │ └── rock_on.png │ ├── GitHubCell.xib │ ├── GitHubDataProvider.swift │ ├── GitHubSource.swift │ ├── GitHubTableDataSource.swift │ ├── GitHubWidgetBuilder.swift │ ├── GitHubWidgetSettings.swift │ ├── Model │ │ └── Repository.swift │ └── View │ │ ├── EllipseView.swift │ │ ├── GitHubCell.swift │ │ ├── GitHubWidget.swift │ │ ├── GitHubWidgetView.swift │ │ └── NoOpenPRPlaceholder.xib │ ├── Harvest │ ├── AccessTokenFetcher.swift │ ├── BillingProjectList.swift │ ├── BillingProjectListFetcher.swift │ ├── BillingStatsFetcher.swift │ ├── BillingStatsGroup.swift │ ├── DailyBillingStats.swift │ ├── DailyBillingStatsFetcher.swift │ ├── DailyUserBillingStatsFetcher.swift │ ├── HarvestAPI.swift │ ├── HarvestSource.swift │ ├── HarvestWidget.swift │ ├── HarvestWidgetBuilder.swift │ ├── HarvestWidgetSettings.swift │ ├── TokenRefreshCredentials.swift │ ├── UIColor+BillingColor.swift │ └── View │ │ ├── CircleChartView.swift │ │ ├── CircleChartViewModel.swift │ │ ├── CircleView.swift │ │ ├── HarvestWidgetView.swift │ │ └── HarvestWidgetView.xib │ ├── Image │ ├── ImageWidget.swift │ ├── ImageWidgetBuilder.swift │ ├── ImageWidgetConfiguration.swift │ ├── Source │ │ └── RemoteImageSource.swift │ └── View │ │ ├── ImageWidgetView.swift │ │ └── ImageWidgetView.xib │ ├── Slack │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── default_avatar.imageset │ │ │ ├── Contents.json │ │ │ └── slack_default_avatar.png │ │ └── message_bubble.imageset │ │ │ ├── Contents.json │ │ │ └── slack_bubble.png │ ├── AvatarProvider.swift │ ├── Slack+DataProviding.swift │ ├── SlackAvatarView.swift │ ├── SlackMessage.swift │ ├── SlackMessagesWidget.swift │ ├── SlackSource.swift │ ├── SlackWidgetBuilder.swift │ ├── SlackWidgetSettings.swift │ ├── String+SlackTimestampParsing.swift │ └── View │ │ ├── MessageBubbleView.swift │ │ ├── SlackWidgetView.swift │ │ ├── SlackWidgetView.xib │ │ └── SlackWidgetViewModel.swift │ ├── Watch │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── Watch │ │ │ ├── 1.imageset │ │ │ ├── 1.png │ │ │ └── Contents.json │ │ │ ├── 10.imageset │ │ │ ├── 10.png │ │ │ └── Contents.json │ │ │ ├── 11.imageset │ │ │ ├── 11.png │ │ │ └── Contents.json │ │ │ ├── 12.imageset │ │ │ ├── 12.png │ │ │ └── Contents.json │ │ │ ├── 2.imageset │ │ │ ├── 2.png │ │ │ └── Contents.json │ │ │ ├── 3.imageset │ │ │ ├── 3.png │ │ │ └── Contents.json │ │ │ ├── 4.imageset │ │ │ ├── 4.png │ │ │ └── Contents.json │ │ │ ├── 5.imageset │ │ │ ├── 5.png │ │ │ └── Contents.json │ │ │ ├── 6.imageset │ │ │ ├── 6.png │ │ │ └── Contents.json │ │ │ ├── 7.imageset │ │ │ ├── 7.png │ │ │ └── Contents.json │ │ │ ├── 8.imageset │ │ │ ├── 8.png │ │ │ └── Contents.json │ │ │ ├── 9.imageset │ │ │ ├── 9.png │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── back.imageset │ │ │ ├── Contents.json │ │ │ ├── background.png │ │ │ └── background2x.png │ ├── GoogleCalendarWatchWidgetBuilder.swift │ ├── Server │ │ ├── Calendar.swift │ │ ├── GoogleCalendarDataProvider.swift │ │ └── calendar.json │ ├── Source │ │ ├── CalendarNameSource.swift │ │ ├── Event.swift │ │ ├── EventsSource.swift │ │ ├── JSONCalendarDataProvider.swift │ │ ├── SourceSettings.swift │ │ └── TimeSource.swift │ ├── View │ │ ├── FlashingAnimationController.swift │ │ ├── WatchWidgetView.swift │ │ └── WatchWidgetView.xib │ ├── WatchWidget.swift │ ├── WatchWidgetBuilder.swift │ └── WatchWidgetViewModel.swift │ └── WebsiteAnalytics │ ├── AnalyticsReport.swift │ ├── BlogPostsPopularityWidgetBuilder.swift │ ├── GoogleAnalyticsDataProvider.swift │ ├── PageViewsRowReport.swift │ ├── PageViewsSource.swift │ ├── View │ ├── EmptyHeaderView.swift │ ├── HeaderCell.swift │ ├── TableDataSource.swift │ ├── TableViewCell.swift │ ├── TableViewCell.xib │ ├── TableViewHeaderView.swift │ ├── TableViewHeaderView.xib │ ├── TableWidgetView.swift │ └── TableWidgetView.xib │ ├── WebsiteAnalyticsSettings.swift │ └── WebsiteAnalyticsWidget.swift ├── GrandCentralBoardTests ├── .swiftlint.yml ├── APIDataProviderTests.swift ├── BillableDatesTests.swift ├── BonusWidgetSnapshotTests.swift ├── CalendarDataProviderTests.swift ├── Core │ ├── AutoStackTests.swift │ ├── ConfigurationRefresherTests.swift │ ├── ConfigurationTests.swift │ ├── Files │ │ ├── configurationBroken.json │ │ ├── configurationBrokenJSON.json │ │ └── configurationCorrect.json │ ├── GrandCentralBoardTests.swift │ ├── SchedulerTests.swift │ └── WidgetTemplateViewTests.swift ├── Info.plist ├── ReferenceImages_64 │ ├── GrandCentralBoardTests.BonusWidgetSnapshotTests │ │ ├── testViewWithFailure.png │ │ └── testViewWithSuccess.png │ ├── GrandCentralBoardTests.CircleChartViewTests │ │ ├── testEvenDistribution.png │ │ ├── testEvenDistribution180StartAngle.png │ │ ├── testItemsNotNormalized.png │ │ ├── testTwoShortItemsAtTheBeginning.png │ │ └── testTwoShortItemsAtTheEnd.png │ ├── GrandCentralBoardTests.GitHubCellSnapshotTests │ │ ├── testGitHubCellWithCount0AndLongName.png │ │ ├── testGitHubCellWithCount100.png │ │ └── testGitHubCellWithCount5.png │ ├── GrandCentralBoardTests.GitHubWidgetSnapshotTests │ │ ├── testWidgetWithData.png │ │ ├── testWidgetWithError.png │ │ ├── testWidgetWithNoDataReturned.png │ │ └── testWidgetWithNoOpenPRs.png │ ├── GrandCentralBoardTests.HarvestWidgetSnapshotTests │ │ ├── testViewWithFailure.png │ │ └── testViewWithNoStats.png │ ├── GrandCentralBoardTests.HarvestWidgetViewSnapshotTests │ │ ├── testViewWithMultipleDaysBillingStats.png │ │ ├── testViewWithNoBillingStats.png │ │ └── testViewWithOneDayBillingStats.png │ ├── GrandCentralBoardTests.ImageWidgetSnapshotTests │ │ ├── testViewWithCatImageAndCustomHeader.png │ │ ├── testViewWithCatImageAndCustomHeaderWithoutSubtitle.png │ │ ├── testViewWithCatImageAndNoHeader.png │ │ ├── testViewWithFailureAndCustomHeader.png │ │ └── testViewWithFailureAndNoHeader.png │ ├── GrandCentralBoardTests.MessageBubbleViewSnapshotTests │ │ ├── testMessageBubbleLongText.png │ │ ├── testMessageBubbleMediumText.png │ │ └── testMessageBubbleShortText.png │ ├── GrandCentralBoardTests.WatchWidgetSnapshotTests │ │ ├── testWidgetShowsErrorOnCalendarNameFailure.png │ │ └── testWidgetShowsErrorOnEventsFailure.png │ ├── GrandCentralBoardTests.WatchWidgetViewModelTests │ │ ├── testEventStartingIn1Minute.png │ │ ├── testEventStartingIn55Minutes.png │ │ ├── testEventStartingIn5Minutes.png │ │ ├── testEventStartingIn60Minutes.png │ │ ├── testEventStartingIn6Minutes.png │ │ └── testEventStartingNow.png │ ├── GrandCentralBoardTests.WebsiteAnalyticsWidgetSnapshotTests │ │ ├── testWidgetShowsData.png │ │ ├── testWidgetShowsErrorWhenError.png │ │ ├── testWidgetShowsErrorWhenInterlacingWithNoDataState.png │ │ └── testWidgetShowsErrorWhenNoData.png │ └── GrandCentralBoardTests.WidgetTemplateViewTests │ │ ├── testConfigureForErrorWithDefaultIcon.png │ │ ├── testConfigureForErrorWithoutIcon.png │ │ ├── testConfigureLayoutMultipleTimes.png │ │ ├── testConfigureMultipleTimes.png │ │ ├── testContentViewMargin.png │ │ ├── testDefaultLayout.png │ │ ├── testDisplayingContentUnderHeader.png │ │ └── testMixedContentViewMargin.png ├── TestError.swift ├── WatchWidgetViewModelTests.swift ├── WebsiteAnalyticsWidgetSnapshotTests.swift └── Widgets │ ├── Bonus │ ├── BonusSceneTests.swift │ ├── PeopleWithBonusesFetchControllerTests.swift │ ├── UpdateTests.swift │ └── UpdatesTests.json │ ├── GitHub │ ├── GitHubCellSnapshotTests.swift │ ├── GitHubDataProviderTests.swift │ ├── GitHubWidgetSnapshotTests.swift │ ├── pull_requests.json │ └── repos.json │ ├── Harvest │ ├── BillingProjectListTests.swift │ ├── CircleChartViewTests.swift │ ├── DailyBillingStatsTests.swift │ ├── Fixtures │ │ ├── BillingProjectList.json │ │ ├── DailyBillingStats.json │ │ └── NSBundle+LoadJSON.swift │ ├── HarvestWidgetSnapshotTests.swift │ ├── HarvestWidgetViewModelTests.swift │ └── HarvestWidgetViewSnapshotTests.swift │ ├── Image │ ├── ImageWidgetSnapshotTests.swift │ └── cat.jpeg │ ├── Slack │ ├── MessageBubbleViewSnapshotTests.swift │ ├── SlackSourceTests.swift │ └── SlackTimestampParseTests.swift │ ├── Watch │ └── WatchWidgetSnapshotTests.swift │ └── WebsiteAnalytics │ ├── GoogleAnalyticsDataProviderTests.swift │ └── PageViewsSourceTests.swift ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Alamofire.swift │ │ ├── Download.swift │ │ ├── Error.swift │ │ ├── Manager.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── Stream.swift │ │ ├── Timeline.swift │ │ ├── Upload.swift │ │ └── Validation.swift ├── Decodable │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Castable.swift │ │ ├── Decodable.h │ │ ├── Decodable.swift │ │ ├── DecodingError.swift │ │ ├── NSValueCastable.swift │ │ ├── Operators.swift │ │ ├── Overloads.swift │ │ ├── Parse.swift │ │ └── RawRepresentableDecodable.swift ├── FBSnapshotTestCase │ ├── FBSnapshotTestCase │ │ ├── Categories │ │ │ ├── UIApplication+StrictKeyWindow.h │ │ │ ├── UIApplication+StrictKeyWindow.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ ├── UIImage+Diff.m │ │ │ ├── UIImage+Snapshot.h │ │ │ └── UIImage+Snapshot.m │ │ ├── FBSnapshotTestCase.h │ │ ├── FBSnapshotTestCase.m │ │ ├── FBSnapshotTestCasePlatform.h │ │ ├── FBSnapshotTestCasePlatform.m │ │ ├── FBSnapshotTestController.h │ │ ├── FBSnapshotTestController.m │ │ └── SwiftSupport.swift │ ├── LICENSE │ └── README.md ├── GCBCore │ ├── GCBCore │ │ ├── Configuration │ │ │ ├── Configuration.swift │ │ │ ├── ConfigurationDownloader.swift │ │ │ ├── ConfigurationRefresher.swift │ │ │ ├── LocalConfigurationLoader.swift │ │ │ └── WidgetSettings.swift │ │ ├── DataDownloader.swift │ │ ├── Extensions │ │ │ ├── ErrorType.swift │ │ │ ├── UIAlertController.swift │ │ │ ├── UILabel.swift │ │ │ ├── UIView.swift │ │ │ └── UIViewController.swift │ │ ├── GrandCentralBoardController.swift │ │ ├── Job.swift │ │ ├── Models │ │ │ ├── Source.swift │ │ │ └── Timed.swift │ │ ├── Rendering.swift │ │ ├── Result.swift │ │ ├── Scheduler.swift │ │ ├── Views │ │ │ └── AutoStack.swift │ │ └── Widget.swift │ ├── LICENSE │ └── README.md ├── Local Podspecs │ ├── FBSnapshotTestCase.podspec.json │ ├── GCBCore.podspec.json │ ├── GCBUtilities.podspec.json │ └── SlackKit.podspec.json ├── MD5 │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── BytesSequence.swift │ │ ├── Generics.swift │ │ ├── Hash.swift │ │ ├── HashProtocol.swift │ │ ├── IntExtension.swift │ │ ├── MD5.swift │ │ ├── NSData+Extension.swift │ │ └── Utils.swift ├── Manifest.lock ├── Moya │ ├── License.md │ ├── Readme.md │ └── Source │ │ ├── Endpoint.swift │ │ ├── Error.swift │ │ ├── Image.swift │ │ ├── Moya+Alamofire.swift │ │ ├── Moya.swift │ │ ├── Plugin.swift │ │ ├── Plugins │ │ ├── CredentialsPlugin.swift │ │ ├── NetworkActivityPlugin.swift │ │ └── NetworkLoggerPlugin.swift │ │ ├── Response.swift │ │ └── RxSwift │ │ ├── Moya+RxSwift.swift │ │ └── Observable+Moya.swift ├── Nimble │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ └── Nimble │ │ ├── Adapters │ │ ├── AdapterProtocols.swift │ │ ├── AssertionDispatcher.swift │ │ ├── AssertionRecorder.swift │ │ ├── NimbleEnvironment.swift │ │ ├── NimbleXCTestHandler.swift │ │ └── ObjectiveC │ │ │ ├── CurrentTestCaseTracker.h │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBExpectation.swift │ │ │ ├── NMBObjCMatcher.swift │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ │ ├── DSL+Wait.swift │ │ ├── DSL.swift │ │ ├── Expectation.swift │ │ ├── Expression.swift │ │ ├── FailureMessage.swift │ │ ├── Matchers │ │ ├── AllPass.swift │ │ ├── AsyncMatcherWrapper.swift │ │ ├── BeAKindOf.swift │ │ ├── BeAnInstanceOf.swift │ │ ├── BeCloseTo.swift │ │ ├── BeEmpty.swift │ │ ├── BeGreaterThan.swift │ │ ├── BeGreaterThanOrEqualTo.swift │ │ ├── BeIdenticalTo.swift │ │ ├── BeLessThan.swift │ │ ├── BeLessThanOrEqual.swift │ │ ├── BeLogical.swift │ │ ├── BeNil.swift │ │ ├── BeVoid.swift │ │ ├── BeginWith.swift │ │ ├── Contain.swift │ │ ├── EndWith.swift │ │ ├── Equal.swift │ │ ├── HaveCount.swift │ │ ├── Match.swift │ │ ├── MatchError.swift │ │ ├── MatcherFunc.swift │ │ ├── MatcherProtocols.swift │ │ ├── PostNotification.swift │ │ ├── RaisesException.swift │ │ ├── SatisfyAnyOf.swift │ │ └── ThrowError.swift │ │ ├── Nimble.h │ │ └── Utils │ │ ├── Async.swift │ │ ├── Errors.swift │ │ ├── Functional.swift │ │ ├── SourceLocation.swift │ │ └── Stringers.swift ├── OHHTTPStubs │ ├── LICENSE │ ├── OHHTTPStubs │ │ └── Sources │ │ │ ├── Compatibility.h │ │ │ ├── JSON │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ └── OHHTTPStubsResponse+JSON.m │ │ │ ├── NSURLSession │ │ │ ├── NSURLRequest+HTTPBodyTesting.h │ │ │ ├── NSURLRequest+HTTPBodyTesting.m │ │ │ ├── OHHTTPStubs+NSURLSessionConfiguration.m │ │ │ ├── OHHTTPStubsMethodSwizzling.h │ │ │ └── OHHTTPStubsMethodSwizzling.m │ │ │ ├── OHHTTPStubs.h │ │ │ ├── OHHTTPStubs.m │ │ │ ├── OHHTTPStubsResponse.h │ │ │ ├── OHHTTPStubsResponse.m │ │ │ ├── OHPathHelpers │ │ │ ├── OHPathHelpers.h │ │ │ └── OHPathHelpers.m │ │ │ └── Swift │ │ │ └── OHHTTPStubsSwift.swift │ └── README.md ├── Operations │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Core │ │ ├── Shared │ │ │ ├── BlockCondition.swift │ │ │ ├── BlockObserver.swift │ │ │ ├── BlockOperation.swift │ │ │ ├── ComposedOperation.swift │ │ │ ├── DelayOperation.swift │ │ │ ├── ExclusivityManager.swift │ │ │ ├── FunctionalOperations.swift │ │ │ ├── GatedOperation.swift │ │ │ ├── Generators.swift │ │ │ ├── GroupOperation.swift │ │ │ ├── Logging.swift │ │ │ ├── LoggingObserver.swift │ │ │ ├── MutuallyExclusive.swift │ │ │ ├── NegatedCondition.swift │ │ │ ├── NoFailedDependenciesCondition.swift │ │ │ ├── Operation.swift │ │ │ ├── OperationCondition.swift │ │ │ ├── OperationObserver.swift │ │ │ ├── OperationQueue.swift │ │ │ ├── Profiler.swift │ │ │ ├── Repeatable.swift │ │ │ ├── RepeatedOperation.swift │ │ │ ├── ResultInjection.swift │ │ │ ├── RetryOperation.swift │ │ │ ├── SlientCondition.swift │ │ │ ├── Support.swift │ │ │ ├── ThreadSafety.swift │ │ │ └── TimeoutObserver.swift │ │ └── iOS │ │ │ ├── AlertOperation.swift │ │ │ ├── BackgroundObserver.swift │ │ │ ├── NetworkObserver.swift │ │ │ └── UIOperation.swift │ │ └── Features │ │ ├── Shared │ │ ├── Capability.swift │ │ ├── CloudCapability.swift │ │ ├── CloudKitInterface.swift │ │ ├── CloudKitOperation.swift │ │ ├── CloudKitOperationExtensions.swift │ │ ├── Reachability.swift │ │ ├── ReachabilityCondition.swift │ │ ├── ReachableOperation.swift │ │ └── URLSessionTaskOperation.swift │ │ └── iOS │ │ └── UserConfirmationCondition.swift ├── Pods.xcodeproj │ └── project.pbxproj ├── Result │ ├── LICENSE │ ├── README.md │ └── Result │ │ ├── Result.swift │ │ └── ResultType.swift ├── RxSwift │ ├── LICENSE.md │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.swift │ │ ├── SynchronizedSubscribeType.swift │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── DataStructures │ │ ├── Bag.swift │ │ ├── InfiniteSequence.swift │ │ ├── PriorityQueue.swift │ │ └── Queue.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ ├── AnonymousDisposable.swift │ │ ├── BinaryDisposable.swift │ │ ├── BooleanDisposable.swift │ │ ├── CompositeDisposable.swift │ │ ├── DisposeBag.swift │ │ ├── DisposeBase.swift │ │ ├── NAryDisposable.swift │ │ ├── NopDisposable.swift │ │ ├── RefCountDisposable.swift │ │ ├── ScheduledDisposable.swift │ │ ├── SerialDisposable.swift │ │ ├── SingleAssignmentDisposable.swift │ │ ├── StableCompositeDisposable.swift │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ └── String+Rx.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Observable+Extensions.swift │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── Implementations │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AnonymousObservable.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+CollectionType.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── Concat.swift │ │ │ ├── ConnectableObservable.swift │ │ │ ├── Debug.swift │ │ │ ├── Deferred.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── Generate.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── ObserveOnSerialDispatchQueue.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── RefCount.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplay1.swift │ │ │ ├── ShareReplay1WhileConnected.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+CollectionType.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ ├── Observable+Aggregate.swift │ │ ├── Observable+Binding.swift │ │ ├── Observable+Concurrency.swift │ │ ├── Observable+Creation.swift │ │ ├── Observable+Debug.swift │ │ ├── Observable+Multiple.swift │ │ ├── Observable+Single.swift │ │ ├── Observable+StandardSequenceOperators.swift │ │ └── Observable+Time.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Platform │ │ ├── Platform.Darwin.swift │ │ └── Platform.Linux.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── DispatchQueueSchedulerQOS.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── ImmediateScheduler.swift │ │ ├── Internal │ │ │ ├── AnonymousInvocable.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── ScheduledItem.swift │ │ │ └── ScheduledItemType.swift │ │ ├── MainScheduler.swift │ │ ├── OperationQueueScheduler.swift │ │ ├── RecursiveScheduler.swift │ │ ├── SchedulerServices+Emulation.swift │ │ ├── SerialDispatchQueueScheduler.swift │ │ ├── VirtualTimeConverterType.swift │ │ └── VirtualTimeScheduler.swift │ │ └── Subjects │ │ ├── BehaviorSubject.swift │ │ ├── PublishSubject.swift │ │ ├── ReplaySubject.swift │ │ ├── SubjectType.swift │ │ └── Variable.swift ├── SlackKit │ ├── LICENSE │ ├── README.md │ └── SlackKit │ │ └── Sources │ │ ├── Attachment.swift │ │ ├── Bot.swift │ │ ├── Channel.swift │ │ ├── Client.swift │ │ ├── ClientExtensions.swift │ │ ├── Event.swift │ │ ├── EventDelegate.swift │ │ ├── EventDispatcher.swift │ │ ├── EventHandler.swift │ │ ├── File.swift │ │ ├── Message.swift │ │ ├── NetworkInterface.swift │ │ ├── SlackWebAPI.swift │ │ ├── SlackWebAPIErrorDispatcher.swift │ │ ├── Team.swift │ │ ├── Types.swift │ │ ├── User.swift │ │ └── UserGroup.swift ├── Starscream │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── SSLSecurity.swift │ │ └── WebSocket.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── Decodable │ ├── Decodable-dummy.m │ ├── Decodable-prefix.pch │ ├── Decodable-umbrella.h │ ├── Decodable.modulemap │ ├── Decodable.xcconfig │ └── Info.plist │ ├── FBSnapshotTestCase │ ├── FBSnapshotTestCase-dummy.m │ ├── FBSnapshotTestCase-prefix.pch │ ├── FBSnapshotTestCase-umbrella.h │ ├── FBSnapshotTestCase.modulemap │ ├── FBSnapshotTestCase.xcconfig │ └── Info.plist │ ├── GCBCore │ ├── GCBCore-dummy.m │ ├── GCBCore-prefix.pch │ ├── GCBCore-umbrella.h │ ├── GCBCore.modulemap │ ├── GCBCore.xcconfig │ └── Info.plist │ ├── GCBUtilities │ ├── GCBUtilities-dummy.m │ ├── GCBUtilities-prefix.pch │ ├── GCBUtilities-umbrella.h │ ├── GCBUtilities.modulemap │ ├── GCBUtilities.xcconfig │ ├── Info.plist │ └── ResourceBundle-GCBUtilities-Info.plist │ ├── MD5 │ ├── Info.plist │ ├── MD5-dummy.m │ ├── MD5-prefix.pch │ ├── MD5-umbrella.h │ ├── MD5.modulemap │ └── MD5.xcconfig │ ├── Moya │ ├── Info.plist │ ├── Moya-dummy.m │ ├── Moya-prefix.pch │ ├── Moya-umbrella.h │ ├── Moya.modulemap │ └── Moya.xcconfig │ ├── Nimble │ ├── Info.plist │ ├── Nimble-dummy.m │ ├── Nimble-prefix.pch │ ├── Nimble-umbrella.h │ ├── Nimble.modulemap │ └── Nimble.xcconfig │ ├── OHHTTPStubs │ ├── Info.plist │ ├── OHHTTPStubs-dummy.m │ ├── OHHTTPStubs-prefix.pch │ ├── OHHTTPStubs-umbrella.h │ ├── OHHTTPStubs.modulemap │ └── OHHTTPStubs.xcconfig │ ├── Operations │ ├── Info.plist │ ├── Operations-dummy.m │ ├── Operations-prefix.pch │ ├── Operations-umbrella.h │ ├── Operations.modulemap │ └── Operations.xcconfig │ ├── Pods-GrandCentralBoard │ ├── Info.plist │ ├── Pods-GrandCentralBoard-acknowledgements.markdown │ ├── Pods-GrandCentralBoard-acknowledgements.plist │ ├── Pods-GrandCentralBoard-dummy.m │ ├── Pods-GrandCentralBoard-frameworks.sh │ ├── Pods-GrandCentralBoard-resources.sh │ ├── Pods-GrandCentralBoard-umbrella.h │ ├── Pods-GrandCentralBoard.debug.xcconfig │ ├── Pods-GrandCentralBoard.modulemap │ └── Pods-GrandCentralBoard.release.xcconfig │ ├── Pods-GrandCentralBoardTests │ ├── Info.plist │ ├── Pods-GrandCentralBoardTests-acknowledgements.markdown │ ├── Pods-GrandCentralBoardTests-acknowledgements.plist │ ├── Pods-GrandCentralBoardTests-dummy.m │ ├── Pods-GrandCentralBoardTests-frameworks.sh │ ├── Pods-GrandCentralBoardTests-resources.sh │ ├── Pods-GrandCentralBoardTests-umbrella.h │ ├── Pods-GrandCentralBoardTests.debug.xcconfig │ ├── Pods-GrandCentralBoardTests.modulemap │ └── Pods-GrandCentralBoardTests.release.xcconfig │ ├── Result │ ├── Info.plist │ ├── Result-dummy.m │ ├── Result-prefix.pch │ ├── Result-umbrella.h │ ├── Result.modulemap │ └── Result.xcconfig │ ├── RxSwift │ ├── Info.plist │ ├── RxSwift-dummy.m │ ├── RxSwift-prefix.pch │ ├── RxSwift-umbrella.h │ ├── RxSwift.modulemap │ └── RxSwift.xcconfig │ ├── SlackKit │ ├── Info.plist │ ├── SlackKit-dummy.m │ ├── SlackKit-prefix.pch │ ├── SlackKit-umbrella.h │ ├── SlackKit.modulemap │ └── SlackKit.xcconfig │ └── Starscream │ ├── Info.plist │ ├── Starscream-dummy.m │ ├── Starscream-prefix.pch │ ├── Starscream-umbrella.h │ ├── Starscream.modulemap │ └── Starscream.xcconfig ├── README.md ├── README ├── appletv941.png ├── diagram.png ├── imageIB.jpg ├── plist_configuration.png └── screenshot.png ├── TUTORIAL.md ├── configuration.json └── scripts └── travis-script.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/.travis.yml -------------------------------------------------------------------------------- /GCBCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore.podspec -------------------------------------------------------------------------------- /GCBCore/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Configuration/Configuration.swift -------------------------------------------------------------------------------- /GCBCore/Configuration/ConfigurationDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Configuration/ConfigurationDownloader.swift -------------------------------------------------------------------------------- /GCBCore/Configuration/ConfigurationRefresher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Configuration/ConfigurationRefresher.swift -------------------------------------------------------------------------------- /GCBCore/Configuration/LocalConfigurationLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Configuration/LocalConfigurationLoader.swift -------------------------------------------------------------------------------- /GCBCore/Configuration/WidgetSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Configuration/WidgetSettings.swift -------------------------------------------------------------------------------- /GCBCore/DataDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/DataDownloader.swift -------------------------------------------------------------------------------- /GCBCore/Extensions/ErrorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Extensions/ErrorType.swift -------------------------------------------------------------------------------- /GCBCore/Extensions/UIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Extensions/UIAlertController.swift -------------------------------------------------------------------------------- /GCBCore/Extensions/UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Extensions/UILabel.swift -------------------------------------------------------------------------------- /GCBCore/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Extensions/UIView.swift -------------------------------------------------------------------------------- /GCBCore/Extensions/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Extensions/UIViewController.swift -------------------------------------------------------------------------------- /GCBCore/GrandCentralBoardController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/GrandCentralBoardController.swift -------------------------------------------------------------------------------- /GCBCore/Job.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Job.swift -------------------------------------------------------------------------------- /GCBCore/Models/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Models/Source.swift -------------------------------------------------------------------------------- /GCBCore/Models/Timed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Models/Timed.swift -------------------------------------------------------------------------------- /GCBCore/Rendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Rendering.swift -------------------------------------------------------------------------------- /GCBCore/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Result.swift -------------------------------------------------------------------------------- /GCBCore/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Scheduler.swift -------------------------------------------------------------------------------- /GCBCore/Views/AutoStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Views/AutoStack.swift -------------------------------------------------------------------------------- /GCBCore/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBCore/Widget.swift -------------------------------------------------------------------------------- /GCBUtilities.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities.podspec -------------------------------------------------------------------------------- /GCBUtilities/Extensions/NSBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Extensions/NSBundle.swift -------------------------------------------------------------------------------- /GCBUtilities/Extensions/NSDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Extensions/NSDate.swift -------------------------------------------------------------------------------- /GCBUtilities/Extensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Extensions/UIColor.swift -------------------------------------------------------------------------------- /GCBUtilities/Resources/gcb-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Resources/gcb-error-icon.png -------------------------------------------------------------------------------- /GCBUtilities/Utilities/AccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Utilities/AccessToken.swift -------------------------------------------------------------------------------- /GCBUtilities/Utilities/GoogleAPIDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Utilities/GoogleAPIDataProvider.swift -------------------------------------------------------------------------------- /GCBUtilities/Utilities/GoogleTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Utilities/GoogleTokenProvider.swift -------------------------------------------------------------------------------- /GCBUtilities/Utilities/LabelWithSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Utilities/LabelWithSpacing.swift -------------------------------------------------------------------------------- /GCBUtilities/Utilities/NetworkRequestManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Utilities/NetworkRequestManager.swift -------------------------------------------------------------------------------- /GCBUtilities/Views/WidgetTemplateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Views/WidgetTemplateView.swift -------------------------------------------------------------------------------- /GCBUtilities/Views/WidgetTemplateView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GCBUtilities/Views/WidgetTemplateView.xib -------------------------------------------------------------------------------- /GrandCentralBoard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GrandCentralBoard.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrandCentralBoard.xcodeproj/xcshareddata/xcschemes/GrandCentralBoard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard.xcodeproj/xcshareddata/xcschemes/GrandCentralBoard.xcscheme -------------------------------------------------------------------------------- /GrandCentralBoard.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrandCentralBoard/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/AppDelegate.swift -------------------------------------------------------------------------------- /GrandCentralBoard/App/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/App/Assets/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Assets/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/App/Assets/Assets.xcassets/LaunchImage.launchimage/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Assets/Assets.xcassets/LaunchImage.launchimage/launch.png -------------------------------------------------------------------------------- /GrandCentralBoard/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GrandCentralBoard/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Info.plist -------------------------------------------------------------------------------- /GrandCentralBoard/App/Storyboards.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/Storyboards.swift -------------------------------------------------------------------------------- /GrandCentralBoard/App/ViewControllers/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/App/ViewControllers/MainViewController.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Extensions/Alamofire+NetworkRequestManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Extensions/Alamofire+NetworkRequestManager.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Extensions/Moya.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Extensions/Moya.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Extensions/NSDate+GrandCentralBoard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Extensions/NSDate+GrandCentralBoard.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Extensions/NSThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Extensions/NSThread.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Extensions/String.swift -------------------------------------------------------------------------------- /GrandCentralBoard/NSBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/NSBundle.swift -------------------------------------------------------------------------------- /GrandCentralBoard/NSDate+StringWithFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/NSDate+StringWithFormat.swift -------------------------------------------------------------------------------- /GrandCentralBoard/NSProcessInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/NSProcessInfo.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Podfile -------------------------------------------------------------------------------- /GrandCentralBoard/String+Localized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/String+Localized.swift -------------------------------------------------------------------------------- /GrandCentralBoard/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/UIColor.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/BonusModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/BonusModels.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/BonusWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/BonusWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/BonusWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/BonusWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/BonuslyRequestTemplates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/BonuslyRequestTemplates.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Extensions/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Extensions/Array.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Extensions/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Extensions/CGRect.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Extensions/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Extensions/Dictionary.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Extensions/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Extensions/Range.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Extensions/UIImage.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/PaginatableRequestTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/PaginatableRequestTemplate.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/RequestBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/RequestBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/RequestSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/RequestSender.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/RequestSenderConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/RequestSenderConfiguration.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/RequestTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/RequestTemplate.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Scene/BonusScene.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Scene/BonusScene.sks -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Scene/BonusScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Scene/BonusScene.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Scene/Bubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Scene/Bubble.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Scene/BubbleScalingAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Scene/BubbleScalingAnimator.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Server/bonusly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Server/bonusly.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Server/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Server/configuration.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Source/BonusSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Source/BonusSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/Source/PeopleWithBonusesFetchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/Source/PeopleWithBonusesFetchController.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/TimestampableRequestTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/TimestampableRequestTemplate.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/View/BonusWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/View/BonusWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/View/BonusWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/View/BonusWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/View/BonusWidgetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/View/BonusWidgetViewModel.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Bonus/WrappingRequestTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Bonus/WrappingRequestTemplate.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/Assets.xcassets/no_pr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/Assets.xcassets/no_pr.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/Assets.xcassets/no_pr.imageset/rock_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/Assets.xcassets/no_pr.imageset/rock_on.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubCell.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubDataProvider.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubTableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubTableDataSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/GitHubWidgetSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/GitHubWidgetSettings.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/Model/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/Model/Repository.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/View/EllipseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/View/EllipseView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/View/GitHubCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/View/GitHubCell.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/View/GitHubWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/View/GitHubWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/View/GitHubWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/View/GitHubWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/GitHub/View/NoOpenPRPlaceholder.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/GitHub/View/NoOpenPRPlaceholder.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/AccessTokenFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/AccessTokenFetcher.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/BillingProjectList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/BillingProjectList.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/BillingProjectListFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/BillingProjectListFetcher.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/BillingStatsFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/BillingStatsFetcher.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/BillingStatsGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/BillingStatsGroup.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/DailyBillingStats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/DailyBillingStats.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/DailyBillingStatsFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/DailyBillingStatsFetcher.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/DailyUserBillingStatsFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/DailyUserBillingStatsFetcher.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/HarvestAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/HarvestAPI.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/HarvestSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/HarvestSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/HarvestWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/HarvestWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/HarvestWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/HarvestWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/HarvestWidgetSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/HarvestWidgetSettings.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/TokenRefreshCredentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/TokenRefreshCredentials.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/UIColor+BillingColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/UIColor+BillingColor.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/View/CircleChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/View/CircleChartView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/View/CircleChartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/View/CircleChartViewModel.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/View/CircleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/View/CircleView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/View/HarvestWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/View/HarvestWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Harvest/View/HarvestWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Harvest/View/HarvestWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/ImageWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/ImageWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/ImageWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/ImageWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/ImageWidgetConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/ImageWidgetConfiguration.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/Source/RemoteImageSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/Source/RemoteImageSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/View/ImageWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/View/ImageWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Image/View/ImageWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Image/View/ImageWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/Assets.xcassets/default_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/Assets.xcassets/default_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/Assets.xcassets/message_bubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/Assets.xcassets/message_bubble.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/AvatarProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/AvatarProvider.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/Slack+DataProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/Slack+DataProviding.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackAvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackAvatarView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackMessage.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackMessagesWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackMessagesWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/SlackWidgetSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/SlackWidgetSettings.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/String+SlackTimestampParsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/String+SlackTimestampParsing.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/View/MessageBubbleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/View/MessageBubbleView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/View/SlackWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/View/SlackWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/View/SlackWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/View/SlackWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Slack/View/SlackWidgetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Slack/View/SlackWidgetViewModel.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/1.imageset/1.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/1.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/10.imageset/10.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/10.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/11.imageset/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/11.imageset/11.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/11.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/12.imageset/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/12.imageset/12.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/12.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/2.imageset/2.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/2.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/3.imageset/3.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/3.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/4.imageset/4.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/4.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/5.imageset/5.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/5.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/6.imageset/6.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/6.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/7.imageset/7.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/7.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/8.imageset/8.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/8.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/9.imageset/9.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/9.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/Contents.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/background.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/background2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Assets.xcassets/Watch/back.imageset/background2x.png -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/GoogleCalendarWatchWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/GoogleCalendarWatchWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Server/Calendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Server/Calendar.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Server/GoogleCalendarDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Server/GoogleCalendarDataProvider.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Server/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Server/calendar.json -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/CalendarNameSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/CalendarNameSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/Event.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/EventsSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/EventsSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/JSONCalendarDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/JSONCalendarDataProvider.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/SourceSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/SourceSettings.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/Source/TimeSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/Source/TimeSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/View/FlashingAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/View/FlashingAnimationController.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/View/WatchWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/View/WatchWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/View/WatchWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/View/WatchWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/WatchWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/WatchWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/WatchWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/WatchWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/Watch/WatchWidgetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/Watch/WatchWidgetViewModel.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/AnalyticsReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/AnalyticsReport.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/BlogPostsPopularityWidgetBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/BlogPostsPopularityWidgetBuilder.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/GoogleAnalyticsDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/GoogleAnalyticsDataProvider.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/PageViewsRowReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/PageViewsRowReport.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/PageViewsSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/PageViewsSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/EmptyHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/EmptyHeaderView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/HeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/HeaderCell.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableDataSource.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewCell.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewCell.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewHeaderView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableViewHeaderView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableWidgetView.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableWidgetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/View/TableWidgetView.xib -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/WebsiteAnalyticsSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/WebsiteAnalyticsSettings.swift -------------------------------------------------------------------------------- /GrandCentralBoard/Widgets/WebsiteAnalytics/WebsiteAnalyticsWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoard/Widgets/WebsiteAnalytics/WebsiteAnalyticsWidget.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/.swiftlint.yml -------------------------------------------------------------------------------- /GrandCentralBoardTests/APIDataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/APIDataProviderTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/BillableDatesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/BillableDatesTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/BonusWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/BonusWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/CalendarDataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/CalendarDataProviderTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/AutoStackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/AutoStackTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/ConfigurationRefresherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/ConfigurationRefresherTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/ConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/ConfigurationTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/Files/configurationBroken.json: -------------------------------------------------------------------------------- 1 | { 2 | "bloop": [ ] 3 | } -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/Files/configurationBrokenJSON.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/Files/configurationCorrect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/Files/configurationCorrect.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/GrandCentralBoardTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/GrandCentralBoardTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/SchedulerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/SchedulerTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Core/WidgetTemplateViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Core/WidgetTemplateViewTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Info.plist -------------------------------------------------------------------------------- /GrandCentralBoardTests/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/TestError.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/WatchWidgetViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/WatchWidgetViewModelTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/WebsiteAnalyticsWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/WebsiteAnalyticsWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Bonus/BonusSceneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Bonus/BonusSceneTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Bonus/PeopleWithBonusesFetchControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Bonus/PeopleWithBonusesFetchControllerTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Bonus/UpdateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Bonus/UpdateTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Bonus/UpdatesTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Bonus/UpdatesTests.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/GitHub/GitHubCellSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/GitHub/GitHubCellSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/GitHub/GitHubDataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/GitHub/GitHubDataProviderTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/GitHub/GitHubWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/GitHub/GitHubWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/GitHub/pull_requests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/GitHub/pull_requests.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/GitHub/repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/GitHub/repos.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/BillingProjectListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/BillingProjectListTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/CircleChartViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/CircleChartViewTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/DailyBillingStatsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/DailyBillingStatsTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/Fixtures/BillingProjectList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/Fixtures/BillingProjectList.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/Fixtures/DailyBillingStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/Fixtures/DailyBillingStats.json -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/Fixtures/NSBundle+LoadJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/Fixtures/NSBundle+LoadJSON.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetViewModelTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetViewSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Harvest/HarvestWidgetViewSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Image/ImageWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Image/ImageWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Image/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Image/cat.jpeg -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Slack/MessageBubbleViewSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Slack/MessageBubbleViewSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Slack/SlackSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Slack/SlackSourceTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Slack/SlackTimestampParseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Slack/SlackTimestampParseTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/Watch/WatchWidgetSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/Watch/WatchWidgetSnapshotTests.swift -------------------------------------------------------------------------------- /GrandCentralBoardTests/Widgets/WebsiteAnalytics/PageViewsSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/GrandCentralBoardTests/Widgets/WebsiteAnalytics/PageViewsSourceTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Download.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Error.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Manager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Stream.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Upload.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Decodable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/LICENSE -------------------------------------------------------------------------------- /Pods/Decodable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/README.md -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Castable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Castable.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Decodable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Decodable.h -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Decodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Decodable.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/DecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/DecodingError.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/NSValueCastable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/NSValueCastable.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Operators.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Overloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Overloads.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/Parse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/Parse.swift -------------------------------------------------------------------------------- /Pods/Decodable/Sources/RawRepresentableDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Decodable/Sources/RawRepresentableDecodable.swift -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/SwiftSupport.swift -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Configuration/ConfigurationDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Configuration/ConfigurationDownloader.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Configuration/ConfigurationRefresher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Configuration/ConfigurationRefresher.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Configuration/LocalConfigurationLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Configuration/LocalConfigurationLoader.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Configuration/WidgetSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Configuration/WidgetSettings.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/DataDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/DataDownloader.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Extensions/ErrorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Extensions/ErrorType.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Extensions/UIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Extensions/UIAlertController.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Extensions/UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Extensions/UILabel.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Extensions/UIView.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Extensions/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Extensions/UIViewController.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/GrandCentralBoardController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/GrandCentralBoardController.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Job.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Job.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Models/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Models/Source.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Models/Timed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Models/Timed.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Rendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Rendering.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Result.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Scheduler.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Views/AutoStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Views/AutoStack.swift -------------------------------------------------------------------------------- /Pods/GCBCore/GCBCore/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/GCBCore/Widget.swift -------------------------------------------------------------------------------- /Pods/GCBCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/LICENSE -------------------------------------------------------------------------------- /Pods/GCBCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/GCBCore/README.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/FBSnapshotTestCase.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Local Podspecs/FBSnapshotTestCase.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GCBCore.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Local Podspecs/GCBCore.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GCBUtilities.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Local Podspecs/GCBUtilities.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/SlackKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Local Podspecs/SlackKit.podspec.json -------------------------------------------------------------------------------- /Pods/MD5/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/LICENSE.md -------------------------------------------------------------------------------- /Pods/MD5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/README.md -------------------------------------------------------------------------------- /Pods/MD5/Sources/BytesSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/BytesSequence.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/Generics.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/Hash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/Hash.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/HashProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/HashProtocol.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/IntExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/IntExtension.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/MD5.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/NSData+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/NSData+Extension.swift -------------------------------------------------------------------------------- /Pods/MD5/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/MD5/Sources/Utils.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Moya/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/License.md -------------------------------------------------------------------------------- /Pods/Moya/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Readme.md -------------------------------------------------------------------------------- /Pods/Moya/Source/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Endpoint.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Error.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Image.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Moya+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Moya+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Moya.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Moya.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Plugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Plugins/CredentialsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Plugins/CredentialsPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Plugins/NetworkActivityPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Plugins/NetworkActivityPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Plugins/NetworkLoggerPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Plugins/NetworkLoggerPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/RxSwift/Moya+RxSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/RxSwift/Moya+RxSwift.swift -------------------------------------------------------------------------------- /Pods/Moya/Source/RxSwift/Observable+Moya.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Moya/Source/RxSwift/Observable+Moya.swift -------------------------------------------------------------------------------- /Pods/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Pods/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/LICENSE -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/OHHTTPStubs/README.md -------------------------------------------------------------------------------- /Pods/Operations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/LICENSE -------------------------------------------------------------------------------- /Pods/Operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/README.md -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/BlockCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/BlockCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/BlockObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/BlockObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/BlockOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/BlockOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/ComposedOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/ComposedOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/DelayOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/DelayOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/ExclusivityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/ExclusivityManager.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/FunctionalOperations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/FunctionalOperations.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/GatedOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/GatedOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Generators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Generators.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/GroupOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/GroupOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Logging.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/LoggingObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/LoggingObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/MutuallyExclusive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/MutuallyExclusive.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/NegatedCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/NegatedCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/NoFailedDependenciesCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/NoFailedDependenciesCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Operation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/OperationCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/OperationCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/OperationObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/OperationObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/OperationQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/OperationQueue.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Profiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Profiler.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Repeatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Repeatable.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/RepeatedOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/RepeatedOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/ResultInjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/ResultInjection.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/RetryOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/RetryOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/SlientCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/SlientCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/Support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/Support.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/ThreadSafety.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/ThreadSafety.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/Shared/TimeoutObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/Shared/TimeoutObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/iOS/AlertOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/iOS/AlertOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/iOS/BackgroundObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/iOS/BackgroundObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/iOS/NetworkObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/iOS/NetworkObserver.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Core/iOS/UIOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Core/iOS/UIOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/Capability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/Capability.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/CloudCapability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/CloudCapability.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/CloudKitInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/CloudKitInterface.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/CloudKitOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/CloudKitOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/CloudKitOperationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/CloudKitOperationExtensions.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/Reachability.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/ReachabilityCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/ReachabilityCondition.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/ReachableOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/ReachableOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/Shared/URLSessionTaskOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/Shared/URLSessionTaskOperation.swift -------------------------------------------------------------------------------- /Pods/Operations/Sources/Features/iOS/UserConfirmationCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Operations/Sources/Features/iOS/UserConfirmationCondition.swift -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Result/LICENSE -------------------------------------------------------------------------------- /Pods/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Result/README.md -------------------------------------------------------------------------------- /Pods/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Result/Result/Result.swift -------------------------------------------------------------------------------- /Pods/Result/Result/ResultType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Result/Result/ResultType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/NAryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/NAryDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/StableCompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/StableCompositeDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observable+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Observable+Time.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/DispatchQueueSchedulerQOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/DispatchQueueSchedulerQOS.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/RxSwift/RxSwift/Subjects/Variable.swift -------------------------------------------------------------------------------- /Pods/SlackKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/LICENSE -------------------------------------------------------------------------------- /Pods/SlackKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/README.md -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Attachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Attachment.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Bot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Bot.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Channel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Channel.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Client.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/ClientExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/ClientExtensions.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Event.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/EventDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/EventDelegate.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/EventDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/EventDispatcher.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/EventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/EventHandler.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/File.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Message.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/NetworkInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/NetworkInterface.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/SlackWebAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/SlackWebAPI.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/SlackWebAPIErrorDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/SlackWebAPIErrorDispatcher.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Team.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Team.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/Types.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/User.swift -------------------------------------------------------------------------------- /Pods/SlackKit/SlackKit/Sources/UserGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/SlackKit/SlackKit/Sources/UserGroup.swift -------------------------------------------------------------------------------- /Pods/Starscream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Starscream/LICENSE -------------------------------------------------------------------------------- /Pods/Starscream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Starscream/README.md -------------------------------------------------------------------------------- /Pods/Starscream/Source/SSLSecurity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Starscream/Source/SSLSecurity.swift -------------------------------------------------------------------------------- /Pods/Starscream/Source/WebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Starscream/Source/WebSocket.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Decodable-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Decodable-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Decodable-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Decodable-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Decodable-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Decodable-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Decodable.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Decodable.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Decodable.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Decodable.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Decodable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Decodable/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/FBSnapshotTestCase/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/GCBCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/GCBCore-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/GCBCore-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/GCBCore-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/GCBCore-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/GCBCore-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/GCBCore.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/GCBCore.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/GCBCore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/GCBCore.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBCore/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/GCBUtilities-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/GCBUtilities-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/GCBUtilities-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/GCBUtilities-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/GCBUtilities-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/GCBUtilities-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/GCBUtilities.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/GCBUtilities.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/GCBUtilities.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/GCBUtilities.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GCBUtilities/ResourceBundle-GCBUtilities-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/GCBUtilities/ResourceBundle-GCBUtilities-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/MD5-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/MD5-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/MD5-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/MD5-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/MD5-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/MD5-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/MD5.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/MD5.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/MD5/MD5.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/MD5/MD5.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Moya-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Moya-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Moya-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Moya.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Moya/Moya.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Operations-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Operations-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Operations-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Operations-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Operations-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Operations-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Operations.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Operations.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Operations/Operations.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Operations/Operations.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GrandCentralBoard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Pods-GrandCentralBoard/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Pods-GrandCentralBoard/Pods-GrandCentralBoard.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GrandCentralBoardTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Pods-GrandCentralBoardTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Result-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Result-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Result-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Result.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Result/Result.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/RxSwift/RxSwift.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/SlackKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/SlackKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/SlackKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/SlackKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/SlackKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/SlackKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/SlackKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/SlackKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SlackKit/SlackKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/SlackKit/SlackKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Starscream-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Starscream-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Starscream-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Starscream.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Starscream/Starscream.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/Pods/Target Support Files/Starscream/Starscream.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README.md -------------------------------------------------------------------------------- /README/appletv941.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README/appletv941.png -------------------------------------------------------------------------------- /README/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README/diagram.png -------------------------------------------------------------------------------- /README/imageIB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README/imageIB.jpg -------------------------------------------------------------------------------- /README/plist_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README/plist_configuration.png -------------------------------------------------------------------------------- /README/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/README/screenshot.png -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/configuration.json -------------------------------------------------------------------------------- /scripts/travis-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macoscope/GrandCentralBoard/HEAD/scripts/travis-script.sh --------------------------------------------------------------------------------