forked from SwiftGen/StencilSwiftKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStencilSwiftKit.podspec
32 lines (27 loc) · 1.01 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
Pod::Spec.new do |s|
s.name = 'StencilSwiftKit'
s.version = '2.7.2'
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' => 'olivier@halligon.net'
}
s.social_media_url = 'https://twitter.com/aligatr'
s.platform = :osx, '10.9'
s.swift_version = '4.2'
s.cocoapods_version = '>= 1.4.0'
s.source = {
git: 'https://github.com/SwiftGen/StencilSwiftKit.git',
tag: s.version.to_s
}
s.source_files = 'Sources/**/*.swift'
s.dependency 'Stencil', '~> 0.13.1'
s.framework = 'Foundation'
end