ReachabilitySwift.podspec 906 B

123456789101112131415161718192021222324252627
  1. Pod::Spec.new do |s|
  2. s.name = 'ReachabilitySwift'
  3. s.version = '5.2.2'
  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 = "12.0"
  13. s.osx.deployment_target = "10.13"
  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.resource_bundles = {"ReachabilitySwift" => ["Sources/PrivacyInfo.xcprivacy"]}
  21. s.framework = 'SystemConfiguration'
  22. s.ios.framework = 'CoreTelephony'
  23. s.requires_arc = true
  24. s.swift_version = '5.0'
  25. end