ReachabilitySwift.podspec 673 B

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