Builds a PushPackage for Apple's APN for use with Safari/Mavericks
Add this line to your application's Gemfile:
gem 'grocer-pushpackager'
And then execute:
$ bundle
Or install it yourself as:
$ gem install grocer-pushpackager
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request