[Add] TrinityAudioSDK 3.2.118
[CocoaPods.git] / Specs / c / 6 / b / NSAttributedStringBuilder / 0.1 / NSAttributedStringBuilder.podspec.json
blob36ec171cb657d0875e9be6ec59998d95ea801726
2   "name": "NSAttributedStringBuilder",
3   "version": "0.1",
4   "summary": "Locatable is a micro-framework that exposes a Function Builder to compose attributed strings",
5   "description": "NSAttributedStringBuilder is a Swift micro framework that leverages Function Builders to implement syntactic sugar that lets you intuitively compose attributed strings.\n\nInstead of writing:\n\nlet attributedString = NSMutableAttributedString(string: \"Hello\", attributes: [.font: UIFont.systemFont(ofSize: 24), .foregroundColor: UIColor.red])\nattributedString(NSAttributedString(string: \" world!\", attributes: [.font: UIFont.systemFont(ofSize: 20), .foregroundColor: UIColor.orange]))\n\nYou can now write:\n\nlet attributedString = NSAttributedString.composing {\n    NSAttributedString(string: \"Hello\", attributes: [.font: UIFont.systemFont(ofSize: 24), .foregroundColor: UIColor.red])\n    NSAttributedString(string: \" world!\", attributes: [.font: UIFont.systemFont(ofSize: 20), .foregroundColor: UIColor.orange])\n}",
6   "homepage": "https://github.com/vincent-pradeilles/NSAttributedStringBuilder",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Vincent Pradeilles": "vin.pradeilles+NSAttributedStringBuilder@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/vincent-pradeilles/NSAttributedStringBuilder.git",
16     "tag": "0.1"
17   },
18   "swift_versions": "5.1",
19   "platforms": {
20     "ios": "9.0"
21   },
22   "frameworks": "Foundation",
23   "source_files": "NSAttributedStringBuilder/**/*.swift",
24   "swift_version": "5.1"