├── .gitignore ├── .travis.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── RxJSON.podspec ├── Sources └── RxJSON │ ├── Functions.swift │ ├── Maybe+RxJSON.swift │ ├── ObservableType+RxJSON.swift │ ├── RxJSONError.swift │ └── Single+RxJSON.swift ├── Tests └── RxJSONTests │ ├── ArrayTests.swift │ └── DictionaryTests.swift └── codecov.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/README.md -------------------------------------------------------------------------------- /RxJSON.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/RxJSON.podspec -------------------------------------------------------------------------------- /Sources/RxJSON/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Sources/RxJSON/Functions.swift -------------------------------------------------------------------------------- /Sources/RxJSON/Maybe+RxJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Sources/RxJSON/Maybe+RxJSON.swift -------------------------------------------------------------------------------- /Sources/RxJSON/ObservableType+RxJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Sources/RxJSON/ObservableType+RxJSON.swift -------------------------------------------------------------------------------- /Sources/RxJSON/RxJSONError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Sources/RxJSON/RxJSONError.swift -------------------------------------------------------------------------------- /Sources/RxJSON/Single+RxJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Sources/RxJSON/Single+RxJSON.swift -------------------------------------------------------------------------------- /Tests/RxJSONTests/ArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Tests/RxJSONTests/ArrayTests.swift -------------------------------------------------------------------------------- /Tests/RxJSONTests/DictionaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/Tests/RxJSONTests/DictionaryTests.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/RxJSON/HEAD/codecov.yml --------------------------------------------------------------------------------