forked from SwiftGen/StencilSwiftKit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStencilSwiftKit.podspec
More file actions
27 lines (22 loc) · 1019 Bytes
/
Copy pathStencilSwiftKit.podspec
File metadata and controls
27 lines (22 loc) · 1019 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
Pod::Spec.new do |s|
s.name = 'StencilSwiftKit'
s.version = '2.5.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/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.0'
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.11'
s.framework = 'Foundation'
end