blob: 086fba6dec75e3fafe116bf7e52edb81f805ec96 [file] [log] [blame]
{
"name": "DjangoConsumer",
"version": "0.1.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.1.0"
},
"dependencies": {
"Alamofire-SwiftyJSON": [
"~> 3.0.0"
]
},
"default_subspecs": "Core",
"pushed_with_swift_version": "4.0",
"subspecs": [
{
"name": "Core",
"source_files": "DjangoConsumer/Source/Core/**/*.swift"
},
{
"name": "OAuth2",
"source_files": "DjangoConsumer/Source/OAuth2/**/*.swift",
"dependencies": {
"DjangoConsumer/Core": [
]
}
},
{
"name": "MockBackend",
"source_files": "DjangoConsumer/Source/MockBackend/**/*.swift",
"dependencies": {
"DjangoConsumer/Core": [
],
"Embassy": [
"~> 4.0.0"
],
"EnvoyAmbassador": [
"~> 4.0.1"
]
}
}
]
}