Latest | 0.5 |
---|---|
Homepage | http://github.com/danthorpe/DNTFeatures |
License | MIT |
Platforms | ios 7.0, requires ARC |
Dependencies | YapDatabase |
Authors |
no README.md available
Latest podspec
{ "name": "DNTFeatures", "version": "0.5", "summary": "An Objective-C library to provide Feature flags and debug options.", "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 then default value from a server to enable features in production. This cann be used for powerful release strategies, such as turning on a featuren 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 developmentn or QA. E.g. Enable Verbose Logging for a particular feature.nn", "homepage": "http://github.com/danthorpe/DNTFeatures", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "Daniel Thorpe": "[email protected]" }, "social_media_url": "http://twitter.com/danthorpe", "platforms": { "ios": "7.0" }, "source": { "git": "https://github.com/danthorpe/DNTFeatures.git", "tag": "0.5" }, "source_files": "sources/*.{h,m}", "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 #endifn ", "resources": [ "sources/*.{storyboard,xib}", "resources/*.{storyboard,xib}" ], "requires_arc": true, "xcconfig": { "DNTFEATURES_VERSION": "0.5" }, "dependencies": { "YapDatabase": [ "~> 2" ] } }
Tue, 01 Mar 2016 02:20:02 +0000