Latest | 1.0 |
---|---|
Homepage | https://github.com/DavidBarry/DBKit |
License | MIT |
Platforms | ios 6.0, requires ARC |
Authors |
DBKit is a collection of code that I find useful in many of the applications that I write. DBKit uses ARC and is compatible with iOS 5.0 or greater(though it must be built with the iOS6 SDK).
Adding DBKit with Cocoapods
Simply add the following to your Podfile:
pod "DBKit"
Alternatively, if you only want DBKit without DBCoreData, or if you want just DBCoreData you can use the following subspecs:
pod "DBKit/DBKit"
pod "DBKit/DBCoreData"
Manually adding DBKit to your project
Add DBKit to your project
- Copy the
DBKit
andDBKitResources
folders into your project
Add DBCoreData to your project
DBCoreData is a separate staic library that can optionally be included in projects that use Core Data.
- Copy the
DBCoreData
folder into your project.
Latest podspec
{ "name": "DBKit", "version": "1.0", "summary": "A collection of code I use across all of my apps.", "homepage": "https://github.com/DavidBarry/DBKit", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "David Barry": "[email protected]" }, "source": { "git": "https://github.com/DavidBarry/DBKit.git", "tag": "1.0" }, "platforms": { "ios": "6.0" }, "requires_arc": true, "subspecs": [ { "name": "DBKitCore", "source_files": "DBKitShared/*.{h,m}" }, { "name": "DBKit", "source_files": "DBKit/*.{h,m}", "frameworks": [ "QuartzCore", "CoreGraphics" ], "dependencies": { "DBKit/DBKitCore": [] } }, { "name": "DBCoreData", "source_files": "DBCoreData/*.{h,m}", "frameworks": "CoreData", "dependencies": { "DBKit/DBKitCore": [] } } ] }
Fri, 04 Mar 2016 18:17:05 +0000