KVOController.podspec 1.3 KB

12345678910111213141516171819202122232425
  1. Pod::Spec.new do |spec|
  2. spec.name = 'KVOController'
  3. spec.version = '1.2.0'
  4. spec.license = { :type => 'BSD' }
  5. spec.homepage = 'https://github.com/facebook/KVOController'
  6. spec.authors = { 'Kimon Tsinteris' => 'kimon@mac.com', 'Nikita Lutsenko' => 'nlutsenko@me.com' }
  7. spec.summary = 'Simple, modern, thread-safe key-value observing.'
  8. spec.description = <<-DESC
  9. KVOController builds on Cocoa's time-tested key-value observing implementation. It offers a simple, modern API, that is also thread safe.
  10. Benefits include:
  11. Notification using blocks, custom actions, or NSKeyValueObserving callback.
  12. No exceptions on observer removal.
  13. Implicit observer removal on controller dealloc.
  14. Thread-safety with special guards against observer resurrection.
  15. DESC
  16. spec.source = { :git => 'https://github.com/facebook/KVOController.git', :tag => "v#{spec.version.to_s}" }
  17. spec.source_files = 'FBKVOController/*.{h,m}'
  18. spec.requires_arc = true
  19. spec.ios.deployment_target = '9.0'
  20. spec.osx.deployment_target = '10.11'
  21. spec.tvos.deployment_target = '9.0'
  22. spec.watchos.deployment_target = '2.0'
  23. spec.visionos.deployment_target = '1.0'
  24. end