forked from TanguyAladenise/BBBadgeBarButtonItem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBBBadgeBarButtonItem.podspec
More file actions
16 lines (16 loc) · 1011 Bytes
/
BBBadgeBarButtonItem.podspec
File metadata and controls
16 lines (16 loc) · 1011 Bytes
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.2'
spec.platform = 'ios'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/TanguyAladenise/BBBadgeBarButtonItem'
spec.authors = { 'Tanguy Aladenise' => 'tanguy.aladenise@gmail.com' }
spec.summary = 'Badge value on top of BarButtonItem'
spec.source = { :git => 'https://github.com/TanguyAladenise/BBBadgeBarButtonItem.git', :tag => spec.version }
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?raw=true"
end