-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaxter.podspec
34 lines (28 loc) · 1.48 KB
/
Baxter.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
Pod::Spec.new do |s|
s.name = 'Baxter'
s.version = '2.0.1'
s.summary = 'Baxter is a iOS/macOS/tvOS/watchOS framework that extends the CoreData framework.'
s.description = <<-DESC
Baxter is a iOS/macOS/tvOS/watchOS framework that extends the `CoreData` framework. It provides methods to simplify fetching and importing.
DESC
s.homepage = 'https://github.com/Kosoku/Baxter'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.author = { 'William Towe' => '[email protected]' }
s.source = { :git => 'https://github.com/Kosoku/Baxter.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Baxter/**/*.{h,m}'
s.exclude_files = 'Baxter/Baxter-Info.h'
s.osx.exclude_files = 'Baxter/KBAFetchedResultsObserver.{h,m}'
s.tvos.exclude_files = 'Baxter/KBAFetchedResultsObserver.{h,m}', 'Baxter/KBAFetchedResultsController.{h,m}'
s.watchos.exclude_files = 'Baxter/KBAFetchedResultsObserver.{h,m}', 'Baxter/KBAFetchedResultsController.{h,m}'
s.private_header_files = 'Baxter/Private/*.h'
s.ios.frameworks = 'Foundation', 'CoreData', 'UIKit'
s.osx.frameworks = 'Foundation', 'CoreData'
s.tvos.frameworks = 'Foundation', 'CoreData'
s.watchos.frameworks = 'Foundation', 'CoreData'
s.dependency 'Stanley'
end