-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSWindow.podspec
16 lines (16 loc) · 887 Bytes
/
SWindow.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SWindow"
s.version = "0.2.0"
s.summary = "Swift view controller presenter."
s.description = <<-DESC
SWindow is an easy to use Swift windows manager. Don't spend hours writing your code to present and dismiss modal view controllers, stop wasting your time on debugging why your modal presentation disapear. Without issues, simple and safe present your controller!
DESC
s.homepage = "https://github.com/shial4/SWindow.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Szymon Lorenz" => "shial184686@gmail.com" }
s.social_media_url = "https://www.facebook.com/SLSolutionsAU/"
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/shial4/SWindow.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "UIKit"
end