ReachabilitySwift.podspec 596 B

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