-
Notifications
You must be signed in to change notification settings - Fork 58
/
StencilSwiftKit.podspec
33 lines (28 loc) · 1.06 KB
/
StencilSwiftKit.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
Pod::Spec.new do |s|
s.name = 'StencilSwiftKit'
s.version = '2.10.1'
s.summary = 'Stencil additions dedicated for Swift code generation'
s.description = <<-DESC
This pod contains some additional nodes and filters for
[Stencil](https://github.com/stencilproject/Stencil).
These additional nodes & filters are mainly dedicated
for writing Stencil templates generating *Swift* code.
DESC
s.homepage = 'https://github.com/SwiftGen/StencilSwiftKit'
s.license = 'MIT'
s.author = {
'Olivier Halligon' => '[email protected]',
'David Jennes' => '[email protected]'
}
s.social_media_url = 'https://twitter.com/aligatr'
s.platform = :osx, '10.9'
s.swift_versions = ['5.0']
s.cocoapods_version = '>= 1.9.0'
s.source = {
git: 'https://github.com/SwiftGen/StencilSwiftKit.git',
tag: s.version.to_s
}
s.source_files = 'Sources/**/*.swift'
s.dependency 'Stencil', '~> 0.14.0'
s.framework = 'Foundation'
end