diff --git a/Telepat.podspec b/Telepat.podspec index a5529f7..971586c 100644 --- a/Telepat.podspec +++ b/Telepat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Telepat" - s.version = "0.0.2" + s.version = "0.0.3" s.summary = "Real Time, Open Source Data Sync" s.description = <<-DESC diff --git a/TelepatProject.xcworkspace/xcuserdata/ovidiu.xcuserdatad/UserInterfaceState.xcuserstate b/TelepatProject.xcworkspace/xcuserdata/ovidiu.xcuserdatad/UserInterfaceState.xcuserstate index a136ff1..a783399 100644 Binary files a/TelepatProject.xcworkspace/xcuserdata/ovidiu.xcuserdatad/UserInterfaceState.xcuserstate and b/TelepatProject.xcworkspace/xcuserdata/ovidiu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/TelepatProject/ViewController.m b/TelepatProject/ViewController.m index 68badeb..c7ffb67 100644 --- a/TelepatProject/ViewController.m +++ b/TelepatProject/ViewController.m @@ -28,29 +28,6 @@ @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. - - // Set the API key and the current application ID -// [[Telepat client] setApiKey:@"API_KEY"]; -// [[Telepat client] setAppId:@"APP_ID"]; -// -// [[Telepat client] login:@"username@example.com" password:@"mysecurepassword" withBlock:^(TelepatResponse *response) { -// [[Telepat client] getContextsWithBlock:^(TelepatResponse *response) { -// NSArray *contexts = [response getObjectOfType:[TelepatContext class]]; -// TelepatContext *firstContext = contexts[0]; -// TelepatChannel *firstChannel = [[Telepat client] subscribe:firstContext modelName:@"events" classType:[Event class] withBlock:^(TelepatResponse *response) { -// NSLog(@"Subscribed to %@", firstContext.name); -// }]; -// -// Event *newEvent = [[Event alloc] init]; -// newEvent.text = @"Hello world!"; -// newEvent.image = @"telepat_image.png"; -// -// [firstChannel add:newEvent]; -// -// Event *modifiedEvent = [[Event alloc] initWithDi]; -// }]; -// -// }]; } - (void)didReceiveMemoryWarning {