forked from IcaliaLabs/Presentr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presentr.podspec
16 lines (16 loc) · 928 Bytes
/
Presentr.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Presentr"
s.version = "1.3"
s.summary = "A simple Swift wrapper for custom view controller presentations."
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/icalialabs/Presentr"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniel Lozano" => "[email protected]" }
s.social_media_url = "http://twitter.com/danlozanov"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/icalialabs/Presentr.git", :tag => "1.3" }
s.source_files = "Presentr/**/*.{swift}"
s.resources = "Presentr/**/*.{xib,ttf}"
end