forked from SwiftGen/StencilSwiftKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StencilSwiftKit.podspec
26 lines (20 loc) · 950 Bytes
/
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
Pod::Spec.new do |s|
s.name = 'StencilSwiftKit'
s.version = '2.3.0'
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/kylef/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]' }
s.social_media_url = 'https://twitter.com/aligatr'
s.platform = :osx, '10.9'
s.source = { git: 'https://github.com/SwiftGen/StencilSwiftKit.git', tag: s.version.to_s }
s.source_files = 'Sources/**/*.swift'
s.dependency 'Stencil', '~> 0.10'
s.framework = 'Foundation'
end