forked from SwiftGen/SwiftGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftGenKit.podspec
29 lines (24 loc) · 1.08 KB
/
SwiftGenKit.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
Pod::Spec.new do |s|
s.name = 'SwiftGenKit'
s.version = '2.1.1'
s.summary = 'The SwiftGen framework responsible for parsing assets and turn them ' \
'in a dictionary representation suitable for Stencil templates'
s.description = <<-DESC
This pod contains asset parsers for
[SwiftGen](https://github.com/SwiftGen/SwiftGen), as well as
methods for converting the data into contexts for
[Stencil](https://github.com/kylef/Stencil).
DESC
s.homepage = 'https://github.com/SwiftGen/SwiftGenKit'
s.license = 'MIT'
s.author = { 'Olivier Halligon' => '[email protected]' }
s.social_media_url = 'https://twitter.com/aligatr'
s.platform = :osx, '10.9'
s.swift_version = '4.1'
s.cocoapods_version = '>= 1.4.0'
s.source = { git: 'https://github.com/SwiftGen/SwiftGenKit.git', tag: s.version.to_s }
s.source_files = 'Sources/**/*.swift'
s.dependency 'Kanna'
s.dependency 'PathKit', '~> 0.8.0'
s.framework = 'Foundation'
end