forked from tmdvs/TDBadgedCell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTDBadgedCell.podspec
More file actions
23 lines (19 loc) · 925 Bytes
/
TDBadgedCell.podspec
File metadata and controls
23 lines (19 loc) · 925 Bytes
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.4.2'
s.license = { :type => 'Custom', :file => 'README.markdown' }
s.summary = 'UITableViewCell subclass that adds a "badgeString" property ' \
'to table view cells.'
s.homepage = 'https://github.com/tmdvs/TDBadgedCell'
s.author = { 'Tim Davies' => 'hi@tmdvs.me' }
s.source = { :git => 'https://github.com/tmdvs/TDBadgedCell.git',
:tag => 'v2.4.2' }
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.frameworks = 'QuartzCore'
end