[Add] SampleOTP 0.1.0
[CocoaPods.git] / Specs / 2 / 8 / 9 / DNTFeatures / 0.5 / DNTFeatures.podspec.json
bloba32d0dce6b5ed4838d9e01256c3a2bcaa4ac2bc7
2   "name": "DNTFeatures",
3   "version": "0.5",
4   "summary": "An Objective-C library to provide Feature flags and debug options.",
5   "description": "                   Use feature flags to hide code which is still in development.\n                   \n                   DNTFeatures provides classes to register flags, query the state of a \n                   flag, and present a view controller to switch the flags on or off.\n                   \n                   Extend this mechanism by allowing server control of flags, update the\n                   default value from a server to enable features in production. This can\n                   be used for powerful release strategies, such as turning on a feature\n                   gradually over a user base, or restrict features to user/market slices.\n                   \n                   Additionally, you can define debug options for feature to further \n                   control behaviour or allow additional configuration during development\n                   or QA. E.g. Enable Verbose Logging for a particular feature.\n\n",
6   "homepage": "http://github.com/danthorpe/DNTFeatures",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Daniel Thorpe": "danthorpe@me.com"
13   },
14   "social_media_url": "http://twitter.com/danthorpe",
15   "platforms": {
16     "ios": "7.0"
17   },
18   "source": {
19     "git": "https://github.com/danthorpe/DNTFeatures.git",
20     "tag": "0.5"
21   },
22   "source_files": "sources/*.{h,m}",
23   "prefix_header_contents": "\n  #ifdef __OBJC__    \n    #define DNT_WEAK_SELF __weak __typeof(&*self)weakSelf = self;\n    #define DNT_STRING(value) (@#value)\n    #define DNT_YESNO(value) value ? @\"YES\" : @\"NO\"\n    #define DNT_PRETTY_METHOD NSStringFromSelector(_cmd)\n  #endif\n  ",
24   "resources": [
25     "sources/*.{storyboard,xib}",
26     "resources/*.{storyboard,xib}"
27   ],
28   "requires_arc": true,
29   "xcconfig": {
30     "DNTFEATURES_VERSION": "0.5"
31   },
32   "dependencies": {
33     "YapDatabase": [
34       "~> 2"
35     ]
36   }