forked from 0xced/SGVReachability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSGVReachability.podspec
33 lines (21 loc) · 984 Bytes
/
SGVReachability.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "SGVReachability"
s.version = "1.0.0"
s.summary = "Simple reachability wrapper for iOS."
s.description = <<-DESC
Simple reachability wrapper for iOS.
* Thread-safe
* Non-blocking
* Provides access to raw reachability flags structure
* Can post notifications on reachability change to a given NSOperationQueue
DESC
s.homepage = "https://github.com/sanekgusev/SGVReachability"
s.license = "MIT"
s.author = { "Alexander Gusev" => "sanekgusev@gmail.com" }
s.social_media_url = "http://twitter.com/sanekgusev"
s.platform = :ios, "4.3"
s.source = { :git => "https://github.com/sanekgusev/SGVReachability.git", :tag => "1.0.0" }
s.source_files = "src"
s.frameworks = "Foundation", "SystemConfiguration"
s.requires_arc = true
end