forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CocoaPods#5339 from el-eleven/master
Add EEToolbarCenterButton version 0.0.1
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "EEToolbarCenterButton" | ||
s.version = "0.0.1" | ||
s.summary = "A featured button at the center of UIToolbar." | ||
s.description = <<-DESC | ||
EEToolbarCenterButton is a component to add a featured button to the center of UIToolbar. It handles button alignment, and helps you use button images whose height is larger than UIToolbar height. | ||
DESC | ||
s.homepage = "https://github.com/el-eleven/EEToolbarCenterButton" | ||
s.screenshots = "https://raw.github.com/el-eleven/EEToolbarCenterButton/master/Images/Screenshot.jpg" | ||
s.license = 'MIT' | ||
s.author = { "Yoichi Tagaya" => "[email protected]" } | ||
s.platform = :ios, '5.0' | ||
s.source = { :git => "https://github.com/el-eleven/EEToolbarCenterButton.git", :tag => s.version.to_s } | ||
s.source_files = 'Classes/*.{h,m}' | ||
s.framework = 'CoreGraphics' | ||
s.requires_arc = true | ||
end |