ReachabilitySwift.podspec 627 B

123456789101112131415161718192021
  1. Pod::Spec.new do |s|
  2. s.name = 'ReachabilitySwift'
  3. s.version = '1.0'
  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. # Source Info
  10. s.ios.platform = :ios, "8.0"
  11. s.osx.platform = :osx, "10.10"
  12. s.source = {
  13. :git => 'https://github.com/ashleymills/Reachability.swift',
  14. :tag => s.version.to_s
  15. }
  16. s.source_files = 'Reachability.swift'
  17. s.framework = 'SystemConfiguration'
  18. s.requires_arc = true
  19. end