-
Notifications
You must be signed in to change notification settings - Fork 13
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
Mustafa Ibrahim
committed
Feb 6, 2014
1 parent
a752fbb
commit 5f726a9
Showing
1 changed file
with
10 additions
and
34 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,37 +1,13 @@ | ||
# | ||
# Be sure to run `pod spec lint NAME.podspec' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# To learn more about the attributes see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
Pod::Spec.new do |s| | ||
s.name = "MIBadgeButton" | ||
s.version = "0.1.0" | ||
s.summary = "A short description of MIBadgeButton." | ||
s.description = <<-DESC | ||
An optional longer description of MIBadgeButton | ||
* Markdown format. | ||
* Don't worry about the indent, we strip it! | ||
DESC | ||
s.homepage = "http://EXAMPLE/NAME" | ||
s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" | ||
s.license = 'MIT' | ||
s.author = { "Mustafa Ibrahim" => "[email protected]" } | ||
s.source = { :git => "http://EXAMPLE/NAME.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/NAME' | ||
|
||
# s.platform = :ios, '5.0' | ||
# s.ios.deployment_target = '5.0' | ||
# s.osx.deployment_target = '10.7' | ||
s.name = "MIBadgeButton" | ||
s.version = "0.0.1" | ||
s.license = {:type => "MIT"} | ||
s.homepage = "https://github.com/mustafaibrahim989/MIBadgeButton" | ||
s.authors = {"Mustafa Ibrahim" => "[email protected]"} | ||
s.summary = "iOS custom button badge designed for iOS 6&7." | ||
s.source = {:git => "https://github.com/mustafaibrahim989/MIBadgeButton.git", :tag => s.version.to_s} | ||
s.source_files = 'Classes/ios/*.{h,m}' | ||
s.requires_arc = true | ||
|
||
s.source_files = 'Classes' | ||
s.resources = 'Assets' | ||
|
||
s.ios.exclude_files = 'Classes/osx' | ||
s.osx.exclude_files = 'Classes/ios' | ||
# s.public_header_files = 'Classes/**/*.h' | ||
# s.frameworks = 'SomeFramework', 'AnotherFramework' | ||
# s.dependency 'JSONKit', '~> 1.4' | ||
s.ios.deployment_target = "6.0" | ||
s.frameworks = "UIKit" | ||
end |