-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14612da
commit acd7357
Showing
1 changed file
with
15 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "BBBadgeBarButtonItem" | ||
s.version = "1.0" | ||
s.summary = "Badge value on top of BarButtonItem" | ||
s.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 | ||
s.homepage = "https://github.com/TanguyAladenise/BBBadgeBarButtonItem" | ||
s.screenshots = "https://github.com/TanguyAladenise/BBBadgeBarButtonItem/blob/master/screenshot.png" | ||
s.license = 'MIT' | ||
s.author = { "TanguyAladenise" => "[email protected]" } | ||
s.source = { :git => "https://github.com/TanguyAladenise/BBBadgeBarButtonItem.git", :tag => '1.0' } | ||
s.source_files = 'BBBadgeBarButtonItem/BBBadgeBarButtonItem.{h,m}' | ||
s.platform = :ios, '6.0' | ||
s.requires_arc = true | ||
|
||
end | ||
Pod::Spec.new do |spec| | ||
spec.name = 'BBBadgeBarButtonItem' | ||
spec.version = '1.0' | ||
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.0' } | ||
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 |