Skip to content

modo-studio/CarambaKit

Repository files navigation

CarambaKit

CI Status codecov Dependency Status

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

To install it, simply add the following line to your Podfile:

pod "CarambaKit"

CarambaKit

Networking

let request = RequestBuilder(baseUrl: "https://api.apps.com").get("/users").withParameters(["param": "value"]).build()
let client = JsonHttpClient()
client.request(request).subscribeNext { response in
  // :tada:
}

SessionRepository

Fetch, store, and clear a session from the Keychain:

let repository = SessionRepository(name: "idonethis")
let session = repository.fetch()

About

This project is funded and maintained by Caramba. We 💛 open source software!

Check out our other open source projects, read our blog or say 👋 on twitter @carambalabs.

Contribute

Contributions are welcome 🤘 We encourage developers like you to help us improve the projects we've shared with the community. Please see the Contributing Guide and the Code of Conduct.

License

CarambaKit is available under the MIT license. See the LICENSE file for more info.