https://github.com/modo-studio/carambakit
Core Framework for Applications
https://github.com/modo-studio/carambakit
Last synced: 10 months ago
JSON representation
Core Framework for Applications
- Host: GitHub
- URL: https://github.com/modo-studio/carambakit
- Owner: modo-studio
- License: mit
- Created: 2016-07-11T08:21:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T10:55:07.000Z (almost 9 years ago)
- Last Synced: 2025-08-15T01:54:57.575Z (11 months ago)
- Language: Swift
- Size: 128 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# CarambaKit
[](https://travis-ci.org/carambalabs/CarambaKit)
[](https://codecov.io/gh/carambalabs/CarambaKit)
[](https://gemnasium.com/github.com/carambalabs/CarambaKit)
## 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:
```ruby
pod "CarambaKit"
```
## CarambaKit
### Networking
```swift
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:
```swift
let repository = SessionRepository(name: "idonethis")
let session = repository.fetch()
```
## About

This project is funded and maintained by [Caramba](http://caramba.io). We 💛 open source software!
Check out our other [open source projects](https://github.com/carambalabs/), read our [blog](http://blog.caramba.io) or say :wave: on twitter [@carambalabs](http://twitter.com/carambalabs).
## Contribute
Contributions are welcome :metal: We encourage developers like you to help us improve the projects we've shared with the community. Please see the [Contributing Guide](https://github.com/carambalabs/Foundation/blob/master/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/carambalabs/Foundation/blob/master/CONDUCT.md).
## License
CarambaKit is available under the MIT license. See the LICENSE file for more info.