CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | WTFPL |
| ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Taskit is a reimplementation of NSTask with a simplified and block-ready interface.
Taskit *task = [Taskit task];
task.launchPath = @"/bin/echo";
[task.arguments addObject:@"Hello World"];
task.receivedOutputString = ^void(NSString *output) {
NSLog(@"%@", output);
};
[task launch];Taskit is licensed under the WTFPL.