blob: fffcd88b922703069f8124d81c711a63963d6548 [file] [log] [blame]
{
"name": "OHMySQL",
"version": "2.1.0",
"summary": "A simple Objective-C wrapper for MySQL C API.",
"description": "You can connect to your remote MySQL database using OHMySQL API. It allows you doing queries in easy and object-oriented way. Common queries such as SELECT, INSERT, DELETE, JOIN are wrapped by Objective-C code and you don't need to dive into MySQL C API.",
"homepage": "https://github.com/oleghnidets/OHMySQL",
"license": "MIT",
"authors": {
"Oleg Hnidets": "oleg.oleksan@gmail.com"
},
"source": {
"git": "https://github.com/oleghnidets/OHMySQL.git",
"tag": "2.1.0"
},
"platforms": {
"ios": "8.0",
"osx": "10.9"
},
"requires_arc": true,
"source_files": [
"OHMySQL/**/*.{h,m}",
"OHMySQL/lib/include/**/**/*.{h}"
],
"private_header_files": "OHMySQL/lib/include/**/**/*.{h}",
"frameworks": "Foundation",
"ios": {
"vendored_libraries": "OHMySQL/lib/ios/libmysqlclient.a"
},
"osx": {
"vendored_libraries": "OHMySQL/lib/mac/libmysqlclient.a"
},
"libraries": "c++"
}