-
Notifications
You must be signed in to change notification settings - Fork 3
/
QueryGenie.podspec
41 lines (29 loc) · 1.31 KB
/
QueryGenie.podspec
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
30
31
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = "QueryGenie"
s.version = "1.0.0"
s.summary = "A lightweight framework for creating type-safe queries. With out-of-the-box support for CoreData and Realm."
s.homepage = "https://github.com/AnthonyMDev/QueryGenie"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Anthony Miller" => "[email protected]" }
s.social_media_url = 'https://twitter.com/AnthonyMDev'
s.source = { :git => "https://github.com/AnthonyMDev/QueryGenie.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'QueryGenie/*.swift'
end
s.subspec 'Realm' do |ss|
ss.source_files = 'QueryGenie/Realm/*.swift'
ss.dependency 'QueryGenie/Core'
ss.dependency 'RealmSwift', '~> 2.4'
end
s.subspec 'CoreData' do |ss|
ss.source_files = 'QueryGenie/CoreData/*.swift'
ss.dependency 'QueryGenie/Core'
ss.framework = 'CoreData'
end
end