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",
12 "stareta1202": "stareta1202@gmail.com"
15 "git": "https://github.com/stareta1202/AddThen.git",
21 "source_files": "Sources/AddThen/Classes/**/*",
22 "swift_versions": "5.0",
23 "swift_version": "5.0"