ReachabilitySwift.podspec 823 B

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