-
Notifications
You must be signed in to change notification settings - Fork 14
/
push_package.gemspec
27 lines (23 loc) · 1.16 KB
/
push_package.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
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'push_package/version'
Gem::Specification.new do |gem|
gem.name = "push_package"
gem.version = PushPackage::VERSION.dup
gem.authors = ["Stefan Natchev", "Adam Duke"]
gem.email = ["stefan.natchev@gmail.com", "adam.v.duke@gmail.com"]
gem.summary = %q{A gem for creating Safari push notification push packages.}
gem.description = %q{As of OSX 10.9 Safari can receive push notifications when it is closed.}
gem.homepage = "https://github.com/symmetricinfinity/push_package"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.4'
gem.add_runtime_dependency 'rubyzip', '~> 2.0', '>= 2.0.0'
gem.add_development_dependency 'minitest', '~> 5.8.4', '>= 5.8.4'
gem.add_development_dependency 'rake', '~> 10.0', '>= 10.0.3'
gem.add_development_dependency 'pry', '~> 0'
end