-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMMPReactiveNotification.podspec
More file actions
27 lines (25 loc) · 1.34 KB
/
Copy pathMMPReactiveNotification.podspec
File metadata and controls
27 lines (25 loc) · 1.34 KB
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
Pod::Spec.new do |s|
s.name = "MMPReactiveNotification"
s.version = "0.4.1"
s.summary = "Local and remote push notifications as reactive signals with ReactiveCocoa"
s.description = <<-DESC
MMPReactiveNotification is a reactive library providing signals for local and remote push notifications.
Features:
* No more notification related delegate methods, registration and notifications are available as signals.
* Signal for remote push registration.
* Signal for receiving remote notifications.
* Signal for receiving local notifications.
* Signal for notification settings registration.
* Local notification scheduling.
DESC
s.homepage = "https://github.com/mpurbo/MMPReactiveNotification"
s.license = 'MIT'
s.author = { "Mamad Purbo" => "m.purbo@gmail.com" }
s.source = { :git => "https://github.com/mpurbo/MMPReactiveNotification.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.dependency 'ReactiveCocoa'
s.requires_arc = true
end