[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / 2 / 3 / 5 / serialize / 0.0.2 / serialize.podspec.json
blobaaa10649cb8297537fd2d70f142b67856c28af0b
2   "name": "serialize",
3   "version": "0.0.2",
4   "summary": "serialize tool for c/c++ basic object types, ie. int ,char ,string,time_t...",
5   "description": "Some functions that overload operation '>>' and '<<' ,make it simple\tto write or read from 'FILE'.\t\t\n\nFILE *file = fopen(\"/test.txt\", \"w\");\nint i = 1;\nchar c = 'd';\nstring str = \"test_string\";\n\n// write those to the file\nfile << i << c << str;\n\t\t\t\t\t\n// read value from file\nfile >> i >> c >> str;",
6   "homepage": "https://github.com/liaogang/serialize.git",
7   "license": "MIT",
8   "authors": {
9     "liaogang": "ynwlgh@icloud.com"
10   },
11   "platforms": {
12     "osx": "10.7"
13   },
14   "source": {
15     "git": "https://github.com/liaogang/serialize.git",
16     "tag": "v0.0.2"
17   },
18   "source_files": "*.{h,cpp}",
19   "public_header_files": "*.h"