Skip to content

Instantly share code, notes, and snippets.

@ahanmal
Last active January 3, 2016 23:09
Show Gist options
  • Save ahanmal/8533390 to your computer and use it in GitHub Desktop.
Save ahanmal/8533390 to your computer and use it in GitHub Desktop.
TDBadgedCell 2.4 With ARC
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