Skip to content

Commit

Permalink
Add deployment targets to iOS/macOS/watchos/tvos
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Nov 8, 2020
1 parent 45f7aaa commit 2d94fee
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions SwiftLint.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,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' => '[email protected]' }
s.source = { http: "#{s.homepage}/releases/download/#{s.version}/portable_swiftlint.zip" }
s.preserve_paths = '*'
s.exclude_files = '**/file.zip'
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' => '[email protected]' }
s.source = { http: "#{s.homepage}/releases/download/#{s.version}/portable_swiftlint.zip" }
s.preserve_paths = '*'
s.exclude_files = '**/file.zip'
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end

0 comments on commit 2d94fee

Please sign in to comment.