diff --git a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec index ce5354f9..69039ea8 100644 --- a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec +++ b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec @@ -21,7 +21,7 @@ Pod::Spec.new do |s| if config.ios? s.dependency 'Reachability', '~> 2.0', '>= 2.0.4' s.source_files = 'Classes' - s.frameworks = 'SystemConfiguration', 'MobileCoreServices', 'CFNetwork' + s.frameworks = 'MobileCoreServices', 'CFNetwork' else s.source_files = FileList['Classes/*.*'].exclude(/ASIAuthenticationDialog\.\w$/) s.frameworks = 'SystemConfiguration', 'CoreServices' diff --git a/Reachability/2.0.4/Reachability.podspec b/Reachability/2.0.4/Reachability.podspec index 4d89589d..6a048460 100644 --- a/Reachability/2.0.4/Reachability.podspec +++ b/Reachability/2.0.4/Reachability.podspec @@ -6,5 +6,6 @@ Pod::Spec.new do |s| s.authors = 'Apple', 'Donoho Design Group, LLC' s.summary = 'A wrapper for the SystemConfiguration Reachablity APIs.' s.source_files = 'External/Reachability' + s.framework = 'SystemConfiguration' s.header_dir = s.name end diff --git a/Reachability/2.0.5/Reachability.podspec b/Reachability/2.0.5/Reachability.podspec new file mode 100644 index 00000000..ce695a83 --- /dev/null +++ b/Reachability/2.0.5/Reachability.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = 'Reachability' + s.version = '2.0.5' + s.homepage = 'https://github.com/tonymillion/Reachability' + s.authors = { 'Tony Million' => 'tonymillion@gmail.com' } + s.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X. Drop in replacement for Apple Reachability.' + s.source = { :git => 'https://github.com/tonymillion/Reachability.git', :commit => '9f32bf3c0d1047a22173f5bd4dcaeecde7b84d21' } + s.source_files = 'Reachability.{h,m}' + s.framework = 'SystemConfiguration' + s.requires_arc = true +end