-
Notifications
You must be signed in to change notification settings - Fork 146
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
Showing
1 changed file
with
14 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,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'OBShapedButton' | ||
s.version = '1.0.1' | ||
s.license = 'MIT' | ||
s.summary = 'A UIButton subclass that works with non-rectangular button shapes.' | ||
s.homepage = 'https://github.com/ole/OBShapedButton' | ||
s.author = { 'Ole Begemann' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/ole/OBShapedButton.git', :tag => '1.0.1' } | ||
s.description = 'Instances of OBShapedButton respond to touches only in areas where the image that is assigned to the button for UIControlStateNormal is non-transparent.' | ||
s.platform = :ios | ||
s.source_files = 'OBShapedButton/**/*.{h,m}', 'UIImage+ColorAtPixel/**/*.{h,m}' | ||
|
||
s.requires_arc = false | ||
end |