[Delete] YLCategory-MacOS 1.1.5
[CocoaPods.git] / Specs / 7 / 8 / 1 / KSFramework / 1.0 / KSFramework.podspec.json
blob862d0595ebd10c76d23b5cb404f302f223c8449a
2   "name": "KSFramework",
3   "version": "1.0",
4   "summary": "An iOS framework containing helpful classes and categories.",
5   "description": "An iOS framework where each component can be used without including the entire KSFramework.\n\n*KSImageAdditions*\n\nThis controller adds several useful categories to add image processing functionality to UIView, UIScrollView, and UIImage.\n\n*KSInactiveImageView*\n\nThis control acts as a UIImageView, but with the added ability to make an image appear inactive through the use of tinting, scaling, and blurring.\n\nOne potential use is locating the KSInactiveImageView in place of a view and passing in a screenshot. The screenshot can then be manipulated to make view appear inactive.\n\n*KSSlideController*\n\nThis controller allows the use of slide in view controllers on both sides of the screen. This functionality was originally seen in apps such as Facebook for presenting a menu. However, KSSlideController is not restricted to just menus. Through the use of configurable properties, a broad range of implementations can be created.\n\n*KSPullDownController*\n\nThis controller allows the use of a view controller to be pulled down do display another view controller. It can be used to create something as simple as a “pull-to-refresh” controller. However, it can also be used to present other views such as menus. Through the use of configurable properties, a broad range of implementations can be created.\n\n*KSViewShadow*\n\nThis controller adds a configurable shadow to any view that is passed to it.",
6   "homepage": "https://github.com/kickstandapps/KSFramework",
7   "license": "BSD",
8   "authors": {
9     "Kickstand Apps": "developer@kickstandapps.com"
10   },
11   "platforms": {
12     "ios": "6.0"
13   },
14   "source": {
15     "git": "https://github.com/kickstandapps/KSFramework.git",
16     "tag": "1.0"
17   },
18   "requires_arc": true,
19   "subspecs": [
20     {
21       "name": "KSImageAdditions",
22       "source_files": "KSImageAdditions/*.{h,m}",
23       "frameworks": [
24         "Accelerate",
25         "QuartzCore"
26       ]
27     },
28     {
29       "name": "KSInactiveImageView",
30       "source_files": "KSInactiveImageView/*.{h,m}",
31       "dependencies": {
32         "KSFramework/KSImageAdditions": [
34         ]
35       }
36     },
37     {
38       "name": "KSViewShadow",
39       "source_files": "KSViewShadow/*.{h,m}",
40       "frameworks": "QuartzCore"
41     },
42     {
43       "name": "KSSlideController",
44       "source_files": "KSSlideController/*.{h,m}",
45       "dependencies": {
46         "KSFramework/KSInactiveImageView": [
48         ],
49         "KSFramework/KSViewShadow": [
51         ]
52       }
53     },
54     {
55       "name": "KSPullDownController",
56       "source_files": "KSPullDownController/*.{h,m}"
57     }
58   ]