forked from facebookarchive/KVOController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KVOController.podspec
24 lines (23 loc) · 1.27 KB
/
KVOController.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
Pod::Spec.new do |spec|
spec.name = 'KVOController'
spec.version = '1.2.0'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/facebook/KVOController'
spec.authors = { 'Kimon Tsinteris' => '[email protected]', 'Nikita Lutsenko' => '[email protected]' }
spec.summary = 'Simple, modern, thread-safe key-value observing.'
spec.description = <<-DESC
KVOController builds on Cocoa's time-tested key-value observing implementation. It offers a simple, modern API, that is also thread safe.
Benefits include:
Notification using blocks, custom actions, or NSKeyValueObserving callback.
No exceptions on observer removal.
Implicit observer removal on controller dealloc.
Thread-safety with special guards against observer resurrection.
DESC
spec.source = { :git => 'https://github.com/facebook/KVOController.git', :tag => "v#{spec.version.to_s}" }
spec.source_files = 'FBKVOController/*.{h,m}'
spec.requires_arc = true
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.7'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '2.0'
end