forked from realm/SwiftLint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftLint.podspec
More file actions
15 lines (15 loc) · 751 Bytes
/
SwiftLint.podspec
File metadata and controls
15 lines (15 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = '*'
s.exclude_files = '**/file.zip'
s.ios.deployment_target = '11.0'
s.macos.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '7.0'
end