mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
5901d3075f
This bumps the minimum version required to build SwiftLint to 4.2. The primary motivating factor to drop support for Swift 4.0-4.1.x is that SwiftLint now uses CryptoSwift, which requires 4.2. * Add changelog entry * Remove --allow-warnings flag from CocoaPods commands * Update CryptoSwift to 0.13.0 * Migrate to Swift 4.2 * Remove CircleCI tests for Swift < 4.2 * Update English and Chinese README Korean README doesn't yet have a version table like this. * Update gems * Add changelog entry for fixed compiler warnings * Update CocoaPods to 1.6.0.beta.2 To work around https://github.com/CocoaPods/CocoaPods/issues/7708
16 lines
789 B
Ruby
16 lines
789 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 'CryptoSwift', '~> 0.13'
|
|
s.dependency 'SourceKittenFramework', '~> 0.21'
|
|
s.dependency 'Yams', '~> 1.0'
|
|
end
|