forked from peter/apn_client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapn_client.gemspec
More file actions
24 lines (20 loc) · 1.02 KB
/
apn_client.gemspec
File metadata and controls
24 lines (20 loc) · 1.02 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
$:.push File.expand_path("../lib", __FILE__)
require "apn_client/version"
Gem::Specification.new do |s|
s.name = "apn_client"
s.version = ApnClient::VERSION
s.authors = ["Peter Marklund"]
s.email = ["peter@marklunds.com"]
s.homepage = ""
s.summary = %q{Library for sending Apple Push Notifications to iOS devices from Ruby}
s.description = %q{Uses the "enhanced format" Apple protocol and deals with errors and failures when broadcasting to many devices. Includes support for talking to the Apple Push Notification Feedback service for dealing with uninstalled apps.}
s.rubyforge_project = "apn_client"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "json"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "yard"
end