forked from tompesman/push-apns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpush-apns.gemspec
23 lines (19 loc) · 868 Bytes
/
push-apns.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "push-apns/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "push-apns"
s.version = PushApns::VERSION
s.authors = ["Tom Pesman"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/tompesman/push-apns"
s.summary = "APNS (iOS/Apple) part of the modular push daemon."
s.description = "APNS support for the modular push daemon."
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.files = `git ls-files lib`.split("\n") + ["README.md", "MIT-LICENSE"]
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "push-core", "~> 1.0.0"
s.add_development_dependency "sqlite3"
end