-
Notifications
You must be signed in to change notification settings - Fork 6
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
Sándor Gyulai
committed
Oct 12, 2015
1 parent
075f089
commit 7f39652
Showing
2 changed files
with
86 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,33 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "InAppFw" | ||
s.version = "0.0.1" | ||
s.summary = "A short description of InAppFw." | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.requires_arc = true | ||
s.platform = :ios | ||
s.framework = "UIKit" | ||
|
||
s.description = <<-DESC | ||
A longer description of InAppFw in Markdown format. | ||
* Think: Why did you write this? What is the focus? What does it do? | ||
* CocoaPods will be using this to generate tags, and improve search results. | ||
* Try to keep it short, snappy and to the point. | ||
* Finally, don't worry about the indent, CocoaPods strips it! | ||
DESC | ||
|
||
s.homepage = "https://github.com/sandorgyulai/InAppFramework" | ||
|
||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
|
||
s.author = { "Sándor Gyulai" => "sandor.gyulai@icloud.com" } | ||
|
||
s.source = { :git => "https://github.com/sandorgyulai/InAppFramework.git", :tag => "#{s.version}" } | ||
|
||
s.source_files = "InAppFw/**/*.{swift}" | ||
|
||
s.exclude_files = "Classes/Exclude" | ||
|
||
end |
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