-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKeyValueObservation.podspec
More file actions
30 lines (23 loc) · 1.35 KB
/
KeyValueObservation.podspec
File metadata and controls
30 lines (23 loc) · 1.35 KB
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
Pod::Spec.new do |s|
s.name = "KeyValueObservation"
s.version = "1.0.4"
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.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 = { :git => "https://github.com/SomeRandomiOSDev/KeyValueObservation.git", :tag => s.version.to_s }
s.test_spec do |ts|
ts.source_files = 'Tests/KeyValueObservationTests/*.m'
end
s.public_header_files = 'Sources/KeyValueObservation/NSObject+KeyValueObservation.h', 'Sources/KeyValueObservation/NSArray+KeyValueObservation.h', 'Sources/KeyValueObservation/SRDKeyValueObservation.h', 'Sources/KeyValueObservation/SRDKeyValueObservedChange.h', 'Sources/KeyValueObservation/SRDKVOInfo.h'
s.source_files = 'Sources/KeyValueObservation/**/*.{h,m}'
s.frameworks = 'Foundation'
s.requires_arc = true
end