-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathBottomPopup.podspec
More file actions
27 lines (16 loc) · 805 Bytes
/
BottomPopup.podspec
File metadata and controls
27 lines (16 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "BottomPopup"
s.version = "0.7.1"
s.summary = "BottomPopup provides a popup-like presentation style to any view controller"
s.homepage = "https://github.com/ergunemr/BottomPopup"
s.screenshots = "https://media.giphy.com/media/MRWZQ2PUS0NSeCytPx/giphy.gif", "https://media.giphy.com/media/3bzmRH74e9wL6XKNnG/giphy.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Emre" => "ergunemr@itu.edu.tr" }
s.platform = :ios
s.ios.deployment_target = '10.0'
s.source = { :git => "https://github.com/ergunemr/BottomPopup.git", :tag => "#{s.version}" }
s.source_files = "BottomPopup/BottomPopupController/*.{swift}"
s.framework = "UIKit"
s.swift_version = "4.2"
s.requires_arc = true
end