- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStylizer.podspec
More file actions
Latest commit
34 lines (27 loc) · 1.11 KB
/
Copy pathStylizer.podspec
File metadata and controls
34 lines (27 loc) · 1.11 KB
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.newdo |s|
s.name="Stylizer"
s.version="0.1.0"
s.summary="Extendable class library for parsing string attributes"
s.description=<<-DESC
A small library that provides an extendable framework and classes for parsing attributes from strings
DESC
s.homepage="https://github.com/SomeRandomiOSDev/Stylizer"
s.license="MIT"
s.author={"Joe Newton"=>"somerandomiosdev@gmail.com"}
s.source={:git=>"https://github.com/SomeRandomiOSDev/Stylizer.git",:tag=>s.version.to_s}
s.ios.deployment_target='9.0'
s.macos.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
s.subspec'Core'do |ss|
ss.source_files='Sources/Stylizer/Extensions/*.swift',
'Sources/Stylizer/Stylizer/*.swift'
end
s.subspec'UI'do |ss|
ss.source_files='Sources/Stylizer/UI/*.swift'
ss.dependency'Stylizer/Core'
end
s.default_subspecs='Core','UI'
s.swift_versions=['5.0']
s.cocoapods_version='>= 1.7.3'
end