forked from brunophilipe/LiquidKit
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLiquidKit.podspec
More file actions
Latest commit
28 lines (21 loc) · 818 Bytes
/
Copy pathLiquidKit.podspec
File metadata and controls
28 lines (21 loc) · 818 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
28
Pod::Spec.newdo |spec|
spec.name='LiquidKit'
spec.version='1.0'
spec.homepage='https://github.com/brunophilipe/LiquidKit'
spec.source={:path=>'.'}
spec.authors={'Bruno Philipe'=>'git@bruno.ph'}
spec.summary='Liquid template language parser engine in Swift.'
spec.license={:type=>'MIT'}
spec.ios.deployment_target='10.0'
spec.ios.frameworks=['Foundation']
spec.macos.deployment_target='10.12'
spec.macos.frameworks=['Foundation']
spec.tvos.deployment_target='17.0'
spec.tvos.frameworks=['Foundation']
spec.watchos.deployment_target='8.0'
spec.watchos.frameworks=['Foundation']
spec.source_files='Sources/LiquidKit/*.{h,m,swift}'
spec.module_name='LiquidKit'
spec.dependency'HTMLEntities'
spec.dependency'STRFTimeFormatter'
end