25 lines
918 B
Ruby
25 lines
918 B
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = "SwiftGen"
|
|
s.version = "5.1.1"
|
|
s.summary = "A collection of Swift tools to generate Swift code for your assets, storyboards, strings, …"
|
|
|
|
s.description = <<-DESC
|
|
A collection of Swift tools to generate Swift code constants (enums or static lets) for:
|
|
* asset catalogs,
|
|
* colors,
|
|
* fonts
|
|
* localized strings,
|
|
* storyboards,
|
|
* … and more
|
|
DESC
|
|
|
|
s.homepage = "https://github.com/SwiftGen/SwiftGen"
|
|
s.license = "MIT"
|
|
s.author = { "Olivier Halligon" => "olivier@halligon.net" }
|
|
s.social_media_url = "https://twitter.com/aligatr"
|
|
|
|
s.source = { :http => "https://github.com/SwiftGen/SwiftGen/releases/download/#{s.version}/swiftgen-#{s.version}.zip" }
|
|
s.preserve_paths = '*'
|
|
end
|