forked from soffes/SyntaxKit
- Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathSyntaxKit.podspec
More file actions
Latest commit
19 lines (15 loc) · 644 Bytes
/
Copy pathSyntaxKit.podspec
File metadata and controls
19 lines (15 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |spec|
spec.name='SyntaxKit'
spec.version='1.0'
spec.authors={'Sam Soffes'=>'sam@soff.es'}
spec.homepage='https://github.com/soffes/SyntaxKit'
spec.summary='TextMate-style syntax highlighting.'
spec.source={:git=>'https://github.com/soffes/SyntaxKit.git',:tag=>"v#{spec.version}"}
spec.license={:type=>'MIT',:file=>'LICENSE'}
spec.ios.deployment_target='8.0'
spec.ios.frameworks='Foundation','UIKit'
spec.osx.deployment_target='10.9'
spec.osx.frameworks='Foundation','AppKit'
spec.source_files='SyntaxKit/*.{h,m,swift}'
spec.module_name='SyntaxKit'
end