3e2c61ecdc
Merge branch 'master' of github.com:belkevich/Specs Conflicts: SCNetworkReachability/reachability-ios.podspec reachability-ios/1.0.0/reachability-ios.podspec reachability-ios/reachability-ios.podspec
14 lines
602 B
Ruby
14 lines
602 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "SCNetworkReachability"
|
|
s.version = "1.0.0"
|
|
s.summary = "Wrapper for SCNetworkReachability methods of SystemConfiguration.framework"
|
|
s.homepage = "https://github.com/belkevich/reachability-ios"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
|
s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" }
|
|
s.source = { :git => "https://github.com/belkevich/reachability-ios.git",
|
|
:tag => "1.0.0"}
|
|
s.platform = :ios
|
|
s.source_files = '*.{h,m}'
|
|
s.framework = 'SystemConfiguration.framework'
|
|
end
|