forked from TanguyAladenise/BBBadgeBarButtonItem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BBBadgeBarButtonItem.podspec
16 lines (16 loc) · 995 Bytes
/
BBBadgeBarButtonItem.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = 'BBBadgeBarButtonItem'
spec.version = '1.1'
spec.platform = 'ios'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/TanguyAladenise/BBBadgeBarButtonItem'
spec.authors = { 'Tanguy Aladenise' => '[email protected]' }
spec.summary = 'Badge value on top of BarButtonItem'
spec.source = { :git => 'https://github.com/TanguyAladenise/BBBadgeBarButtonItem.git', :tag => '1.1' }
spec.source_files = 'BBBadgeBarButtonItem/BBBadgeBarButtonItem.{h,m}'
spec.description = <<-DESC
Create a BarButtonItem with a badge on top. Easily customizable. Your BarButtonItem can be any custom view you wish for. The badge on top can display any number or string of any size or length. Reproducing the behavior of a badge value on a tabBarItem in a Navigation Bar.
DESC
spec.requires_arc = true
spec.screenshots = "https://github.com/TanguyAladenise/BBBadgeBarButtonItem/blob/master/screenshot.png"
end