forked from IcaliaLabs/Presentr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvipaar-Presentr.podspec
21 lines (21 loc) · 1.04 KB
/
vipaar-Presentr.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "vipaar-Presentr"
s.version = "1.9.1"
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, "14.0.0"
s.swift_version = "5.0"
s.source = { :git => "https://github.com/icalialabs/Presentr.git", :tag => s.version.to_s }
s.source_files = "Presentr/**/*.{swift}"
s.resources = "Presentr/**/*.{xib,ttf}"
s.module_name = "Presentr"
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
}
end