forked from mpurbo/MMPReactiveCoreLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMPReactiveCoreLocation.podspec
29 lines (27 loc) · 1.62 KB
/
MMPReactiveCoreLocation.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
Pod::Spec.new do |s|
s.name = "MMPReactiveCoreLocation"
s.version = "0.6.2"
s.summary = "A reactive CoreLocation wrapper for use with ReactiveCocoa"
s.description = <<-DESC
MMPReactiveCoreLocation is a reactive library for using CoreLocation and iBeacon with ReactiveCocoa.
Features:
* Globally accessible signals with intelligent resource management for automatically starting and stopping underlying location manager's services.
* No more delegates, all CLLocationManager's functionalities are available as signals.
* Signals for location-related updates, including one-time location query.
* Signals for region monitoring updates, including iBeacon monitoring and ranging.
* Signals for iOS 8 visit monitoring.
* Signals for location manager status updates and errors.
* Supports iOS 8 "Always" and "WhenInUse" authorization.
DESC
s.homepage = "https://github.com/mpurbo/MMPReactiveCoreLocation"
s.license = 'MIT'
s.author = { "Mamad Purbo" => "m.purbo@gmail.com" }
s.source = { :git => "https://github.com/mpurbo/MMPReactiveCoreLocation.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/purubo'
s.platform = :ios
s.ios.deployment_target = '7.0'
s.source_files = 'Classes'
s.framework = 'CoreLocation', 'CoreBluetooth'
s.dependency 'ReactiveCocoa'
s.requires_arc = true
end