forked from SwiftGen/StencilSwiftKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStencilSwiftKit.podspec
27 lines (20 loc) · 959 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
27
Pod::Spec.new do |s|
s.name = "StencilSwiftKit"
s.version = "1.0.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.8.0'
s.framework = "Foundation"
end