[Add] ThinkingDataCore 1.0.2
[CocoaPods.git] / Specs / 9 / 2 / 1 / DZAUnsafeMutableArray / 0.2.1 / DZAUnsafeMutableArray.podspec.json
blobcbb8b3c2bc2ebd9ac7896bcd6ef1cfcdb8844e54
2   "name": "DZAUnsafeMutableArray",
3   "version": "0.2.1",
4   "summary": "An Objective-C wrapper around a c auto-growing pointer array.",
5   "description": "I built this library because I'm rewriting [RouletteBetter](https://itunes.apple.com/us/app/roulettebetter-odds-calculator-betting-strategies-for/id310598685?mt=8) and I wanted a way to make *lot* of statistics calculation on vectors. To do so, we can use the [iOS Accelerate framework](https://developer.apple.com/documentation/accelerate) to 'Make large-scale mathematical computations and image calculations, optimized for high performance'. Unfortunately the Accelerate framework wants basic c pointer array as input/output parameters, so we can't use NSMutableArray or high level NSObjects.\n\nWith this wrapper library, we can easily create and manupulate the c pointer array as an high level object and, whenewer we need it, access the low level pointer property (for example to pass it to the Accelerate framework c functions).",
6   "homepage": "https://github.com/Dzamir/DZAUnsafeMutableArray",
7   "screenshots": [
8     "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_2.jpg",
9     "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_1.jpg"
10   ],
11   "license": {
12     "type": "MIT",
13     "file": "LICENSE"
14   },
15   "authors": {
16     "Davide Di Stefano": "dzamirro@gmail.com"
17   },
18   "source": {
19     "git": "https://github.com/Dzamir/DZAUnsafeMutableArray.git",
20     "tag": "0.2.1"
21   },
22   "social_media_url": "https://twitter.com/dzamir",
23   "platforms": {
24     "ios": "8.0",
25     "osx": "10.10",
26     "watchos": "2.0",
27     "tvos": "9.0"
28   },
29   "source_files": "DZAUnsafeMutableArray/Classes/**/*"