Pod::Spec.new do |s| s.name = 'ReachabilitySwift' s.version = '4.3.1' s.module_name = 'Reachability' s.homepage = 'https://github.com/ashleymills/Reachability.swift' s.authors = { 'Ashley Mills' => 'ashleymills@mac.com' } s.summary = 'Replacement for Apple\'s Reachability re-written in Swift with callbacks.' s.license = { :type => 'MIT' } # Source Info s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.10" s.tvos.deployment_target = "9.0" s.source = { :git => 'https://github.com/ashleymills/Reachability.swift.git', :tag => 'v'+s.version.to_s } s.source_files = 'Sources/Reachability.swift' s.framework = 'SystemConfiguration' s.ios.framework = 'CoreTelephony' s.requires_arc = true s.swift_version = '5.0' end