-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMagicPresent.podspec
More file actions
15 lines (15 loc) · 924 Bytes
/
MagicPresent.podspec
File metadata and controls
15 lines (15 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "MagicPresent"
s.version = "1.0"
s.summary = "A lightweight Swift wrapper for custom ViewController presentations on iOS"
s.description = <<-DESC
Simplifies creating custom view controller presentations. Specially the typical ones we use which are a popup, an alert, or a any non-full-screen modal. Abstracts having to deal with custom presentation controllers and transitioning delegates
DESC
s.homepage = "http://github.com/khuong291/MagicPresent"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Khuong Pham" => "dkhuong291@gmail.com" }
s.social_media_url = "http://twitter.com/khuong291"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/khuong291/MagicPresent.git", :tag => "1.0" }
s.source_files = "MagicPresent", "MagicPresent/**/*.{h,m,swift}"
end