Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

zettajs/ZettaKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZettaKit

CI Status Version License Platform

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, matt@apigee.com

License

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