-
Notifications
You must be signed in to change notification settings - Fork 146
/
apn_sender.gemspec
26 lines (21 loc) · 980 Bytes
/
apn_sender.gemspec
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
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "apn/version"
Gem::Specification.new do |s|
s.name = %q{apn_sender}
s.version = APN::VERSION
s.authors = ["Kali Donovan", "Arthur Neves"]
s.summary = "Background worker to send Apple Push Notifications over a persistent TCP socket."
s.description = "Background worker to send Apple Push Notifications over a persistent TCP socket. Includes Resque tweaks to allow persistent sockets between jobs, helper methods for enqueueing APN notifications, and a background daemon to send them."
s.email = %q{[email protected]}
s.homepage = "https://github.com/arthurnn/apn_sender"
s.license = "MIT"
s.files = Dir["lib/**/*"]
s.require_paths = ['lib']
s.required_ruby_version = ">= 1.9"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "connection_pool"
s.add_dependency "activesupport", ">= 3.1", "< 6"
s.add_dependency "daemons"
end