Sha256: c172a21d19e2a3b3f7e19e73be0c6c0db0365af1d0e7f1b55dd2dc10ea07afed
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'apnotic/version' Gem::Specification.new do |spec| spec.name = "apnotic" spec.version = Apnotic::VERSION spec.licenses = ['MIT'] spec.authors = ["Roberto Ostinelli"] spec.email = ["roberto@ostinelli.net"] spec.summary = %q{Apnotic is an Apple Push Notification gem able to provide instant feedback.} spec.homepage = "http://github.com/ostinelli/apnotic" spec.required_ruby_version = '>=2.1.0' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "net-http2", "~> 0.13.0" spec.add_dependency "connection_pool", "~> 2.0" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
apnotic-0.10.2 | apnotic.gemspec |