-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeyValueObservation.podspec
34 lines (27 loc) · 1.35 KB
/
KeyValueObservation.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 = "KeyValueObservation"
s.version = "1.0.7"
s.summary = "A small KVO helper library"
s.description = <<-DESC
A small KVO helper library that provides a NSObject and a NSArray category for observing key value changes using blocks
DESC
s.homepage = "https://github.com/SomeRandomiOSDev/KeyValueObservation"
s.license = "MIT"
s.author = { "Joe Newton" => "[email protected]" }
s.source = { :git => "https://github.com/SomeRandomiOSDev/KeyValueObservation.git", :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/KeyValueObservation/**/*.{h,m}'
s.public_header_files = 'Sources/KeyValueObservation/include/*.h'
s.test_spec 'Tests' do |ts|
ts.ios.deployment_target = '9.0'
ts.macos.deployment_target = '10.10'
ts.tvos.deployment_target = '9.0'
ts.watchos.deployment_target = '2.0'
ts.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_TARGET_SRCROOT}/Sources/KeyValueObservation/include' }
ts.preserve_paths = 'Sources/KeyValueObservation/include/*.modulemap'
ts.source_files = 'Tests/KeyValueObservationTests/*.m'
end
end