ReachabilitySwift.podspec 755 B

123456789101112131415161718192021222324
  1. Pod::Spec.new do |s|
  2. s.name = 'ReachabilitySwift'
  3. s.version = '2.4'
  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. :branch => 'swift-2.3',
  17. :tag => 'v'+s.version.to_s
  18. }
  19. s.source_files = 'Reachability/Reachability.swift'
  20. s.framework = 'SystemConfiguration'
  21. s.requires_arc = true
  22. end