-
-
Notifications
You must be signed in to change notification settings - Fork 624
/
Sourcery.podspec
29 lines (24 loc) · 1.15 KB
/
Sourcery.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 = "Sourcery"
s.version = "2.2.5"
s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code."
s.ios.deployment_target = '12'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '12'
s.watchos.deployment_target = '4'
s.description = <<-DESC
A tool that brings meta-programming to Swift, allowing you to code generate Swift code.
* Featuring daemon mode that allows you to write templates side-by-side with generated code.
* Using SourceKit so you can scan your regular code.
DESC
s.homepage = "https://github.com/krzysztofzablocki/Sourcery"
s.license = 'MIT'
s.author = { "Krzysztof Zabłocki" => "krzysztof.zablocki@pixle.pl" }
s.social_media_url = "https://twitter.com/merowing_"
s.source = { :http => "https://github.com/krzysztofzablocki/Sourcery/releases/download/#{s.version}/sourcery-#{s.version}.zip" }
s.preserve_paths = '*'
s.exclude_files = '**/file.zip'
s.subspec 'CLI-Only' do |subspec|
subspec.preserve_paths = "bin"
end
end