mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
85a19d310b
Commandant 5100432 -> 50789d7 Result 3.2.1 -> 3.2.2 SourceKitten 0.17.1 -> 0.17.4 SWXMLHash 3.0.4 -> 3.1.0 Yams 0.3.1 -> 0.3.2
15 lines
740 B
Ruby
15 lines
740 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SwiftLintFramework'
|
|
s.version = `make get_version`
|
|
s.summary = 'A tool to enforce Swift style and conventions.'
|
|
s.homepage = 'https://github.com/realm/SwiftLint'
|
|
s.source = { :git => s.homepage + '.git', :tag => s.version }
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'JP Simard' => 'jp@jpsim.com' }
|
|
s.platform = :osx, '10.10'
|
|
s.source_files = 'Source/SwiftLintFramework/**/*.swift'
|
|
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
|
|
s.dependency 'SourceKittenFramework', '= 0.17.4'
|
|
s.dependency 'Yams', '= 0.3.2'
|
|
end
|