[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / 2 / f / e / AddThen / 1.0.3 / AddThen.podspec.json
blob854ead1ce6b7f738d6c96cbb58c124b9aa5bbf82
2   "name": "AddThen",
3   "version": "1.0.3",
4   "summary": "🎨 View instance sugar for Swift & UIKit",
5   "description": "# AddThen\n\n[![CI Status](https://img.shields.io/travis/stareta1202/AddThen.svg?style=flat)](https://travis-ci.org/stareta1202/AddThen)\n[![Version](https://img.shields.io/cocoapods/v/AddThen.svg?style=flat)](https://cocoapods.org/pods/AddThen)\n[![License](https://img.shields.io/cocoapods/l/AddThen.svg?style=flat)](https://cocoapods.org/pods/AddThen)\n[![Platform](https://img.shields.io/cocoapods/p/AddThen.svg?style=flat)](https://cocoapods.org/pods/AddThen)\n\n🎨 View instance sugar for Swift & UIKit\n## Example\n\nMake View code with AddThen\n```swift\n\nlet label = UILabel()\nlabel.backgroundColor = .red\nlabel.text = \"Hello, World\"\n\n...\n\nview.addSubview(label)\n```\n\nThis is equivalent to :\n```swift\nlet label = UILabel()\n\n...\n\nview.add(label) {\n  $0.backgroundColor = .red\n  $0.text = \"Hello, World!\"\n}\n\n```\n\n## Requirements\n\n- iOS 9.0+ (11.0+ recommended)\n- Xcode 12.0+\n- Swfit 5.0\n\n## Installation\n\nAddThen is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'AddThen'\n```\n\n## Author\n\nYongjun Lee, stareta1202@gmail.com\nChanwoo Cho, https://github.com/GREENOVER\n\n## License\n\nAddThen is available under the MIT license. See the LICENSE file for more info.",
6   "homepage": "https://github.com/stareta1202/AddThen",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "stareta1202": "stareta1202@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/stareta1202/AddThen.git",
16     "tag": "1.0.3"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "source_files": "Sources/AddThen/Classes/**/*",
22   "swift_versions": "5.0",
23   "swift_version": "5.0"