Contents

gringoiredm/rxenumkit

RxEnumKit is the reactive extension of [EnumKit](https://github.com/gringoireDM/EnumKit.git). It extends `ObservableType` and `SharedSequenceConvertibleType` to add flexibility while working with stream of enum cases.

Requirements

  • Xcode 11
  • Swift 5.1

Installation

RxEnumKit offers cocoapods and swiftPM

Via Cocoapods


use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'RxEnumKit', '~> 1.0.2'
end

Replace YOUR_TARGET_NAME and then, in the Podfile directory, type:

$ pod install

via Swift Package Manager

Create a Package.swift file.

// swift-tools-version:5.0

import PackageDescription

let package = Package(
  name: "YourProjectName",
  dependencies: [
    .package(url: "https://github.com/gringoireDM/RxEnumKit.git", from: "1.0.2")
  ],
  targets: [
    .target(name: "YourProjectName", dependencies: ["RxEnumKit"])
  ]
)
$ swift build

Package Metadata

Repository: gringoiredm/rxenumkit

Default branch: master

README: README.md