mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
7abbd847e3
must push one spec at a time, and if more than one exists, must specify them by name. Also include the 'LICENSE' file in the portable zip and let SwiftLint.podspec know about it.
11 lines
470 B
Ruby
11 lines
470 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SwiftLint'
|
|
s.version = `make get_version`
|
|
s.summary = 'A tool to enforce Swift style and conventions.'
|
|
s.homepage = 'https://github.com/realm/SwiftLint'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'JP Simard' => 'jp@jpsim.com' }
|
|
s.source = { :http => "#{s.homepage}/releases/download/#{s.version}/portable_swiftlint.zip" }
|
|
s.preserve_paths = '*'
|
|
end
|