-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWCParsePush.podspec
More file actions
25 lines (21 loc) · 1.05 KB
/
WCParsePush.podspec
File metadata and controls
25 lines (21 loc) · 1.05 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
Pod::Spec.new do |s|
s.name = "WCParsePush"
s.version = "1.2"
s.summary = "Lightweight Push Notifications with Parse."
s.description = <<-DESC
This small library provides simple interface to the Parse Push Notification Service without the need to include the full Parse iOS SDK. It inlcudes:
* Device installation registration
* Channel subscribe/unsubscribe
* Async and synchoronous save methods
* Save eventually also after app restart
DESC
s.homepage = "https://github.com/baspellis/WCParsePush"
s.license = 'MIT'
s.author = { "Bas Pellis" => "bas@pellis.nl" }
s.source = { :git => "https://github.com/baspellis/WCParsePush.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/baspellis'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'WCParsePush'
s.dependency 'KSReachability', '~> 1.4'
end