-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathReusable.podspec.json
More file actions
54 lines (52 loc) · 1.93 KB
/
Reusable.podspec.json
File metadata and controls
54 lines (52 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Reusable",
"cocoapods_version": "~> 1.4",
"version": "4.1.1",
"summary": "A Swift Mixin to deal with reusable UITableView & UICollectionView cells and XIB-based views",
"description": "Reusable is a [Swift Mixin](http://alisoftware.github.io/swift/protocol/2015/11/08/mixins-over-inheritance/)\nto easily deal with your reusable UITableViewCell and UICollectionViewCell classes.\n\nSimply mark your `UITableViewCell` or `UICollectionViewCell` sublcasses as\nconforming to either `Reusable` or `NibReusable` and you'll be able to\nmanipulate them way easier, and without worrying with String-type reuseIdentifiers\never again, and instead use them in a type-safe manner!\n\nReusable also support marking any arbitrary `UIView` subclass as `NibLoadable` so that\nyou can then call `loadFromNib()` on the custom view class easily without adding any code.\n\nFor more info, see [my blog post](http://alisoftware.github.io/swift/generics/2016/01/06/generic-tableviewcells/)\nabout this technique.",
"homepage": "https://github.com/AliSoftware/Reusable",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Olivier Halligon": "olivier@halligon.net"
},
"social_media_url": "http://twitter.com/aligatr",
"platforms": {
"ios": "8.0",
"tvos": "9.0"
},
"source": {
"git": "https://github.com/AliSoftware/Reusable.git",
"tag": "4.1.1"
},
"swift_versions": "5.0",
"frameworks": "UIKit",
"subspecs": [
{
"name": "Bundled",
"source_files": [
"Sources/Bundle/Bundled.swift",
"Sources/Bundle/BundledSelf.swift"
]
},
{
"name": "View",
"dependencies": {
"Reusable/Bundled": [
]
},
"source_files": "Sources/View/*.swift"
},
{
"name": "Storyboard",
"dependencies": {
"Reusable/Bundled": [
]
},
"source_files": "Sources/Storyboard/*.swift"
}
],
"swift_version": "5.0"
}