├── .gitignore ├── .swift-version ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Example and Tests ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Demo.xcworkspace │ └── contents.xcworkspacedata ├── Demo │ ├── API.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Person.swift │ ├── Stubbed Responses │ │ ├── bad_format.json │ │ ├── bad_person.json │ │ ├── nested_people.json │ │ ├── nested_person.json │ │ ├── people.json │ │ └── person.json │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ ├── ObservableTests.swift │ ├── ResponseTests.swift │ └── SignalProducerTests.swift ├── LICENSE ├── Moya-Gloss.podspec ├── MoyaGloss.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── MoyaGloss-macOS.xcscheme │ ├── MoyaGloss.xcscheme │ ├── ReactiveMoyaGloss-macOS.xcscheme │ ├── ReactiveMoyaGloss.xcscheme │ ├── RxMoyaGloss-macOS.xcscheme │ └── RxMoyaGloss.xcscheme ├── README.md ├── ReactiveMoyaGloss-macOS └── Info.plist ├── RxMoyaGloss-macOS └── Info.plist ├── Source ├── ReactiveSwift │ └── SignalProducer+Gloss.swift ├── Response+Gloss.swift └── RxSwift │ ├── Observable+Gloss.swift │ └── PrimitiveSequence+Gloss.swift └── Supporting Files ├── Info.plist ├── MoyaGloss.h ├── ReactiveMoyaGloss.h └── RxMoyaGloss.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Example and Tests/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example and Tests/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example and Tests/Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example and Tests/Demo/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/API.swift -------------------------------------------------------------------------------- /Example and Tests/Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Example and Tests/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example and Tests/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example and Tests/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example and Tests/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Info.plist -------------------------------------------------------------------------------- /Example and Tests/Demo/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Person.swift -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/bad_format.json: -------------------------------------------------------------------------------- 1 | this isn't an actual json document' -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/bad_person.json: -------------------------------------------------------------------------------- 1 | { 2 | "age": 23 3 | } 4 | -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/nested_people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Stubbed Responses/nested_people.json -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/nested_person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Stubbed Responses/nested_person.json -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Stubbed Responses/people.json -------------------------------------------------------------------------------- /Example and Tests/Demo/Stubbed Responses/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/Stubbed Responses/person.json -------------------------------------------------------------------------------- /Example and Tests/Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Demo/ViewController.swift -------------------------------------------------------------------------------- /Example and Tests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Podfile -------------------------------------------------------------------------------- /Example and Tests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Podfile.lock -------------------------------------------------------------------------------- /Example and Tests/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Tests/Info.plist -------------------------------------------------------------------------------- /Example and Tests/Tests/ObservableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Tests/ObservableTests.swift -------------------------------------------------------------------------------- /Example and Tests/Tests/ResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Tests/ResponseTests.swift -------------------------------------------------------------------------------- /Example and Tests/Tests/SignalProducerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Example and Tests/Tests/SignalProducerTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/LICENSE -------------------------------------------------------------------------------- /Moya-Gloss.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Moya-Gloss.podspec -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/MoyaGloss-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/MoyaGloss-macOS.xcscheme -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/MoyaGloss.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/MoyaGloss.xcscheme -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/ReactiveMoyaGloss-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/ReactiveMoyaGloss-macOS.xcscheme -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/ReactiveMoyaGloss.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/ReactiveMoyaGloss.xcscheme -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/RxMoyaGloss-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/RxMoyaGloss-macOS.xcscheme -------------------------------------------------------------------------------- /MoyaGloss.xcodeproj/xcshareddata/xcschemes/RxMoyaGloss.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/MoyaGloss.xcodeproj/xcshareddata/xcschemes/RxMoyaGloss.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/README.md -------------------------------------------------------------------------------- /ReactiveMoyaGloss-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/ReactiveMoyaGloss-macOS/Info.plist -------------------------------------------------------------------------------- /RxMoyaGloss-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/RxMoyaGloss-macOS/Info.plist -------------------------------------------------------------------------------- /Source/ReactiveSwift/SignalProducer+Gloss.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Source/ReactiveSwift/SignalProducer+Gloss.swift -------------------------------------------------------------------------------- /Source/Response+Gloss.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Source/Response+Gloss.swift -------------------------------------------------------------------------------- /Source/RxSwift/Observable+Gloss.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Source/RxSwift/Observable+Gloss.swift -------------------------------------------------------------------------------- /Source/RxSwift/PrimitiveSequence+Gloss.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Source/RxSwift/PrimitiveSequence+Gloss.swift -------------------------------------------------------------------------------- /Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Supporting Files/MoyaGloss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Supporting Files/MoyaGloss.h -------------------------------------------------------------------------------- /Supporting Files/ReactiveMoyaGloss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Supporting Files/ReactiveMoyaGloss.h -------------------------------------------------------------------------------- /Supporting Files/RxMoyaGloss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spxrogers/Moya-Gloss/HEAD/Supporting Files/RxMoyaGloss.h --------------------------------------------------------------------------------