Sha256: cf2272485ba05d88b16a9b63079383bd238da25a0c389bb33d8a8a04f11f6004

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "apn_client/version"

Gem::Specification.new do |s|
  s.name        = "apn_client"
  s.version     = ApnClient::VERSION
  s.authors     = ["Peter Marklund"]
  s.email       = ["peter@marklunds.com"]
  s.homepage    = ""
  s.summary     = %q{Library for sending Apple Push Notifications to iOS devices from Ruby}
  s.description = %q{Uses the "enhanced format" Apple protocol and deals with errors and failures when broadcasting to many devices. Includes support for talking to the Apple Push Notification Feedback service for dealing with uninstalled apps.}

  s.rubyforge_project = "apn_client"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_development_dependency "json"
  s.add_development_dependency "rspec"
  s.add_development_dependency "mocha"
  s.add_development_dependency "yard"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
apn_client-0.0.4 apn_client.gemspec
apn_client-0.0.3 apn_client.gemspec
apn_client-0.0.2 apn_client.gemspec
apn_client-0.0.1 apn_client.gemspec