Skip to content

grocer/grocer-pushpackager

Repository files navigation

Grocer::Pushpackager

Build Status Gem Version Code Climate Coverage Status

Documentation

Builds a PushPackage for Apple's APN for use with Safari/Mavericks

Installation

Add this line to your application's Gemfile:

gem 'grocer-pushpackager'

And then execute:

$ bundle

Or install it yourself as:

$ gem install grocer-pushpackager

Usage

test_icon = File.open('icon.png')
@pair = {
    key: OpenSSL::PKey::RSA.new(File.read('rsa.pem'), 'my pass phrase'),
    certificate: OpenSSL::X509::Certificate.new(File.read('apple-dev.cer'))
}
builder = Grocer::Pushpackager::Package.new({
    websiteName: "Bay Airlines",
    websitePushID: "web.com.example.domain",
    allowedDomains: ["http://domain.example.com"],
    urlFormatString: "http://domain.example.com/%@/?flight=%@",
    authenticationToken: "19f8d7a6e9fb8a7f6d9330dabe",
    webServiceURL: "https://example.com/push",
    certificate: @pair[:certificate],
    key: @pair[:key],
    iconSet: {
      :'16x16' => test_icon,
      :'16x16@2x' => test_icon,
      :'32x32' => test_icon,
      :'32x32@2x' => test_icon,
      :'128x128' => test_icon,
      :'128x128@2x' => test_icon
    }
})
builder.file # A closed Tempfile that can be read
builder.buffer # A string buffer that can be streamed out to a client

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages