-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEABlurView.podspec
34 lines (28 loc) · 1.07 KB
/
EABlurView.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
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'EABlurView'
s.module_name = 'EABlurView'
s.version = '1.0.0'
s.summary = 'Dynamic Blur View.'
s.homepage = 'https://github.com/Bushtit/EABlurView'
s.license = { type: 'MIT', file: 'LICENSE.md' }
s.authors = { 'Bushtit Lab' => 'admin@meniny.cn' }
s.social_media_url = 'https://meniny.cn/'
# s.screenshot = ''
s.ios.deployment_target = '8.0'
# s.osx.deployment_target = '10.10'
# s.tvos.deployment_target = '9.0'
# s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source = { git: 'https://github.com/Bushtit/EABlurView.git', tag: s.version.to_s }
#s.source_files = 'RepoName/**/*.swift'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.swift_version = '5'
# s.documentation_url = 'https://meniny.cn/EABlurView/docs'
#s.dependency ""
s.default_subspecs = 'Core'
s.frameworks = 'Foundation', 'UIKit'
s.subspec 'Core' do |sp|
sp.frameworks = 'Foundation', 'UIKit'
sp.source_files = 'EABlurView/Core/**/*.swift'
end
end