-
Notifications
You must be signed in to change notification settings - Fork 2
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
Dan
authored and
Dan
committed
Mar 25, 2019
1 parent
f004cae
commit 3c5c553
Showing
1 changed file
with
18 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,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VersionIcon' | ||
s.version = '0.9.1' | ||
s.license = 'Apache License, Version 2.0' | ||
s.summary = 'VersionIcon prepares iOS icon with ribbon, text and version info overlay' | ||
s.homepage = 'https://github.com/DanielCech/VersionIcon' | ||
s.social_media_url = 'https://twitter.com/DanielCech' | ||
s.authors = { "Daniel Čech": "[email protected]" } | ||
s.source = { :git => "https://github.com/DanielCech/VersionIcon.git", :tag => +s.version.to_s } | ||
s.platforms = { :ios => "11.0", :osx => "10.10", :tvos => "11.0", :watchos => "2.0" } | ||
s.requires_arc = true | ||
|
||
s.default_subspec = "Core" | ||
s.subspec "Core" do |ss| | ||
ss.source_files = "Bin/*" | ||
ss.framework = "Foundation" | ||
end | ||
end |