-
Notifications
You must be signed in to change notification settings - Fork 4
/
Extra.podspec
36 lines (27 loc) · 1.26 KB
/
Extra.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
35
36
Pod::Spec.new do |s|
s.name = 'Extra'
s.version = '1.3.1'
s.summary = 'Swift library with usefull and lightfull extensions for your Cocoa Touch projects.'
s.homepage = 'https://github.com/smartnsoft/Extra'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Smart&Soft' => '[email protected]' }
s.source = { :git => 'https://github.com/smartnsoft/Extra.git', :tag => s.version.to_s }
s.swift_versions = '5'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.ios.frameworks = 'UIKit', 'Foundation', 'QuartzCore'
s.default_subspec = 'UIKit', 'Foundation', 'CoreAnimation'
s.subspec 'UIKit' do |sp|
sp.source_files = 'Extra/Classes/Extra/**/*.{swift}', 'Extra/Classes/UIKit/**/*.{swift}'
end
s.subspec 'Foundation' do |sp|
sp.source_files = 'Extra/Classes/Extra/**/*.{swift}', 'Extra/Classes/Foundation/**/*.{swift}'
end
s.subspec 'CoreAnimation' do |sp|
sp.source_files = 'Extra/Classes/Extra/**/*.{swift}', 'Extra/Classes/CoreAnimation/**/*.{swift}'
end
s.subspec 'Realm' do |sp|
sp.source_files = 'Extra/Classes/Extra/**/*.{swift}','Extra/Classes/Realm/**/*.{swift}'
sp.dependency 'RealmSwift', '~> 4.4.0'
end
end