ZettaKit 0.0.8

ZettaKit 0.0.8

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Mar 2016

Maintained by Matthew Dobson.



 
Depends on:
ReactiveCocoa= 2.4.7
SocketRocket= 0.4
 

ZettaKit 0.0.8

Usage

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

//How to fully crawl your Zetta API
ZIKSession *session = [ZIKSession sharedSession];

RACSignal *root = [session root:[NSURL URLWithString:@"http://zetta-cloud-2.herokuapp.com/"]];
RACSignal *servers = [session servers:root];
RACSignal *devices = [session devices:servers];

[root subscribeNext:^(ZIKRoot *root) {
  NSLog(@"%@", root);  
}];

[servers subscribeNext:^(ZIKServer *server) {
  NSLog(@"%@", server);  
}];

[devices subscribeNext:^(ZIKDevice *device) {
  NSLog(@"%@", device);  
}];

Requirements

This library requires the following components

  • 'ReactiveCocoa'@'2.4.7'
  • 'SocketRocket'@'0.3.1-beta2'

Installation

ZettaKit is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ZettaKit"

Author

Matthew Dobson, [email protected]

License

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