[Add] YLProgressHUD 0.0.2
[CocoaPods.git] / Specs / 4 / 8 / 5 / SwiftDefaults / 0.1.3 / SwiftDefaults.podspec.json
blob89d199aad4ef2a8a6b2b1d7e6c6954d4e049b73b
2   "name": "SwiftDefaults",
3   "version": "0.1.3",
4   "summary": "SwiftDefaults provides accessing to NSUserDefaults using property.",
5   "description": "SwiftDefaults provides accessing to NSUserDefaults using property.\n\n```swift\nimport SwiftDefaults\n\nclass MyDefaults: SwiftDefaults {\n    dynamic var value: String? = \"10\"\n    dynamic var value2: String = \"10\"\n    dynamic var value3: Int = 1\n}\n\nprint(MyDefaults().value) // \"10\"\nprint(MyDefaults().value2) // \"10\"\nMyDefaults().value2 = \"2\"\nprint(MyDefaults().value2) // \"2\"\n```",
6   "homepage": "https://github.com/shimesaba9/SwiftDefaults",
7   "license": "MIT",
8   "authors": {
9     "shimesaba9": "hshs012@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/shimesaba9/SwiftDefaults.git",
13     "tag": "0.1.3"
14   },
15   "social_media_url": "https://twitter.com/shimesaba43",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "requires_arc": true,
20   "source_files": "Pod/Classes/**/*"