mirror of
https://github.com/krzysztofzablocki/Sourcery.git
synced 2026-04-07 19:17:40 +00:00
26 lines
1.0 KiB
Ruby
26 lines
1.0 KiB
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = "SourceryUtils"
|
|
s.version = "2.2.6"
|
|
s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code."
|
|
s.platform = :osx, '10.15'
|
|
|
|
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.source_files = "SourceryUtils/Sources/**/*.swift"
|
|
|
|
s.osx.deployment_target = '10.15'
|
|
|
|
s.dependency 'PathKit'
|
|
end
|