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
Latest commit
18 lines (17 loc) · 703 Bytes
/
Copy pathQueryKit.podspec
File metadata and controls
18 lines (17 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |spec|
spec.name='QueryKit'
spec.version='0.13.0'
spec.summary='A simple type-safe Core Data query language.'
spec.homepage='http://querykit.org/'
spec.license={:type=>'BSD',:file=>'LICENSE'}
spec.author={'Kyle Fuller'=>'kyle@fuller.li'}
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.tvos.deployment_target='9.0'
spec.frameworks='CoreData'
spec.source_files='QueryKit/*.swift'
end