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
30 lines (26 loc) · 1.07 KB
/
QueryKit.podspec
File metadata and controls
30 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |spec|
spec.name = 'QueryKit'
spec.version = '0.11.0'
spec.summary = 'A simple type-safe Core Data query language.'
spec.homepage = 'http://querykit.org/'
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.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.watchos.deployment_target = '2.0'
spec.frameworks = 'CoreData'
spec.subspec 'ObjectiveC' do |objc_spec|
objc_spec.source_files = 'QueryKit/QueryKit.h', 'QueryKit/ObjectiveC/QK{QuerySet,Attribute}.{h,m}'
end
spec.subspec 'Swift' do |swift_spec|
swift_spec.source_files = 'QueryKit/*.swift'
end
spec.subspec 'Bridge' do |bridge_spec|
bridge_spec.dependency 'QueryKit/Swift'
bridge_spec.dependency 'QueryKit/ObjectiveC'
bridge_spec.source_files = 'QueryKit/ObjectiveC/QK{Attribute,QuerySet}.swift'
end
end