forked from VladasZ/iOSTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiOSTools.podspec
More file actions
executable file
·27 lines (19 loc) · 905 Bytes
/
iOSTools.podspec
File metadata and controls
executable file
·27 lines (19 loc) · 905 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 = 'iOSTools'
s.version = '0.15.12'
s.summary = "iOS tools kit to make your life easier."
s.homepage = "https://github.com/VladasZ/iOSTools"
s.author = { 'Vladas Zakrevskis' => '146100@gmail.com' }
s.source = { :git => 'https://github.com/VladasZ/iOSTools.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Sources/Common/**/*.swift'
s.watchos.source_files = 'Sources/watchOS/**/*.swift'
s.ios.source_files = 'Sources/iOS/**/*.swift'
s.license = 'MIT'
s.ios.resources = ['Sources/iOS/Views/SwipyImageView/*.xib',
'Sources/iOS/Views/ProgressView/*.xib',
'Sources/iOS/Views/BannerAlertView/*.xib']
s.dependency 'SwiftyTools'
s.ios.dependency 'CustomIOSAlertView'
end