Sha256: ce2325186da72679712712b4e79d25404aef93b644f8dfbc8044c7f1c292ffd9
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 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.18", "< 2" spec.add_dependency "connection_pool", "~> 2" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
apnotic-1.6.0 | apnotic.gemspec |
apnotic-1.5.0 | apnotic.gemspec |