ReachabilitySwift.podspec 729 B

1234567891011121314151617181920212223
  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.deployment_target = "8.0"
  12. s.osx.deployment_target = "10.9"
  13. s.tvos.deployment_target = "9.0"
  14. s.source = {
  15. :git => 'https://github.com/ashleymills/Reachability.swift.git',
  16. :tag => 'v'+s.version.to_s
  17. }
  18. s.source_files = 'Reachability/Reachability.swift'
  19. s.framework = 'SystemConfiguration'
  20. s.requires_arc = true
  21. end