ReachabilitySwift.podspec 826 B

1234567891011121314151617181920212223242526
  1. Pod::Spec.new do |s|
  2. s.name = 'ReachabilitySwift'
  3. s.version = '2.3.3'
  4. s.homepage = 'https://github.com/ashleymills/Reachability.swift'
  5. s.authors = {
  6. 'Ashley Mills' => 'ashleymills@mac.com'
  7. }
  8. s.summary = 'Replacement for Apple\'s Reachability re-written in Swift with callbacks.'
  9. s.license = { :type => 'MIT' }
  10. # Source Info
  11. s.ios.platform = :ios, "9.2"
  12. s.osx.platform = :osx, "10.11"
  13. s.tvos.platform = :tvos, "9.1"
  14. s.ios.deployment_target = "8.0"
  15. s.osx.deployment_target = "10.9"
  16. s.tvos.deployment_target = "9.0"
  17. s.source = {
  18. :git => 'https://github.com/ashleymills/Reachability.swift.git',
  19. :tag => 'v'+s.version.to_s
  20. }
  21. s.source_files = 'Reachability/Reachability.swift'
  22. s.framework = 'SystemConfiguration'
  23. s.requires_arc = true
  24. end