forked from tmdvs/TDBadgedCell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTDBadgedCell.podspec
23 lines (20 loc) · 933 Bytes
/
TDBadgedCell.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'TDBadgedCell'
s.version = '2.6'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'UITableViewCell subclass that adds a "badgeString" property ' \
'to table view cells.'
s.homepage = 'https://github.com/tmdvs/TDBadgedCell'
s.author = { 'Tim Davies' => '[email protected]' }
s.source = { :git => 'https://github.com/tmdvs/TDBadgedCell.git',
:tag => 'v2.6' }
s.description = 'TDBadgedCell grew out of the need for TableViewCell ' \
'badges and the lack of them in iOS. TDBadgedCell was ' \
'written originally using CGPaths but as more people ' \
'began to use TDBadgeCell the more customisation ' \
'people wanted.'
s.platform = :ios
s.source_files = 'TDBadgedCell (xcode project)/TDBadgedCell.{h,m}'
s.requires_arc = true
s.frameworks = 'QuartzCore'
end