forked from QueryKit/QueryKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryKit.podspec
More file actions
19 lines (18 loc) · 767 Bytes
/
QueryKit.podspec
File metadata and controls
19 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = 'QueryKit'
spec.version = '0.14.1'
spec.summary = 'A simple type-safe Core Data query language.'
spec.homepage = 'https://github.com/QueryKit/QueryKit/'
spec.license = { :type => 'BSD', :file => 'LICENSE' }
spec.social_media_url = 'https://twitter.com/QueryKit'
spec.source = { :git => 'https://github.com/QueryKit/QueryKit.git', :tag => "#{spec.version}" }
spec.requires_arc = true
spec.swift_versions = ['5.0', '5.1']
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.frameworks = 'CoreData'
spec.source_files = 'Sources/QueryKit/*.swift'
end