├── .gitignore ├── .swift-version ├── .travis.yml ├── Cartfile ├── Cartfile.private ├── Example ├── NutriCalc │ ├── NutriCalc.xcodeproj │ │ └── project.pbxproj │ ├── NutriCalc │ │ ├── AppDelegates │ │ │ ├── AppDelegate.swift │ │ │ ├── TestAppDelegate.swift │ │ │ └── main.swift │ │ ├── Info.plist │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ │ ├── Icon-App-60x60@1x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ ├── Icon-App-76x76@3x.png │ │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ │ │ └── ItunesArtwork@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── add.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── add.png │ │ │ │ │ ├── add@2x.png │ │ │ │ │ └── add@3x.png │ │ │ │ └── minus.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── reduce.png │ │ │ │ │ ├── reduce@2x.png │ │ │ │ │ └── reduce@3x.png │ │ │ └── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ ├── Screens │ │ │ ├── ViewController.swift │ │ │ └── ViewModel.swift │ │ └── Store │ │ │ ├── AppEvent.swift │ │ │ ├── AppState.swift │ │ │ └── AppStore.swift │ ├── NutriCalcTests │ │ ├── AppStoreSpec.swift │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock └── Simple-Weather-App │ ├── Podfile │ ├── Podfile.lock │ ├── Simple-Weather-App.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Simple-Weather-App.xcscheme │ ├── Simple-Weather-App │ ├── AppDelegates │ │ ├── AppDelegate.swift │ │ ├── TestAppDelegate.swift │ │ └── main.swift │ ├── Info.plist │ ├── Models │ │ ├── Geoposition.swift │ │ └── Weather.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@1x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-76x76@3x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ │ └── ItunesArtwork@2x.png │ │ │ ├── Contents.json │ │ │ └── service.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── service@3x.png │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── Screens │ │ └── Main │ │ │ ├── ViewController.swift │ │ │ └── ViewModel.swift │ ├── Services │ │ ├── LocationService.swift │ │ └── WeatherService.swift │ ├── Store │ │ ├── AppEvent.swift │ │ ├── AppState+Extensions.swift │ │ ├── AppState.swift │ │ └── AppStore.swift │ └── Views │ │ ├── PagedScrollView.swift │ │ ├── WeatherFeatureCell.swift │ │ ├── WeatherFeatureCell.xib │ │ ├── WeatherView.swift │ │ └── WeatherView.xib │ └── Simple-Weather-AppTests │ ├── Data │ ├── CurrentWeather.json │ ├── Geoposition.json │ └── Weather.json │ ├── Info.plist │ ├── Specs │ ├── AppStoreSpec.swift │ ├── GeopositionSpec.swift │ ├── ViewModelSpec.swift │ └── WeatherSpec.swift │ └── Utils │ └── TestUtils.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Redux-ReactiveSwift-logo.svg ├── Redux-ReactiveSwift.podspec └── Redux-ReactiveSwift ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Carthage-Redux-ReactiveSwift-iOS ├── Carthage_Redux_ReactiveSwift_iOS.h └── Info.plist ├── Carthage-Redux-ReactiveSwift-iOSTests └── Info.plist ├── Carthage-Redux-ReactiveSwift-macOS ├── Carthage_Redux_ReactiveSwift_macOS.h └── Info.plist ├── Carthage-Redux-ReactiveSwift-tvOS ├── Carthage_Redux_ReactiveSwift_tvOS.h └── Info.plist ├── Carthage-Redux-ReactiveSwift-watchOS ├── Carthage_Redux_ReactiveSwift_watchOS.h └── Info.plist ├── Carthage └── Build │ ├── .Nimble.version │ ├── .Quick.version │ ├── .ReactiveCocoa.version │ ├── .ReactiveSwift.version │ ├── .Result.version │ ├── Mac │ ├── Nimble.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Nimble │ ├── Nimble.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Nimble │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── CwlCatchException.h │ │ │ │ ├── CwlMachBadInstructionHandler.h │ │ │ │ ├── CwlPreconditionTesting.h │ │ │ │ ├── DSL.h │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ ├── NMBStringify.h │ │ │ │ ├── Nimble-Swift.h │ │ │ │ └── Nimble.h │ │ │ ├── Modules │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── Nimble │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── Quick.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Quick │ ├── Quick.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Quick │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── Quick │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── ReactiveCocoa.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveCocoa │ ├── ReactiveCocoa.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── ReactiveCocoa │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── ReactiveCocoa-Swift.h │ │ │ │ └── ReactiveCocoa.h │ │ │ ├── Modules │ │ │ │ ├── ReactiveCocoa.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ └── ObjCRuntimeAliases.h │ │ │ ├── ReactiveCocoa │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── ReactiveMapKit.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveMapKit │ ├── ReactiveMapKit.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── ReactiveMapKit │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── ReactiveMapKit-Swift.h │ │ │ ├── Modules │ │ │ │ ├── ReactiveMapKit.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── ReactiveMapKit │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── ReactiveSwift.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveSwift │ ├── ReactiveSwift.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── ReactiveSwift │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── ReactiveSwift-Swift.h │ │ │ │ └── ReactiveSwift.h │ │ │ ├── Modules │ │ │ │ ├── ReactiveSwift.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── ReactiveSwift │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── Result.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Result │ └── Result.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── Result │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── Result-Swift.h │ │ │ └── Result.h │ │ ├── Modules │ │ │ ├── Result.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ └── Info.plist │ │ └── Result │ │ └── Current │ ├── iOS │ ├── 189545F8-50A8-3137-BC85-B80F28C513F8.bcsymbolmap │ ├── 1921CDD1-6AF1-397F-B8D8-F69C13A8DEA0.bcsymbolmap │ ├── 7A849086-121E-3F2B-8598-CF2551840622.bcsymbolmap │ ├── 9E634508-D892-3CA0-A8F9-0AA4ACF65BBD.bcsymbolmap │ ├── DB0870C2-7482-3AAA-B269-31A9BA6682E3.bcsymbolmap │ ├── E39B5B32-E24C-3ED1-B849-E32C63DC078A.bcsymbolmap │ ├── F14D02FA-0F03-3867-B998-ACAC53CA98E5.bcsymbolmap │ ├── F8A2449B-5449-3E7C-A02D-3F70D8FD9561.bcsymbolmap │ ├── Nimble.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Nimble │ ├── Nimble.framework │ │ ├── Headers │ │ │ ├── CwlCatchException.h │ │ │ ├── CwlMachBadInstructionHandler.h │ │ │ ├── CwlPreconditionTesting.h │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBStringify.h │ │ │ ├── Nimble-Swift.h │ │ │ └── Nimble.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Nimble.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── Nimble │ ├── Quick.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Quick │ ├── Quick.framework │ │ ├── Headers │ │ │ ├── QCKDSL.h │ │ │ ├── Quick-Swift.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickSpec.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Quick.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── Quick │ ├── ReactiveCocoa.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveCocoa │ ├── ReactiveCocoa.framework │ │ ├── Headers │ │ │ ├── ReactiveCocoa-Swift.h │ │ │ └── ReactiveCocoa.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveCocoa.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ └── ObjCRuntimeAliases.h │ │ └── ReactiveCocoa │ ├── ReactiveMapKit.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveMapKit │ ├── ReactiveMapKit.framework │ │ ├── Headers │ │ │ └── ReactiveMapKit-Swift.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveMapKit.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── ReactiveMapKit │ ├── ReactiveSwift.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveSwift │ ├── ReactiveSwift.framework │ │ ├── Headers │ │ │ ├── ReactiveSwift-Swift.h │ │ │ └── ReactiveSwift.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveSwift.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── ReactiveSwift │ ├── Result.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Result │ └── Result.framework │ │ ├── Headers │ │ ├── Result-Swift.h │ │ └── Result.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── Result.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ └── Result │ ├── tvOS │ ├── 3FC51C7C-6AE8-3FC2-AAC2-878ADC342BB2.bcsymbolmap │ ├── 7353CFD2-BE25-39E6-AC29-7E4ADABF0659.bcsymbolmap │ ├── E43429E5-9AF3-360D-AB1A-1819D8F768A6.bcsymbolmap │ ├── F74B7442-9E68-34E9-9AFA-E4682ADBE480.bcsymbolmap │ ├── Nimble.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Nimble │ ├── Nimble.framework │ │ ├── Headers │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBStringify.h │ │ │ ├── Nimble-Swift.h │ │ │ └── Nimble.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Nimble.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── Nimble │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── Quick.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Quick │ ├── Quick.framework │ │ ├── Headers │ │ │ ├── QCKDSL.h │ │ │ ├── Quick-Swift.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickSpec.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Quick.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── Quick │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ReactiveCocoa.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveCocoa │ ├── ReactiveCocoa.framework │ │ ├── Headers │ │ │ ├── ReactiveCocoa-Swift.h │ │ │ └── ReactiveCocoa.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveCocoa.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ └── ObjCRuntimeAliases.h │ │ └── ReactiveCocoa │ ├── ReactiveMapKit.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveMapKit │ ├── ReactiveMapKit.framework │ │ ├── Headers │ │ │ └── ReactiveMapKit-Swift.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveMapKit.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── ReactiveMapKit │ ├── ReactiveSwift.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── ReactiveSwift │ ├── ReactiveSwift.framework │ │ ├── Headers │ │ │ ├── ReactiveSwift-Swift.h │ │ │ └── ReactiveSwift.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ReactiveSwift.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── ReactiveSwift │ ├── Result.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Result │ └── Result.framework │ │ ├── Headers │ │ ├── Result-Swift.h │ │ └── Result.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── Result.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ └── Result │ └── watchOS │ ├── 25C828EB-6D4A-30D7-B03F-F1A478492808.bcsymbolmap │ ├── 6193B48D-E08C-3F24-92A7-67C63A9F310C.bcsymbolmap │ ├── 952AB81E-87E9-39F3-A4A3-3E6CD890AB04.bcsymbolmap │ ├── D60DCAE2-1B24-34C6-B5B7-D137C57BEEA2.bcsymbolmap │ ├── ReactiveCocoa.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── ReactiveCocoa │ ├── ReactiveCocoa.framework │ ├── Headers │ │ ├── ReactiveCocoa-Swift.h │ │ └── ReactiveCocoa.h │ ├── Info.plist │ ├── Modules │ │ ├── ReactiveCocoa.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ └── i386.swiftmodule │ │ └── module.modulemap │ ├── PrivateHeaders │ │ └── ObjCRuntimeAliases.h │ └── ReactiveCocoa │ ├── ReactiveMapKit.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── ReactiveMapKit │ ├── ReactiveMapKit.framework │ ├── Headers │ │ └── ReactiveMapKit-Swift.h │ ├── Info.plist │ ├── Modules │ │ ├── ReactiveMapKit.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ └── i386.swiftmodule │ │ └── module.modulemap │ └── ReactiveMapKit │ ├── ReactiveSwift.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── ReactiveSwift │ ├── ReactiveSwift.framework │ ├── Headers │ │ ├── ReactiveSwift-Swift.h │ │ └── ReactiveSwift.h │ ├── Info.plist │ ├── Modules │ │ ├── ReactiveSwift.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ └── i386.swiftmodule │ │ └── module.modulemap │ └── ReactiveSwift │ ├── Result.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── Result │ └── Result.framework │ ├── Headers │ ├── Result-Swift.h │ └── Result.h │ ├── Info.plist │ ├── Modules │ ├── Result.swiftmodule │ │ ├── arm.swiftdoc │ │ ├── arm.swiftmodule │ │ ├── i386.swiftdoc │ │ └── i386.swiftmodule │ └── module.modulemap │ └── Result ├── Classes ├── .gitkeep └── Store.swift ├── CocoaPods-Redux-ReactiveSwift-iOS ├── CocoaPods_Redux_ReactiveSwift_iOS.h └── Info.plist ├── CocoaPods-Redux-ReactiveSwift-iOSTests └── Info.plist ├── CocoaPods-Redux-ReactiveSwift-macOS ├── CocoaPods_Redux_ReactiveSwift_macOS.h └── Info.plist ├── CocoaPods-Redux-ReactiveSwift-tvOS ├── CocoaPods_Redux_ReactiveSwift_tvOS.h └── Info.plist ├── CocoaPods-Redux-ReactiveSwift-watchOS ├── CocoaPods_Redux_ReactiveSwift_watchOS.h └── Info.plist ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── Redux-ReactiveSwift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Carthage-Redux-ReactiveSwift-iOS.xcscheme │ ├── Carthage-Redux-ReactiveSwift-macOS.xcscheme │ ├── Carthage-Redux-ReactiveSwift-tvOS.xcscheme │ └── Carthage-Redux-ReactiveSwift-watchOS.xcscheme ├── Redux-ReactiveSwift.xcworkspace └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── xcschemes │ ├── CocoaPods-Redux-ReactiveSwift-iOS.xcscheme │ ├── CocoaPods-Redux-ReactiveSwift-macOS.xcscheme │ ├── CocoaPods-Redux-ReactiveSwift-tvOS.xcscheme │ └── CocoaPods-Redux-ReactiveSwift-watchOS.xcscheme ├── Tests ├── CallSpy.swift └── StoreSpec.swift └── fastlane └── Fastfile /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | #xcov 25 | .xcov 26 | #scan 27 | test_output 28 | */fastlane/report.xml 29 | */fastlane/README.md 30 | *.xcworkspacedata 31 | xcuserdatad 32 | 33 | Carthage 34 | !Carthage/Build/**/*.framework 35 | # We recommend against adding the Pods directory to your .gitignore. However 36 | # you should judge for yourself, the pros and cons are mentioned at: 37 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 38 | # 39 | # Note: if you ignore the Pods directory, make sure to uncomment 40 | # `pod install` in .travis.yml 41 | # 42 | Pods/ 43 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode10.1 2 | language: swift 3 | before_install: 4 | - bundle install 5 | - cd Redux-ReactiveSwift 6 | - bundle install 7 | - pod repo update 8 | script: 9 | - fastlane ios cocoapods_test 10 | - fastlane ios carthage_test 11 | - cd .. 12 | - bundle exec pod lib lint --verbose 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) -J 'Redux-ReactiveSwift' 15 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveCocoa/ReactiveSwift" ~> 4.0 -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- 1 | github "Quick/Quick" ~> 1.3 2 | github "Quick/Nimble" ~> 7.3.2 3 | github "ReactiveCocoa/ReactiveCocoa" ~> 8.0 -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/AppDelegates/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // NutriCalc 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class AppDelegate: UIResponder, UIApplicationDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 16 | let _ = AppStore.shared 17 | 18 | return true 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/AppDelegates/TestAppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TestAppDelegate.swift 3 | // NutriCalc 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class TestAppDelegate: UIResponder, UIApplicationDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 16 | return true 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/AppDelegates/main.swift: -------------------------------------------------------------------------------- 1 | // 2 | // main.swift 3 | // NutriCalc 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | var appDelegateClassName = 12 | (nil != Bundle.allBundles.first { $0.bundlePath.contains(".xctest") }) ? 13 | NSStringFromClass(TestAppDelegate.self) : 14 | NSStringFromClass(AppDelegate.self) 15 | let argv = UnsafeMutableRawPointer(CommandLine.unsafeArgv).bindMemory(to: UnsafeMutablePointer.self, 16 | capacity: Int(CommandLine.argc)) 17 | UIApplicationMain(CommandLine.argc, argv, nil, appDelegateClassName) 18 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "add@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "add@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/add.imageset/add@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reduce.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "reduce@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "reduce@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce@2x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/NutriCalc/NutriCalc/Resources/Assets.xcassets/minus.imageset/reduce@3x.png -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Store/AppEvent.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppEvent.swift 3 | // NutriCalc 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum AppEvent { 12 | case plusWeight 13 | case minusWeight 14 | case setWeight(weight: Int) 15 | case plusHeight 16 | case minusHeight 17 | case setHeight(height: Int) 18 | case plusAge 19 | case minusAge 20 | case setAge(age: Int) 21 | case setMaleOrFemale(maleOrFemale: Bool) 22 | case setActivityType(activityType: Float) 23 | } 24 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalc/Store/AppState.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppState.swift 3 | // NutriCalc 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct AppState { 12 | var weight: Int 13 | var height: Int 14 | var age: Int 15 | var maleOrFemale: Bool 16 | var activityType: Float 17 | var error: String? 18 | } 19 | 20 | extension AppState { 21 | var dailyCaloriesIntake: Float { 22 | // TODO: 2. implement Harris-Benedict equaion 23 | return (10 * Float(weight) 24 | + 6.25 * Float(height) 25 | - 5 * Float(age) 26 | + Float(maleOrFemale ? 5 : -161)) * activityType 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalcTests/AppStoreSpec.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppStoreSpec.swift 3 | // NutriCalcTests 4 | // 5 | // Created by Petro Korienev on 12/15/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Quick 10 | import Nimble 11 | @testable import NutriCalc 12 | 13 | class AppStoreSpec: QuickSpec { 14 | override func spec() { 15 | describe("reducer") { 16 | it("should work") { 17 | 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/NutriCalc/NutriCalcTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/NutriCalc/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | inhibit_all_warnings! 4 | 5 | def common_pods 6 | pod 'Redux-ReactiveSwift', '~> 0.1.2' # Our Redux library 7 | pod 'ReactiveCocoa', '~> 7.0.1' # ReactiveCocoa has necessary UI bindings 8 | # pod 'ObjectMapper', '3.0.0' # ObjectMapper is for fast from/to JSON transformations 9 | end 10 | 11 | def test_pods 12 | pod 'Quick', '1.2.0' # Quick is BDD-like Specs framework for XCode unit testing 13 | pod 'Nimble', '7.0.3' # Nimble is a set of matchers for XCode unit testing 14 | end 15 | 16 | def app_pods 17 | pod 'SnapKit', '4.0.0' # A Swift Autolayout DSL for iOS & OS X 18 | end 19 | 20 | test_targets = ['NutriCalcTests'] 21 | app_targets = ['NutriCalc'] 22 | 23 | test_targets.each { |targetName| 24 | target targetName do 25 | common_pods 26 | test_pods 27 | end 28 | } 29 | 30 | app_targets.each { |targetName| 31 | target targetName do 32 | common_pods 33 | app_pods 34 | end 35 | } -------------------------------------------------------------------------------- /Example/NutriCalc/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Nimble (7.0.3) 3 | - Quick (1.2.0) 4 | - ReactiveCocoa (7.0.1): 5 | - ReactiveSwift (~> 3.0) 6 | - ReactiveSwift (3.0.0): 7 | - Result (~> 3.2) 8 | - Redux-ReactiveSwift (0.1.2): 9 | - ReactiveSwift (= 3.0.0) 10 | - Result (3.2.4) 11 | - SnapKit (4.0.0) 12 | 13 | DEPENDENCIES: 14 | - Nimble (= 7.0.3) 15 | - Quick (= 1.2.0) 16 | - ReactiveCocoa (~> 7.0.1) 17 | - Redux-ReactiveSwift (~> 0.1.2) 18 | - SnapKit (= 4.0.0) 19 | 20 | SPEC CHECKSUMS: 21 | Nimble: 7f5a9c447a33002645a071bddafbfb24ea70e0ac 22 | Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08 23 | ReactiveCocoa: a1b5d502d0d1534f9a72981a485b297b17127f83 24 | ReactiveSwift: d9fe0db33c1aaabecb092e8de83cf52875c0de6f 25 | Redux-ReactiveSwift: 9af9e3296d9d58b26589cde1bc718295bb394f22 26 | Result: d2d07204ce72856f1fd9130bbe42c35a7b0fea10 27 | SnapKit: a42d492c16e80209130a3379f73596c3454b7694 28 | 29 | PODFILE CHECKSUM: 54c695059c2ff61c924edf99a0d6ec1b3eb3e9dd 30 | 31 | COCOAPODS: 1.3.1 32 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | inhibit_all_warnings! 4 | 5 | def common_pods 6 | pod 'Redux-ReactiveSwift', '~> 0.1.2' # Our Redux library 7 | pod 'ReactiveCocoa', '~> 7.0.1' # ReactiveCocoa has necessary UI bindings 8 | pod 'ObjectMapper', '3.0.0' # ObjectMapper is for fast from/to JSON transformations 9 | end 10 | 11 | def test_pods 12 | pod 'Quick', '1.2.0' # Quick is BDD-like Specs framework for XCode unit testing 13 | pod 'Nimble', '7.0.3' # Nimble is a set of matchers for XCode unit testing 14 | end 15 | 16 | def app_pods 17 | pod 'Alamofire', '4.5.1' # Alamofire is library we will use for network requests 18 | pod 'AlamofireImage', '3.3.0' # To display fancy stuff like weather icons 19 | pod 'SnapKit', '4.0.0' # A Swift Autolayout DSL for iOS & OS X 20 | end 21 | 22 | test_targets = ['Simple-Weather-AppTests'] 23 | app_targets = ['Simple-Weather-App'] 24 | 25 | test_targets.each { |targetName| 26 | target targetName do 27 | common_pods 28 | test_pods 29 | end 30 | } 31 | 32 | app_targets.each { |targetName| 33 | target targetName do 34 | common_pods 35 | app_pods 36 | end 37 | } -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Alamofire (4.5.1) 3 | - AlamofireImage (3.3.0): 4 | - Alamofire (~> 4.5) 5 | - Nimble (7.0.3) 6 | - ObjectMapper (3.0.0) 7 | - Quick (1.2.0) 8 | - ReactiveCocoa (7.0.1): 9 | - ReactiveSwift (~> 3.0) 10 | - ReactiveSwift (3.0.0): 11 | - Result (~> 3.2) 12 | - Redux-ReactiveSwift (0.1.2): 13 | - ReactiveSwift (= 3.0.0) 14 | - Result (3.2.4) 15 | - SnapKit (4.0.0) 16 | 17 | DEPENDENCIES: 18 | - Alamofire (= 4.5.1) 19 | - AlamofireImage (= 3.3.0) 20 | - Nimble (= 7.0.3) 21 | - ObjectMapper (= 3.0.0) 22 | - Quick (= 1.2.0) 23 | - ReactiveCocoa (~> 7.0.1) 24 | - Redux-ReactiveSwift (~> 0.1.2) 25 | - SnapKit (= 4.0.0) 26 | 27 | SPEC CHECKSUMS: 28 | Alamofire: 2d95912bf4c34f164fdfc335872e8c312acaea4a 29 | AlamofireImage: 2e784dc5d00f04903a52c1d169181469c805c3df 30 | Nimble: 7f5a9c447a33002645a071bddafbfb24ea70e0ac 31 | ObjectMapper: 92230db59bf8f341a5c3a3cf0b9fbdde3cf0d87f 32 | Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08 33 | ReactiveCocoa: a1b5d502d0d1534f9a72981a485b297b17127f83 34 | ReactiveSwift: d9fe0db33c1aaabecb092e8de83cf52875c0de6f 35 | Redux-ReactiveSwift: 9af9e3296d9d58b26589cde1bc718295bb394f22 36 | Result: d2d07204ce72856f1fd9130bbe42c35a7b0fea10 37 | SnapKit: a42d492c16e80209130a3379f73596c3454b7694 38 | 39 | PODFILE CHECKSUM: b14c80fb2887cd5bf1b7122342d42866c3250edd 40 | 41 | COCOAPODS: 1.3.1 42 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/AppDelegates/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Simple-Weather-App 4 | // 5 | // Created by Petro Korienev on 10/24/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class AppDelegate: UIResponder, UIApplicationDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 16 | let _ = AppStore.shared 17 | let _ = LocationService.shared 18 | let _ = WeatherService.shared 19 | 20 | AppStore.shared.producer.logEvents().start() 21 | 22 | return true 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/AppDelegates/TestAppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TestAppDelegate.swift 3 | // Simple-Weather-App 4 | // 5 | // Created by Petro Korienev on 11/1/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class TestAppDelegate: UIResponder, UIApplicationDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 16 | return true 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/AppDelegates/main.swift: -------------------------------------------------------------------------------- 1 | // 2 | // main.swift 3 | // Simple-Weather-App 4 | // 5 | // Created by Petro Korienev on 11/1/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | var appDelegateClassName = 12 | (nil != Bundle.allBundles.first { $0.bundlePath.contains(".xctest") }) ? 13 | NSStringFromClass(TestAppDelegate.self) : 14 | NSStringFromClass(AppDelegate.self) 15 | let argv = UnsafeMutableRawPointer(CommandLine.unsafeArgv).bindMemory(to: UnsafeMutablePointer.self, 16 | capacity: Int(CommandLine.argc)) 17 | UIApplicationMain(CommandLine.argc, argv, nil, appDelegateClassName) 18 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSLocationWhenInUseUsageDescription 6 | This app needs Location services to deliver relevant weather information 7 | CFBundleDevelopmentRegion 8 | $(DEVELOPMENT_LANGUAGE) 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/service.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "service@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/service.imageset/service@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Example/Simple-Weather-App/Simple-Weather-App/Resources/Assets.xcassets/service.imageset/service@3x.png -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Store/AppEvent.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppEvent.swift 3 | // Simple-Weather-App 4 | // 5 | // Created by Petro Korienev on 10/30/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum AppEvent { 12 | case locationPermissionResult(success: Bool) 13 | case locationRequest 14 | case locationResult(latitude: Double?, longitude: Double?, timestamp: TimeInterval?, error: Error?) 15 | case geopositionRequest 16 | case geopositionResult(geoposition: Geoposition?, error: Error?) 17 | case weatherRequest 18 | case weatherResult(current: CurrentWeather?, forecast: [Weather]?, error: Error?) 19 | } 20 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-App/Store/AppState.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppState.swift 3 | // Simple-Weather-App 4 | // 5 | // Created by Petro Korienev on 10/30/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum LocationState { 12 | case notYetRequested 13 | case notAvailable 14 | case available 15 | } 16 | 17 | enum LocationRequestState { 18 | case none 19 | case updating 20 | case success(latitude: Double, longitude: Double, timestamp: TimeInterval) 21 | case error(error: Error) 22 | } 23 | 24 | struct AppLocation { 25 | let locationState: LocationState 26 | let locationRequestState: LocationRequestState 27 | } 28 | 29 | enum GeopositionRequestState { 30 | case none 31 | case updating 32 | case success(geoposition: Geoposition) 33 | case error(error: Error) 34 | } 35 | 36 | enum WeatherRequestState { 37 | case none 38 | case updating 39 | case success(currentWeather: CurrentWeather, forecast: [Weather]) 40 | case error(error: Error) 41 | } 42 | 43 | struct AppWeather { 44 | let geopositionRequestState: GeopositionRequestState 45 | let weatherRequestState: WeatherRequestState 46 | } 47 | 48 | struct AppState { 49 | let location: AppLocation 50 | let weather: AppWeather 51 | } 52 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-AppTests/Data/Geoposition.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "Key": "274357", 4 | "Type": "City", 5 | "Rank": 75, 6 | "LocalizedName": "Sao Vicente", 7 | "EnglishName": "Sao Vicente", 8 | "PrimaryPostalCode": "", 9 | "Region": { 10 | "ID": "EUR", 11 | "LocalizedName": "Europe", 12 | "EnglishName": "Europe" 13 | }, 14 | "Country": { 15 | "ID": "PT", 16 | "LocalizedName": "Portugal", 17 | "EnglishName": "Portugal" 18 | }, 19 | "AdministrativeArea": { 20 | "ID": "30", 21 | "LocalizedName": "Madeira", 22 | "EnglishName": "Madeira", 23 | "Level": 1, 24 | "LocalizedType": "Autonomous Region", 25 | "EnglishType": "Autonomous Region", 26 | "CountryID": "PT" 27 | }, 28 | "TimeZone": { 29 | "Code": "WEST", 30 | "Name": "Atlantic/Madeira", 31 | "GmtOffset": 1, 32 | "IsDaylightSaving": true, 33 | "NextOffsetChange": "2017-10-29T01:00:00Z" 34 | }, 35 | "GeoPosition": { 36 | "Latitude": 32.801, 37 | "Longitude": -17.045, 38 | "Elevation": { 39 | "Metric": { 40 | "Value": 119, 41 | "Unit": "m", 42 | "UnitType": 5 43 | }, 44 | "Imperial": { 45 | "Value": 390, 46 | "Unit": "ft", 47 | "UnitType": 0 48 | } 49 | } 50 | }, 51 | "IsAlias": false, 52 | "SupplementalAdminAreas": [ 53 | { 54 | "Level": 2, 55 | "LocalizedName": "Sao Vicente", 56 | "EnglishName": "Sao Vicente" 57 | } 58 | ], 59 | "DataSets": [ 60 | "Alerts" 61 | ] 62 | } -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-AppTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Simple-Weather-App/Simple-Weather-AppTests/Utils/TestUtils.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TestUtils.swift 3 | // Simple-Weather-AppTests 4 | // 5 | // Created by Petro Korienev on 10/26/17. 6 | // Copyright © 2017 Sigma Software. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Bundle { 12 | static var test: Bundle { 13 | return (self.allBundles.first { $0.bundlePath.contains(".xctest") })! 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | source "https://rubygems.org" 3 | 4 | # gem "rails" 5 | gem "fastlane" 6 | gem "cocoapods", '~>1.6' 7 | gem "xcov" 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Petro Korienev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'Redux-ReactiveSwift' 3 | s.version = '0.2.0' 4 | s.summary = 'Simple Redux Store implementation over ReactiveSwift.' 5 | 6 | s.description = <<-DESC 7 | This library focuses on simple implementation of ReduxStore backed by ReactiveSwift mutable property. 8 | Store combines power of Redux's state controlling obviousness with reactive bindings. One can act with the store like with property. 9 | DESC 10 | 11 | s.homepage = 'https://github.com/soxjke/Redux-ReactiveSwift' 12 | s.license = { :type => 'MIT', :file => 'LICENSE' } 13 | s.author = { 'Petro Korienev' => 'soxjke@gmail.com' } 14 | s.source = { :git => 'https://github.com/soxjke/Redux-ReactiveSwift.git', :tag => s.version.to_s } 15 | s.social_media_url = 'https://twitter.com/soxjke' 16 | 17 | s.ios.deployment_target = '9.0' 18 | s.osx.deployment_target = '10.10' 19 | s.watchos.deployment_target = '2.0' 20 | s.tvos.deployment_target = '9.0' 21 | s.source_files = 'Redux-ReactiveSwift/Classes/**/*' 22 | 23 | s.dependency 'ReactiveSwift', '4.0.0' 24 | end 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Cartfile: -------------------------------------------------------------------------------- 1 | ../Cartfile -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Cartfile.private: -------------------------------------------------------------------------------- 1 | ../Cartfile.private -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "v7.3.4" 2 | github "Quick/Quick" "v1.3.4" 3 | github "ReactiveCocoa/ReactiveCocoa" "8.0.2" 4 | github "ReactiveCocoa/ReactiveSwift" "4.0.0" 5 | github "antitypical/Result" "4.1.0" 6 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-iOS/Carthage_Redux_ReactiveSwift_iOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // Carthage_Redux_ReactiveSwift_iOS.h 3 | // Carthage-Redux-ReactiveSwift-iOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for Carthage_Redux_ReactiveSwift_iOS. 11 | FOUNDATION_EXPORT double Carthage_Redux_ReactiveSwift_iOSVersionNumber; 12 | 13 | //! Project version string for Carthage_Redux_ReactiveSwift_iOS. 14 | FOUNDATION_EXPORT const unsigned char Carthage_Redux_ReactiveSwift_iOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-iOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-macOS/Carthage_Redux_ReactiveSwift_macOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // Carthage_Redux_ReactiveSwift_macOS.h 3 | // Carthage-Redux-ReactiveSwift-macOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for Carthage_Redux_ReactiveSwift_macOS. 11 | FOUNDATION_EXPORT double Carthage_Redux_ReactiveSwift_macOSVersionNumber; 12 | 13 | //! Project version string for Carthage_Redux_ReactiveSwift_macOS. 14 | FOUNDATION_EXPORT const unsigned char Carthage_Redux_ReactiveSwift_macOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-macOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-tvOS/Carthage_Redux_ReactiveSwift_tvOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // Carthage_Redux_ReactiveSwift_tvOS.h 3 | // Carthage-Redux-ReactiveSwift-tvOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for Carthage_Redux_ReactiveSwift_tvOS. 11 | FOUNDATION_EXPORT double Carthage_Redux_ReactiveSwift_tvOSVersionNumber; 12 | 13 | //! Project version string for Carthage_Redux_ReactiveSwift_tvOS. 14 | FOUNDATION_EXPORT const unsigned char Carthage_Redux_ReactiveSwift_tvOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-watchOS/Carthage_Redux_ReactiveSwift_watchOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // Carthage_Redux_ReactiveSwift_watchOS.h 3 | // Carthage-Redux-ReactiveSwift-watchOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for Carthage_Redux_ReactiveSwift_watchOS. 11 | FOUNDATION_EXPORT double Carthage_Redux_ReactiveSwift_watchOSVersionNumber; 12 | 13 | //! Project version string for Carthage_Redux_ReactiveSwift_watchOS. 14 | FOUNDATION_EXPORT const unsigned char Carthage_Redux_ReactiveSwift_watchOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage-Redux-ReactiveSwift-watchOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/.Nimble.version: -------------------------------------------------------------------------------- 1 | { 2 | "Mac" : [ 3 | { 4 | "name" : "Nimble", 5 | "hash" : "8394ca4700111d909b3d93567182001973431b47cdc5f41b05bbbbdf1a63c6a7" 6 | } 7 | ], 8 | "watchOS" : [ 9 | 10 | ], 11 | "tvOS" : [ 12 | { 13 | "name" : "Nimble", 14 | "hash" : "911bc2ec673764dd7b9f13e135e41cf34b30b94135e3f7f76e6d4183c8c4eb8b" 15 | } 16 | ], 17 | "commitish" : "v7.3.4", 18 | "iOS" : [ 19 | { 20 | "name" : "Nimble", 21 | "hash" : "01c7ee99e66beceed03d8b886aef5a03f70e97830b2e9c838543326ddc0ae63a" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/.Quick.version: -------------------------------------------------------------------------------- 1 | { 2 | "Mac" : [ 3 | { 4 | "name" : "Quick", 5 | "hash" : "8492f67df9922894e0d0e676997d93307d7fe2952bea3328f79521de995ae1a1" 6 | } 7 | ], 8 | "watchOS" : [ 9 | 10 | ], 11 | "tvOS" : [ 12 | { 13 | "name" : "Quick", 14 | "hash" : "cffc9b4a1377fce76f117cb02d6699509869d6cac46ce1e1d7e6dee9daeda2f8" 15 | } 16 | ], 17 | "commitish" : "v1.3.4", 18 | "iOS" : [ 19 | { 20 | "name" : "Quick", 21 | "hash" : "f28a698d02296d06c555cc9a9728d90a7d44d0c12c0e4892dd754eb0c5b53fa8" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/.ReactiveSwift.version: -------------------------------------------------------------------------------- 1 | { 2 | "Mac" : [ 3 | { 4 | "name" : "ReactiveSwift", 5 | "hash" : "322743127f9947f9ee7d85d8131b3f17778402337463dea6fbd6d02e19a42a5e" 6 | } 7 | ], 8 | "watchOS" : [ 9 | { 10 | "name" : "ReactiveSwift", 11 | "hash" : "672b414beb92f452bcd69ff59b4d471e47a61432444edfef1a39c3a1ff9f0841" 12 | } 13 | ], 14 | "tvOS" : [ 15 | { 16 | "name" : "ReactiveSwift", 17 | "hash" : "76df836decdebbfe20d63c8bfd22082cdac1b206f17c5d30b8f0630c9613c998" 18 | } 19 | ], 20 | "commitish" : "4.0.0", 21 | "iOS" : [ 22 | { 23 | "name" : "ReactiveSwift", 24 | "hash" : "324e6a4242174e9e8389afbd7578697648b3876a37ffaaf176be6dc690bcd5d0" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/.Result.version: -------------------------------------------------------------------------------- 1 | { 2 | "Mac" : [ 3 | { 4 | "name" : "Result", 5 | "hash" : "96e55032e7fe24d25554f4cff1f123c34334ebf707797abd8ef01d21e4a20cd2" 6 | } 7 | ], 8 | "watchOS" : [ 9 | { 10 | "name" : "Result", 11 | "hash" : "df072f3ee625b4d45a39b2d193d58eda8ca9179bc02d5bbb4ba6deb6d4943098" 12 | } 13 | ], 14 | "tvOS" : [ 15 | { 16 | "name" : "Result", 17 | "hash" : "845822b1084b759f548286ef3fbedb1e2368042c793f1dfaa708534aa0727452" 18 | } 19 | ], 20 | "commitish" : "4.1.0", 21 | "iOS" : [ 22 | { 23 | "name" : "Result", 24 | "hash" : "480338af7b6e1ee0268f4f47418f82e753e5f9fb3b4f6db265f50c64146c2955" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.net.jeffhui.Nimble 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Nimble: -------------------------------------------------------------------------------- 1 | Versions/Current/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlCatchException.h: -------------------------------------------------------------------------------- 1 | // 2 | // CwlCatchException.h 3 | // CwlCatchException 4 | // 5 | // Created by Matt Gallagher on 2016/01/10. 6 | // Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. 7 | // 8 | // Permission to use, copy, modify, and/or distribute this software for any 9 | // purpose with or without fee is hereby granted, provided that the above 10 | // copyright notice and this permission notice appear in all copies. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 13 | // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 14 | // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 15 | // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 16 | // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 17 | // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 18 | // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 19 | // 20 | 21 | #import 22 | 23 | //! Project version number for CwlCatchException. 24 | FOUNDATION_EXPORT double CwlCatchExceptionVersionNumber; 25 | 26 | //! Project version string for CwlCatchException. 27 | FOUNDATION_EXPORT const unsigned char CwlCatchExceptionVersionString[]; 28 | 29 | #if !SWIFT_PACKAGE && NON_SWIFT_PACKAGE 30 | __attribute__((visibility("hidden"))) 31 | #endif 32 | NSException* __nullable catchExceptionOfKind(Class __nonnull type, __attribute__((noescape)) void (^ __nonnull inBlock)(void)); 33 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- 1 | // 2 | // CwlPreconditionTesting.h 3 | // CwlPreconditionTesting 4 | // 5 | // Created by Matt Gallagher on 2016/01/10. 6 | // Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. 7 | // 8 | // Permission to use, copy, modify, and/or distribute this software for any 9 | // purpose with or without fee is hereby granted, provided that the above 10 | // copyright notice and this permission notice appear in all copies. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 13 | // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 14 | // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 15 | // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 16 | // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 17 | // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 18 | // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 19 | // 20 | 21 | #import 22 | 23 | extern bool _swift_reportFatalErrorsToDebugger; 24 | 25 | //! Project version number for CwlUtils. 26 | FOUNDATION_EXPORT double CwlPreconditionTestingVersionNumber; 27 | 28 | //! Project version string for CwlUtils. 29 | FOUNDATION_EXPORT const unsigned char CwlAssertingTestingVersionString[]; 30 | 31 | #include "CwlMachBadInstructionHandler.h" 32 | #include "CwlCatchException.h" 33 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface NMBExceptionCapture : NSObject 5 | 6 | - (nonnull instancetype)initWithHandler:(void(^ _Nullable)(NSException * _Nonnull))handler finally:(void(^ _Nullable)(void))finally; 7 | - (void)tryBlock:(__attribute__((noescape)) void(^ _Nonnull)(void))unsafeBlock NS_SWIFT_NAME(tryBlock(_:)); 8 | 9 | @end 10 | 11 | typedef void(^NMBSourceCallbackBlock)(BOOL successful); 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBStringify.h: -------------------------------------------------------------------------------- 1 | @class NSString; 2 | 3 | /** 4 | * Returns a string appropriate for displaying in test output 5 | * from the provided value. 6 | * 7 | * @param anyObject A value that will show up in a test's output. 8 | * 9 | * @return The string that is returned can be 10 | * customized per type by conforming a type to the `TestOutputStringConvertible` 11 | * protocol. When stringifying a non-`TestOutputStringConvertible` type, this 12 | * function will return the value's debug description and then its 13 | * normal description if available and in that order. Otherwise it 14 | * will return the result of constructing a string from the value. 15 | * 16 | * @see `TestOutputStringConvertible` 17 | */ 18 | extern NSString *_Nonnull NMBStringify(id _Nullable anyObject) __attribute__((warn_unused_result)); 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/Nimble.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "NMBExceptionCapture.h" 3 | #import "NMBStringify.h" 4 | #import "DSL.h" 5 | 6 | #if TARGET_OS_TV 7 | #import "CwlPreconditionTesting_POSIX.h" 8 | #else 9 | #import "CwlPreconditionTesting.h" 10 | #endif 11 | 12 | FOUNDATION_EXPORT double NimbleVersionNumber; 13 | FOUNDATION_EXPORT const unsigned char NimbleVersionString[]; 14 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Nimble { 2 | umbrella header "Nimble.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Nimble.Swift { 9 | header "Nimble-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Nimble 11 | CFBundleIdentifier 12 | net.jeffhui.Nimble 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Nimble 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | NSHumanReadableCopyright 44 | Copyright © 2014 Jeff Hui. All rights reserved. 45 | UIDeviceFamily 46 | 47 | 1 48 | 2 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Nimble.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.io.quick.Quick 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework.dSYM/Contents/Resources/DWARF/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework.dSYM/Contents/Resources/DWARF/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Quick: -------------------------------------------------------------------------------- 1 | Versions/Current/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/Quick.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for Quick. 4 | FOUNDATION_EXPORT double QuickVersionNumber; 5 | 6 | //! Project version string for Quick. 7 | FOUNDATION_EXPORT const unsigned char QuickVersionString[]; 8 | 9 | #import "QuickSpec.h" 10 | #import "QCKDSL.h" 11 | #import "QuickConfiguration.h" 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class Configuration; 4 | 5 | /** 6 | Subclass QuickConfiguration and override the +[QuickConfiguration configure:] 7 | method in order to configure how Quick behaves when running specs, or to define 8 | shared examples that are used across spec files. 9 | */ 10 | @interface QuickConfiguration : NSObject 11 | 12 | /** 13 | This method is executed on each subclass of this class before Quick runs 14 | any examples. You may override this method on as many subclasses as you like, but 15 | there is no guarantee as to the order in which these methods are executed. 16 | 17 | You can override this method in order to: 18 | 19 | 1. Configure how Quick behaves, by modifying properties on the Configuration object. 20 | Setting the same properties in several methods has undefined behavior. 21 | 22 | 2. Define shared examples using `sharedExamples`. 23 | 24 | @param configuration A mutable object that is used to configure how Quick behaves on 25 | a framework level. For details on all the options, see the 26 | documentation in Configuration.swift. 27 | */ 28 | + (void)configure:(Configuration *)configuration; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Quick { 2 | umbrella header "Quick.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Quick.Swift { 9 | header "Quick-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Quick 11 | CFBundleIdentifier 12 | io.quick.Quick 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Quick 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | NSHumanReadableCopyright 44 | Copyright © 2014 - present, Quick Team. All rights reserved. 45 | 46 | 47 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Quick.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveCocoa 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/ReactiveCocoa: -------------------------------------------------------------------------------- 1 | Versions/Current/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Headers/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for ReactiveCocoa. 4 | FOUNDATION_EXPORT double ReactiveCocoaVersionNumber; 5 | 6 | //! Project version string for ReactiveCocoa. 7 | FOUNDATION_EXPORT const unsigned char ReactiveCocoaVersionString[]; 8 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveCocoa { 2 | umbrella header "ReactiveCocoa.h" 3 | private header "ObjCRuntimeAliases.h" 4 | 5 | export * 6 | module * { export * } 7 | } 8 | 9 | module ReactiveCocoa.Swift { 10 | header "ReactiveCocoa-Swift.h" 11 | requires objc 12 | } 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/PrivateHeaders/ObjCRuntimeAliases.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | extern const IMP _rac_objc_msgForward; 7 | 8 | /// A trampoline of `objc_setAssociatedObject` that is made to circumvent the 9 | /// reference counting calls in the imported version in Swift. 10 | void _rac_objc_setAssociatedObject(const void* object, const void* key, id _Nullable value, objc_AssociationPolicy policy); 11 | 12 | NS_ASSUME_NONNULL_END 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | ReactiveCocoa 11 | CFBundleIdentifier 12 | org.reactivecocoa.ReactiveCocoa 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ReactiveCocoa 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 6.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | NSHumanReadableCopyright 44 | Copyright © 2014 GitHub. All rights reserved. 45 | 46 | 47 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveCocoa.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveMapKit 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.0.1 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/ReactiveMapKit: -------------------------------------------------------------------------------- 1 | Versions/Current/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveMapKit { 2 | header "ReactiveMapKit-Swift.h" 3 | requires objc 4 | } 5 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ReactiveMapKit 11 | CFBundleIdentifier 12 | org.reactivecocoa.ReactiveMapKit 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ReactiveMapKit 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 6.0.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10B61 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18B71 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1010 39 | DTXcodeBuild 40 | 10B61 41 | 42 | 43 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveMapKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveSwift 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.0.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/ReactiveSwift: -------------------------------------------------------------------------------- 1 | Versions/Current/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Headers/ReactiveSwift.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReactiveSwift.h 3 | // ReactiveSwift 4 | // 5 | // Created by Matt Diephouse on 8/15/16. 6 | // Copyright (c) 2016 the ReactiveSwift contributors. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for ReactiveSwift. 12 | FOUNDATION_EXPORT double ReactiveSwiftVersionNumber; 13 | 14 | //! Project version string for ReactiveSwift. 15 | FOUNDATION_EXPORT const unsigned char ReactiveSwiftVersionString[]; 16 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveSwift { 2 | umbrella header "ReactiveSwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module ReactiveSwift.Swift { 9 | header "ReactiveSwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | ReactiveSwift 11 | CFBundleIdentifier 12 | org.reactivecocoa.ReactiveSwift 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ReactiveSwift 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 4.0.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | NSHumanReadableCopyright 44 | Copyright © 2014 GitHub. All rights reserved. 45 | 46 | 47 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/ReactiveSwift.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.antitypical.Result 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework.dSYM/Contents/Resources/DWARF/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework.dSYM/Contents/Resources/DWARF/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Result: -------------------------------------------------------------------------------- 1 | Versions/Current/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Headers/Result.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Rob Rix. All rights reserved. 2 | 3 | /// Project version number for Result. 4 | extern double ResultVersionNumber; 5 | 6 | /// Project version string for Result. 7 | extern const unsigned char ResultVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Modules/Result.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Modules/Result.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Modules/Result.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Modules/Result.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Result.Swift { 9 | header "Result-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D109 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Result 11 | CFBundleIdentifier 12 | com.antitypical.Result 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Result 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 4.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | NSHumanReadableCopyright 44 | Copyright © 2015 Rob Rix. All rights reserved. 45 | 46 | 47 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/A/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/Mac/Result.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.net.jeffhui.Nimble 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Headers/CwlCatchException.h: -------------------------------------------------------------------------------- 1 | // 2 | // CwlCatchException.h 3 | // CwlCatchException 4 | // 5 | // Created by Matt Gallagher on 2016/01/10. 6 | // Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. 7 | // 8 | // Permission to use, copy, modify, and/or distribute this software for any 9 | // purpose with or without fee is hereby granted, provided that the above 10 | // copyright notice and this permission notice appear in all copies. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 13 | // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 14 | // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 15 | // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 16 | // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 17 | // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 18 | // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 19 | // 20 | 21 | #import 22 | 23 | //! Project version number for CwlCatchException. 24 | FOUNDATION_EXPORT double CwlCatchExceptionVersionNumber; 25 | 26 | //! Project version string for CwlCatchException. 27 | FOUNDATION_EXPORT const unsigned char CwlCatchExceptionVersionString[]; 28 | 29 | #if !SWIFT_PACKAGE && NON_SWIFT_PACKAGE 30 | __attribute__((visibility("hidden"))) 31 | #endif 32 | NSException* __nullable catchExceptionOfKind(Class __nonnull type, __attribute__((noescape)) void (^ __nonnull inBlock)(void)); 33 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Headers/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- 1 | // 2 | // CwlPreconditionTesting.h 3 | // CwlPreconditionTesting 4 | // 5 | // Created by Matt Gallagher on 2016/01/10. 6 | // Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. 7 | // 8 | // Permission to use, copy, modify, and/or distribute this software for any 9 | // purpose with or without fee is hereby granted, provided that the above 10 | // copyright notice and this permission notice appear in all copies. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 13 | // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 14 | // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 15 | // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 16 | // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 17 | // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 18 | // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 19 | // 20 | 21 | #import 22 | 23 | extern bool _swift_reportFatalErrorsToDebugger; 24 | 25 | //! Project version number for CwlUtils. 26 | FOUNDATION_EXPORT double CwlPreconditionTestingVersionNumber; 27 | 28 | //! Project version string for CwlUtils. 29 | FOUNDATION_EXPORT const unsigned char CwlAssertingTestingVersionString[]; 30 | 31 | #include "CwlMachBadInstructionHandler.h" 32 | #include "CwlCatchException.h" 33 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface NMBExceptionCapture : NSObject 5 | 6 | - (nonnull instancetype)initWithHandler:(void(^ _Nullable)(NSException * _Nonnull))handler finally:(void(^ _Nullable)(void))finally; 7 | - (void)tryBlock:(__attribute__((noescape)) void(^ _Nonnull)(void))unsafeBlock NS_SWIFT_NAME(tryBlock(_:)); 8 | 9 | @end 10 | 11 | typedef void(^NMBSourceCallbackBlock)(BOOL successful); 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Headers/NMBStringify.h: -------------------------------------------------------------------------------- 1 | @class NSString; 2 | 3 | /** 4 | * Returns a string appropriate for displaying in test output 5 | * from the provided value. 6 | * 7 | * @param anyObject A value that will show up in a test's output. 8 | * 9 | * @return The string that is returned can be 10 | * customized per type by conforming a type to the `TestOutputStringConvertible` 11 | * protocol. When stringifying a non-`TestOutputStringConvertible` type, this 12 | * function will return the value's debug description and then its 13 | * normal description if available and in that order. Otherwise it 14 | * will return the result of constructing a string from the value. 15 | * 16 | * @see `TestOutputStringConvertible` 17 | */ 18 | extern NSString *_Nonnull NMBStringify(id _Nullable anyObject) __attribute__((warn_unused_result)); 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "NMBExceptionCapture.h" 3 | #import "NMBStringify.h" 4 | #import "DSL.h" 5 | 6 | #if TARGET_OS_TV 7 | #import "CwlPreconditionTesting_POSIX.h" 8 | #else 9 | #import "CwlPreconditionTesting.h" 10 | #endif 11 | 12 | FOUNDATION_EXPORT double NimbleVersionNumber; 13 | FOUNDATION_EXPORT const unsigned char NimbleVersionString[]; 14 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Nimble { 2 | umbrella header "Nimble.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Nimble.Swift { 9 | header "Nimble-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.io.quick.Quick 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for Quick. 4 | FOUNDATION_EXPORT double QuickVersionNumber; 5 | 6 | //! Project version string for Quick. 7 | FOUNDATION_EXPORT const unsigned char QuickVersionString[]; 8 | 9 | #import "QuickSpec.h" 10 | #import "QCKDSL.h" 11 | #import "QuickConfiguration.h" 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class Configuration; 4 | 5 | /** 6 | Subclass QuickConfiguration and override the +[QuickConfiguration configure:] 7 | method in order to configure how Quick behaves when running specs, or to define 8 | shared examples that are used across spec files. 9 | */ 10 | @interface QuickConfiguration : NSObject 11 | 12 | /** 13 | This method is executed on each subclass of this class before Quick runs 14 | any examples. You may override this method on as many subclasses as you like, but 15 | there is no guarantee as to the order in which these methods are executed. 16 | 17 | You can override this method in order to: 18 | 19 | 1. Configure how Quick behaves, by modifying properties on the Configuration object. 20 | Setting the same properties in several methods has undefined behavior. 21 | 22 | 2. Define shared examples using `sharedExamples`. 23 | 24 | @param configuration A mutable object that is used to configure how Quick behaves on 25 | a framework level. For details on all the options, see the 26 | documentation in Configuration.swift. 27 | */ 28 | + (void)configure:(Configuration *)configuration; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Quick { 2 | umbrella header "Quick.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Quick.Swift { 9 | header "Quick-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Quick.framework/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveCocoa 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Headers/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for ReactiveCocoa. 4 | FOUNDATION_EXPORT double ReactiveCocoaVersionNumber; 5 | 6 | //! Project version string for ReactiveCocoa. 7 | FOUNDATION_EXPORT const unsigned char ReactiveCocoaVersionString[]; 8 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveCocoa { 2 | umbrella header "ReactiveCocoa.h" 3 | private header "ObjCRuntimeAliases.h" 4 | 5 | export * 6 | module * { export * } 7 | } 8 | 9 | module ReactiveCocoa.Swift { 10 | header "ReactiveCocoa-Swift.h" 11 | requires objc 12 | } 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/PrivateHeaders/ObjCRuntimeAliases.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | extern const IMP _rac_objc_msgForward; 7 | 8 | /// A trampoline of `objc_setAssociatedObject` that is made to circumvent the 9 | /// reference counting calls in the imported version in Swift. 10 | void _rac_objc_setAssociatedObject(const void* object, const void* key, id _Nullable value, objc_AssociationPolicy policy); 11 | 12 | NS_ASSUME_NONNULL_END 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveCocoa.framework/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveMapKit 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.0.1 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveMapKit { 2 | header "ReactiveMapKit-Swift.h" 3 | requires objc 4 | } 5 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveMapKit.framework/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveSwift 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.0.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Headers/ReactiveSwift.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReactiveSwift.h 3 | // ReactiveSwift 4 | // 5 | // Created by Matt Diephouse on 8/15/16. 6 | // Copyright (c) 2016 the ReactiveSwift contributors. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for ReactiveSwift. 12 | FOUNDATION_EXPORT double ReactiveSwiftVersionNumber; 13 | 14 | //! Project version string for ReactiveSwift. 15 | FOUNDATION_EXPORT const unsigned char ReactiveSwiftVersionString[]; 16 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveSwift { 2 | umbrella header "ReactiveSwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module ReactiveSwift.Swift { 9 | header "ReactiveSwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/ReactiveSwift.framework/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.antitypical.Result 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework.dSYM/Contents/Resources/DWARF/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework.dSYM/Contents/Resources/DWARF/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Headers/Result.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Rob Rix. All rights reserved. 2 | 3 | /// Project version number for Result. 4 | extern double ResultVersionNumber; 5 | 6 | /// Project version string for Result. 7 | extern const unsigned char ResultVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Result.Swift { 9 | header "Result-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/iOS/Result.framework/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.net.jeffhui.Nimble 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface NMBExceptionCapture : NSObject 5 | 6 | - (nonnull instancetype)initWithHandler:(void(^ _Nullable)(NSException * _Nonnull))handler finally:(void(^ _Nullable)(void))finally; 7 | - (void)tryBlock:(__attribute__((noescape)) void(^ _Nonnull)(void))unsafeBlock NS_SWIFT_NAME(tryBlock(_:)); 8 | 9 | @end 10 | 11 | typedef void(^NMBSourceCallbackBlock)(BOOL successful); 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Headers/NMBStringify.h: -------------------------------------------------------------------------------- 1 | @class NSString; 2 | 3 | /** 4 | * Returns a string appropriate for displaying in test output 5 | * from the provided value. 6 | * 7 | * @param anyObject A value that will show up in a test's output. 8 | * 9 | * @return The string that is returned can be 10 | * customized per type by conforming a type to the `TestOutputStringConvertible` 11 | * protocol. When stringifying a non-`TestOutputStringConvertible` type, this 12 | * function will return the value's debug description and then its 13 | * normal description if available and in that order. Otherwise it 14 | * will return the result of constructing a string from the value. 15 | * 16 | * @see `TestOutputStringConvertible` 17 | */ 18 | extern NSString *_Nonnull NMBStringify(id _Nullable anyObject) __attribute__((warn_unused_result)); 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "NMBExceptionCapture.h" 3 | #import "NMBStringify.h" 4 | #import "DSL.h" 5 | 6 | #if TARGET_OS_TV 7 | #import "CwlPreconditionTesting_POSIX.h" 8 | #else 9 | #import "CwlPreconditionTesting.h" 10 | #endif 11 | 12 | FOUNDATION_EXPORT double NimbleVersionNumber; 13 | FOUNDATION_EXPORT const unsigned char NimbleVersionString[]; 14 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Nimble { 2 | umbrella header "Nimble.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Nimble.Swift { 9 | header "Nimble-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.io.quick.Quick 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for Quick. 4 | FOUNDATION_EXPORT double QuickVersionNumber; 5 | 6 | //! Project version string for Quick. 7 | FOUNDATION_EXPORT const unsigned char QuickVersionString[]; 8 | 9 | #import "QuickSpec.h" 10 | #import "QCKDSL.h" 11 | #import "QuickConfiguration.h" 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class Configuration; 4 | 5 | /** 6 | Subclass QuickConfiguration and override the +[QuickConfiguration configure:] 7 | method in order to configure how Quick behaves when running specs, or to define 8 | shared examples that are used across spec files. 9 | */ 10 | @interface QuickConfiguration : NSObject 11 | 12 | /** 13 | This method is executed on each subclass of this class before Quick runs 14 | any examples. You may override this method on as many subclasses as you like, but 15 | there is no guarantee as to the order in which these methods are executed. 16 | 17 | You can override this method in order to: 18 | 19 | 1. Configure how Quick behaves, by modifying properties on the Configuration object. 20 | Setting the same properties in several methods has undefined behavior. 21 | 22 | 2. Define shared examples using `sharedExamples`. 23 | 24 | @param configuration A mutable object that is used to configure how Quick behaves on 25 | a framework level. For details on all the options, see the 26 | documentation in Configuration.swift. 27 | */ 28 | + (void)configure:(Configuration *)configuration; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Quick { 2 | umbrella header "Quick.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Quick.Swift { 9 | header "Quick-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Quick.framework/Quick -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveCocoa 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Headers/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for ReactiveCocoa. 4 | FOUNDATION_EXPORT double ReactiveCocoaVersionNumber; 5 | 6 | //! Project version string for ReactiveCocoa. 7 | FOUNDATION_EXPORT const unsigned char ReactiveCocoaVersionString[]; 8 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveCocoa { 2 | umbrella header "ReactiveCocoa.h" 3 | private header "ObjCRuntimeAliases.h" 4 | 5 | export * 6 | module * { export * } 7 | } 8 | 9 | module ReactiveCocoa.Swift { 10 | header "ReactiveCocoa-Swift.h" 11 | requires objc 12 | } 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/PrivateHeaders/ObjCRuntimeAliases.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | extern const IMP _rac_objc_msgForward; 7 | 8 | /// A trampoline of `objc_setAssociatedObject` that is made to circumvent the 9 | /// reference counting calls in the imported version in Swift. 10 | void _rac_objc_setAssociatedObject(const void* object, const void* key, id _Nullable value, objc_AssociationPolicy policy); 11 | 12 | NS_ASSUME_NONNULL_END 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveCocoa.framework/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveMapKit 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.0.1 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveMapKit { 2 | header "ReactiveMapKit-Swift.h" 3 | requires objc 4 | } 5 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveMapKit.framework/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveSwift 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.0.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Headers/ReactiveSwift.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReactiveSwift.h 3 | // ReactiveSwift 4 | // 5 | // Created by Matt Diephouse on 8/15/16. 6 | // Copyright (c) 2016 the ReactiveSwift contributors. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for ReactiveSwift. 12 | FOUNDATION_EXPORT double ReactiveSwiftVersionNumber; 13 | 14 | //! Project version string for ReactiveSwift. 15 | FOUNDATION_EXPORT const unsigned char ReactiveSwiftVersionString[]; 16 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveSwift { 2 | umbrella header "ReactiveSwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module ReactiveSwift.Swift { 9 | header "ReactiveSwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/ReactiveSwift.framework/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.antitypical.Result 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework.dSYM/Contents/Resources/DWARF/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework.dSYM/Contents/Resources/DWARF/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Headers/Result.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Rob Rix. All rights reserved. 2 | 3 | /// Project version number for Result. 4 | extern double ResultVersionNumber; 5 | 6 | /// Project version string for Result. 7 | extern const unsigned char ResultVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Result.Swift { 9 | header "Result-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/tvOS/Result.framework/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveCocoa 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework.dSYM/Contents/Resources/DWARF/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Headers/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for ReactiveCocoa. 4 | FOUNDATION_EXPORT double ReactiveCocoaVersionNumber; 5 | 6 | //! Project version string for ReactiveCocoa. 7 | FOUNDATION_EXPORT const unsigned char ReactiveCocoaVersionString[]; 8 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/ReactiveCocoa.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveCocoa { 2 | umbrella header "ReactiveCocoa.h" 3 | private header "ObjCRuntimeAliases.h" 4 | 5 | export * 6 | module * { export * } 7 | } 8 | 9 | module ReactiveCocoa.Swift { 10 | header "ReactiveCocoa-Swift.h" 11 | requires objc 12 | } 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/PrivateHeaders/ObjCRuntimeAliases.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | extern const IMP _rac_objc_msgForward; 7 | 8 | /// A trampoline of `objc_setAssociatedObject` that is made to circumvent the 9 | /// reference counting calls in the imported version in Swift. 10 | void _rac_objc_setAssociatedObject(const void* object, const void* key, id _Nullable value, objc_AssociationPolicy policy); 11 | 12 | NS_ASSUME_NONNULL_END 13 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/ReactiveCocoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveCocoa.framework/ReactiveCocoa -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveMapKit 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 6.0.1 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework.dSYM/Contents/Resources/DWARF/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/ReactiveMapKit.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveMapKit { 2 | header "ReactiveMapKit-Swift.h" 3 | requires objc 4 | } 5 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/ReactiveMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveMapKit.framework/ReactiveMapKit -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveSwift 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.0.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Headers/ReactiveSwift.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReactiveSwift.h 3 | // ReactiveSwift 4 | // 5 | // Created by Matt Diephouse on 8/15/16. 6 | // Copyright (c) 2016 the ReactiveSwift contributors. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for ReactiveSwift. 12 | FOUNDATION_EXPORT double ReactiveSwiftVersionNumber; 13 | 14 | //! Project version string for ReactiveSwift. 15 | FOUNDATION_EXPORT const unsigned char ReactiveSwiftVersionString[]; 16 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveSwift { 2 | umbrella header "ReactiveSwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module ReactiveSwift.Swift { 9 | header "ReactiveSwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/ReactiveSwift.framework/ReactiveSwift -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.antitypical.Result 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 4.1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework.dSYM/Contents/Resources/DWARF/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework.dSYM/Contents/Resources/DWARF/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Headers/Result.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Rob Rix. All rights reserved. 2 | 3 | /// Project version number for Result. 4 | extern double ResultVersionNumber; 5 | 6 | /// Project version string for Result. 7 | extern const unsigned char ResultVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Info.plist -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Result.Swift { 9 | header "Result-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Carthage/Build/watchOS/Result.framework/Result -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxjke/Redux-ReactiveSwift/c1b9b5d6eb7abd696de55703ed1ba80dcdf35ffb/Redux-ReactiveSwift/Classes/.gitkeep -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Classes/Store.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Store.swift 3 | // Redux-ReactiveSwift 4 | // 5 | // Created by Petro Korienev on 10/12/17. 6 | // Copyright © 2017 Petro Korienev. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import ReactiveSwift 11 | import Result 12 | 13 | public protocol Defaultable { 14 | static var defaultValue: Self { get } 15 | } 16 | 17 | infix operator <~ : BindingPrecedence 18 | 19 | open class Store { 20 | 21 | public typealias Reducer = (State, Event) -> State 22 | 23 | fileprivate var innerProperty: MutableProperty 24 | fileprivate var reducers: [Reducer] 25 | 26 | public required init(state: State, reducers: [Reducer]) { 27 | self.innerProperty = MutableProperty(state) 28 | self.reducers = reducers 29 | } 30 | 31 | public func consume(event: Event) { 32 | self.innerProperty.value = reducers.reduce(self.innerProperty.value) { $1($0, event) } 33 | } 34 | } 35 | 36 | extension Store: PropertyProtocol { 37 | public var value: State { 38 | return innerProperty.value 39 | } 40 | public var producer: SignalProducer { 41 | return innerProperty.producer 42 | } 43 | public var signal: Signal { 44 | return innerProperty.signal 45 | } 46 | } 47 | 48 | public extension Store { 49 | @discardableResult 50 | public static func <~ (target: Store, source: Source) -> Disposable? 51 | where Event == Source.Value 52 | { 53 | return source.producer 54 | .take(during: target.innerProperty.lifetime) 55 | .startWithValues(target.consume) 56 | } 57 | } 58 | 59 | public extension Store where State: Defaultable { 60 | convenience init(reducers: [Reducer]) { 61 | self.init(state: State.defaultValue, reducers: reducers) 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-iOS/CocoaPods_Redux_ReactiveSwift_iOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // CocoaPods_Redux_ReactiveSwift_iOS.h 3 | // CocoaPods-Redux-ReactiveSwift-iOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for CocoaPods_Redux_ReactiveSwift_iOS. 11 | FOUNDATION_EXPORT double CocoaPods_Redux_ReactiveSwift_iOSVersionNumber; 12 | 13 | //! Project version string for CocoaPods_Redux_ReactiveSwift_iOS. 14 | FOUNDATION_EXPORT const unsigned char CocoaPods_Redux_ReactiveSwift_iOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-iOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-macOS/CocoaPods_Redux_ReactiveSwift_macOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // CocoaPods_Redux_ReactiveSwift_macOS.h 3 | // CocoaPods-Redux-ReactiveSwift-macOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for CocoaPods_Redux_ReactiveSwift_macOS. 11 | FOUNDATION_EXPORT double CocoaPods_Redux_ReactiveSwift_macOSVersionNumber; 12 | 13 | //! Project version string for CocoaPods_Redux_ReactiveSwift_macOS. 14 | FOUNDATION_EXPORT const unsigned char CocoaPods_Redux_ReactiveSwift_macOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-macOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-tvOS/CocoaPods_Redux_ReactiveSwift_tvOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // CocoaPods_Redux_ReactiveSwift_tvOS.h 3 | // CocoaPods-Redux-ReactiveSwift-tvOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for CocoaPods_Redux_ReactiveSwift_tvOS. 11 | FOUNDATION_EXPORT double CocoaPods_Redux_ReactiveSwift_tvOSVersionNumber; 12 | 13 | //! Project version string for CocoaPods_Redux_ReactiveSwift_tvOS. 14 | FOUNDATION_EXPORT const unsigned char CocoaPods_Redux_ReactiveSwift_tvOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-watchOS/CocoaPods_Redux_ReactiveSwift_watchOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // CocoaPods_Redux_ReactiveSwift_watchOS.h 3 | // CocoaPods-Redux-ReactiveSwift-watchOS 4 | // 5 | // Created by Petro Korienev on 10/17/17. 6 | // 7 | 8 | #import 9 | 10 | //! Project version number for CocoaPods_Redux_ReactiveSwift_watchOS. 11 | FOUNDATION_EXPORT double CocoaPods_Redux_ReactiveSwift_watchOSVersionNumber; 12 | 13 | //! Project version string for CocoaPods_Redux_ReactiveSwift_watchOS. 14 | FOUNDATION_EXPORT const unsigned char CocoaPods_Redux_ReactiveSwift_watchOSVersionString[]; 15 | 16 | // In this header, you should import all the public headers of your framework using statements like #import 17 | 18 | 19 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/CocoaPods-Redux-ReactiveSwift-watchOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | source "https://rubygems.org" 3 | 4 | # gem "rails" 5 | gem "fastlane" 6 | gem "cocoapods", '~>1.6' 7 | gem "xcov" 8 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | inhibit_all_warnings! 4 | 5 | def common_pods 6 | pod 'ReactiveSwift', '~> 4.0' 7 | end 8 | 9 | def test_pods 10 | pod 'Quick', '~> 1.3' 11 | pod 'Nimble', '~> 7.3.2' 12 | pod 'ReactiveCocoa', '~> 8.0' 13 | end 14 | 15 | def app_pods 16 | end 17 | 18 | test_targets = ['CocoaPods-Redux-ReactiveSwift-iOSTests'] 19 | app_targets = [ 20 | 'CocoaPods-Redux-ReactiveSwift-watchOS', 21 | 'CocoaPods-Redux-ReactiveSwift-tvOS', 22 | 'CocoaPods-Redux-ReactiveSwift-iOS', 23 | 'CocoaPods-Redux-ReactiveSwift-macOS' 24 | ] 25 | 26 | test_targets.each { |targetName| 27 | target targetName do 28 | common_pods 29 | test_pods 30 | end 31 | } 32 | 33 | app_targets.each { |targetName| 34 | target targetName do 35 | common_pods 36 | app_pods 37 | end 38 | } 39 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Nimble (7.3.4) 3 | - Quick (1.3.4) 4 | - ReactiveCocoa (8.0.2): 5 | - ReactiveSwift (~> 4.0) 6 | - ReactiveSwift (4.0.0): 7 | - Result (~> 4.0) 8 | - Result (4.1.0) 9 | 10 | DEPENDENCIES: 11 | - Nimble (~> 7.3.2) 12 | - Quick (~> 1.3) 13 | - ReactiveCocoa (~> 8.0) 14 | - ReactiveSwift (~> 4.0) 15 | 16 | SPEC REPOS: 17 | https://github.com/cocoapods/specs.git: 18 | - Nimble 19 | - Quick 20 | - ReactiveCocoa 21 | - ReactiveSwift 22 | - Result 23 | 24 | SPEC CHECKSUMS: 25 | Nimble: 051e3d8912d40138fa5591c78594f95fb172af37 26 | Quick: f4f7f063c524394c73ed93ac70983c609805d481 27 | ReactiveCocoa: fbd26e9ba60e98417ee47433e59465a98ed9da0f 28 | ReactiveSwift: a2bb9ace428a109e9c0209615645d9d286c8c433 29 | Result: bd966fac789cc6c1563440b348ab2598cc24d5c7 30 | 31 | PODFILE CHECKSUM: 02575d8f1f74f7a69144c0cff748c0df0380a325 32 | 33 | COCOAPODS: 1.5.3 34 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Redux-ReactiveSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/Redux-ReactiveSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Redux-ReactiveSwift/fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | platform :ios do 2 | lane :cocoapods_test do 3 | cocoapods(repo_update: true, verbose: true) 4 | scan( 5 | workspace: 'Redux-ReactiveSwift.xcworkspace', 6 | scheme: 'CocoaPods-Redux-ReactiveSwift-iOS', 7 | code_coverage: true, 8 | clean: true, 9 | output_types: "html", 10 | devices: ["iPhone 8"] 11 | ) 12 | xcov( 13 | workspace: 'Redux-ReactiveSwift.xcworkspace', 14 | scheme: 'CocoaPods-Redux-ReactiveSwift-iOS', 15 | output_directory: '.xcov', 16 | derived_data_path: lane_context[SharedValues::SCAN_DERIVED_DATA_PATH], 17 | skip_slack: true 18 | ) 19 | end 20 | lane :carthage_test do 21 | carthage(cache_builds: true) 22 | scan( 23 | project: 'Redux-ReactiveSwift.xcodeproj', 24 | scheme: 'Carthage-Redux-ReactiveSwift-iOS', 25 | code_coverage: true, 26 | clean: true, 27 | output_types: "html", 28 | devices: ["iPhone 8"] 29 | ) 30 | xcov( 31 | project: 'Redux-ReactiveSwift.xcodeproj', 32 | scheme: 'Carthage-Redux-ReactiveSwift-iOS', 33 | output_directory: '.xcov', 34 | derived_data_path: lane_context[SharedValues::SCAN_DERIVED_DATA_PATH], 35 | skip_slack: true 36 | ) 37 | end 38 | end 39 | --------------------------------------------------------------------------------