Last active
January 3, 2016 23:09
-
-
Save ahanmal/8533390 to your computer and use it in GitHub Desktop.
TDBadgedCell 2.4 With ARC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'TDBadgedCell' | |
s.version = '2.4' | |
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' => '[email protected]' } | |
s.source = { :git => 'https://github.com/tmdvs/TDBadgedCell.git', | |
:tag => 'v2.4' } | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment