-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJKBlurPopup.podspec
25 lines (21 loc) · 975 Bytes
/
JKBlurPopup.podspec
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
Pod::Spec.new do |s|
s.name = "JKBlurPopup"
s.version = "1.0.0"
s.summary = "Create a popupview with blur background,using swift"
s.homepage = "https://github.com/Jinkeycode/JKBlurPopup"
# s.screenshots = "https://github.com/Jinkeycode/JKBlurPopup/blob/master/JKBlurPopup.gif"
s.license = 'MIT'
s.author = { "Jinkey" => "jinkeyh.com" }
s.source = { :git => "https://github.com/Jinkeycode/JKBlurPopup.git", :tag => s.version.to_s }
# s.social_media_url = ''
s.platform = :ios, '4.3'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'JKBlurPopup/*'
# s.resources = 'Assets'
# s.ios.exclude_files = 'Classes/osx'
# s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'
end