-
Notifications
You must be signed in to change notification settings - Fork 99
/
ZLImageEditor.podspec
26 lines (18 loc) · 984 Bytes
/
ZLImageEditor.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
Pod::Spec.new do |s|
s.name = 'ZLImageEditor'
s.version = '2.0.3'
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust.'
s.homepage = 'https://github.com/longitachi/ZLImageEditor'
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = {'longitachi' => '[email protected]'}
s.source = {:git => 'https://github.com/longitachi/ZLImageEditor.git', :tag => s.version}
s.ios.deployment_target = '10.0'
s.swift_versions = ['5.0', '5.1', '5.2']
s.requires_arc = true
s.frameworks = 'UIKit', 'Accelerate'
s.resources = 'Sources/*.{png,bundle}'
s.subspec "Core" do |sp|
sp.source_files = ["Sources/**/*.{swift,h,m}", "Sources/ZLImageEditor.h"]
sp.exclude_files = ["Sources/General/ZLWeakProxy.swift"]
end
end