blob: 80feb57e78b48a51ac26b70b1447c4dbe2bc7ac3 [file] [log] [blame]
{
"name": "Fox",
"version": "1.0.0",
"summary": "A property-based testing library",
"description": " Why write tests when you can generate them? Fox is a port of Clojure's\n popular test.check.\n\n Specify your tests in terms of properties your code should hold. Fox's job is\n to generate tests to find a counter-example that your property does not hold.\n\n Fox will also shrink the counter-example to the smallest possible example\n to make it easier to debug failures.\n",
"homepage": "https://github.com/jeffh/Fox",
"license": {
"type": "Apache 2.0",
"file": "LICENSE.md"
},
"authors": {
"Jeff Hui": "jeff@jeffhui.net"
},
"platforms": {
"ios": "8.0",
"osx": "10.10"
},
"source": {
"git": "https://github.com/jeffh/Fox.git",
"tag": "v1.0.0"
},
"source_files": "Fox/**/*.{h,m,mm}",
"public_header_files": "Fox/Public/**/*.h",
"requires_arc": true,
"libraries": "c++",
"xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++0x",
"CLANG_CXX_LIBRARY": "libc++"
}
}