-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathSuperRecord.podspec
More file actions
27 lines (23 loc) · 895 Bytes
/
SuperRecord.podspec
File metadata and controls
27 lines (23 loc) · 895 Bytes
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
# One Day this will work...
Pod::Spec.new do |s|
s.name = "SuperRecord"
s.version = "1.6"
s.summary = "A Swift CoreData extension to bring some love and take the hassle out of common CoreData tasks."
s.homepage = "http://superarmstrong.uk"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Michael Armstrong"
s.source = {
:git => "https://github.com/michaelarmstrong/SuperRecord.git",
:tag => s.version,
:branch => 'master'
}
s.ios.deployment_target = '8.0'
s.source_files = 'SuperRecord/*.swift'
s.requires_arc = true
s.subspec 'watch' do |ss|
ss.watchos.deployment_target = '2.0'
ss.source_files = 'SuperRecord/*.swift'
ss.requires_arc = true
ss.exclude_files = 'SuperRecord/NSFetchedResultsControllerExtension.swift' , 'SuperRecord/SuperFetchedResultsControllerDelegate.swift'
end
end