-
Notifications
You must be signed in to change notification settings - Fork 2
/
CoreDataPodSample.podspec
21 lines (19 loc) · 1.06 KB
/
CoreDataPodSample.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "CoreDataPodSample"
s.version = "0.0.7"
s.summary = "A boring description of CoreDataPodSample."
s.description = <<-DESC
A longer boring description of CoreDataPodSample in Markdown format.
* This is to test versioned CoreData models in Pods?
DESC
s.homepage = "https://github.com/Ashton-W/CoreDataPodSample"
s.license = 'MIT '
s.author = "Ashton-W"
s.platform = :ios
s.source = { :git => "https://github.com/Ashton-W/CoreDataPodSample.git", :tag => s.version.to_s }
s.source_files = 'CoreDataPodSample/Classes', 'CoreDataPodSample/Classes/CoreDataPodSample.xcdatamodeld', 'CoreDataPodSample/Classes/CoreDataPodSample.xcdatamodeld/*.xcdatamodel'
s.resources = [ 'CoreDataPodSample/Classes/CoreDataPodSample.xcdatamodeld','CoreDataPodSample/Classes/CoreDataPodSample.xcdatamodeld/*.xcdatamodel']
s.preserve_paths = 'CoreDataPodSample/Classes/CoreDataPodSample.xcdatamodeld'
s.framework = 'CoreData'
s.requires_arc = true
end