blob: 0dcdce78428b6f13c7444f6cfbf3ceb863bc744a [file] [log] [blame]
{
"name": "DjangoConsumer",
"version": "0.4.0",
"summary": "A Swift framework trying to make swiftly consuming a Django Rest Framework API quite effortless.",
"description": "DjangoConsumer (or DC?) is a small assemblage of protocols and structs that should be useful\nto communicate with a Django API through a simple, hopefully quite swifty interface.\n\nYou define your models, make them conform to one small protocol, write a few lines of general \nconfiguration and get started with consuming your Django API.\n\n// TODO: Add code examples\n\nMore detailed configurations configurations are possible if necessary.\n\n// TODO: Add code examples",
"homepage": "https://github.com/JanNash/DjangoConsumer",
"license": {
"type": "BSD-3-Clause",
"file": "LICENSE"
},
"authors": {
"Jan Nash": "jnash@jnash.de"
},
"platforms": {
"ios": "9.0"
},
"source": {
"git": "https://github.com/JanNash/DjangoConsumer.git",
"tag": "v0.4.0"
},
"dependencies": {
"Alamofire-SwiftyJSON": [
"~> 3.0.0"
]
},
"default_subspecs": "Core",
"subspecs": [
{
"name": "Core",
"source_files": "DjangoConsumer/Source/Core/**/*.swift"
},
{
"name": "OAuth2",
"source_files": "DjangoConsumer/Source/OAuth2/**/*.swift",
"dependencies": {
"DjangoConsumer/Core": [
]
}
},
{
"name": "Testing",
"source_files": "DjangoConsumer/Source/Testing/**/*.swift",
"dependencies": {
"DjangoConsumer/Core": [
]
}
}
]
}