| { |
| "name": "ErnKit", |
| "version": "0.0.10", |
| "summary": "ErnKit is a framework for simplifying the development of well structured Objective-C apps.", |
| "homepage": "http://github.com/ernstsson/ErnKit", |
| "license": "MIT", |
| "authors": { |
| "Magnus Ernstsson": "magnus@ernstsson.net" |
| }, |
| "source": { |
| "git": "https://github.com/ernstsson/ErnKit.git", |
| "tag": "v0.0.10" |
| }, |
| "platforms": { |
| "ios": "5.0" |
| }, |
| "requires_arc": true, |
| "default_subspecs": [ |
| "Core" |
| ], |
| "subspecs": [ |
| { |
| "name": "Core", |
| "source_files": "Source/ErnKit/**/*.{h,m}", |
| "frameworks": "Foundation" |
| }, |
| { |
| "name": "UIKitIntegration", |
| "source_files": "Source/ErnKitUIKitIntegration/**/*.{h,m}", |
| "dependencies": { |
| "ErnKit/Core": [ |
| |
| ] |
| }, |
| "frameworks": [ |
| "Foundation", |
| "UIKit", |
| "CoreGraphics" |
| ] |
| }, |
| { |
| "name": "MapKitIntegration", |
| "source_files": "Source/ErnKitMapKitIntegration/**/*.{h,m}", |
| "dependencies": { |
| "ErnKit/Core": [ |
| |
| ], |
| "ErnKit/UIKitIntegration": [ |
| |
| ] |
| }, |
| "frameworks": [ |
| "Foundation", |
| "UIKit", |
| "MapKit", |
| "CoreLocation", |
| "CoreGraphics" |
| ] |
| }, |
| { |
| "name": "RestKitIntegration", |
| "source_files": "Source/ErnKitRestKitIntegration/**/*.{h,m}", |
| "dependencies": { |
| "ErnKit/Core": [ |
| |
| ], |
| "RestKit": [ |
| |
| ] |
| }, |
| "frameworks": "Foundation" |
| }, |
| { |
| "name": "CoreProtocolTest", |
| "source_files": "ProtocolTests/ErnKit/**/*.{h,m}", |
| "dependencies": { |
| "OCMock": [ |
| |
| ], |
| "OCHamcrest": [ |
| |
| ] |
| }, |
| "frameworks": "Foundation" |
| }, |
| { |
| "name": "UIKitIntegrationProtocolTest", |
| "source_files": "ProtocolTests/ErnKitUIKitIntegration/**/*.{h,m}", |
| "dependencies": { |
| "OCMock": [ |
| |
| ], |
| "OCHamcrest": [ |
| |
| ] |
| }, |
| "frameworks": [ |
| "Foundation", |
| "UIKit", |
| "CoreGraphics" |
| ] |
| }, |
| { |
| "name": "MapKitIntegrationProtocolTest", |
| "source_files": "ProtocolTests/ErnKitMapKitIntegration/**/*.{h,m}", |
| "dependencies": { |
| "OCMock": [ |
| |
| ], |
| "OCHamcrest": [ |
| |
| ] |
| }, |
| "frameworks": [ |
| "Foundation", |
| "UIKit", |
| "CoreGraphics", |
| "MapKit" |
| ] |
| } |
| ] |
| } |