pushmeup
pushmeup copied to clipboard
This gem is a wrapper to send push notifications to devices. Currently it only sends to Android or iOS devices, but more platforms will be added soon. With APNS (Apple Push Notifications Service) you...
I'm attempting to send a message to an Android device. This is the relevant content from the method I am calling ``` ruby GCM.key = "" @project_number = "" @reg_id...
There is a code in file https://github.com/NicosKaralis/pushmeup/tree/master/lib/pushmeup/apns/core.rb which returns the exception. It is ``` ruby rescue StandardError, Errno::EPIPE raise unless attempts < @retries @ssl.close #
GCM requires to use the 'Retry-After' header in case of error, and the gem return the headers only when the response code is 200 In addition: the gem support only...
This is a chunk from my irb test. Can you tell me what I might be doing wrong or is the close method in conflict with persistence? irb(main):007:0>APNS.start_persistence => true...
So I've been stumbling around the web trying to make APN keys. This involved running a lot of `openssl` commands by just cut-and-pasting things I saw on the web, without...
Crashes is a string is passed for format.
While i'm trying to send push notification to windows phone 8 using ``` pushUri = 'http://am3.notify.live.net/throttledthirdparty/01.00/XXXXXXXXXxxxXXXXXXX' title = 'My title' MPNS.send_notification(pushUri,title) ``` It throws error like uninitialized constant MPNS..Can anybody...
As the readme states that you're demanding tests for this project I like "fix" the current tests and add more Ruby versions for the CI builds as a first step.
### What? Apple support silent notifications using a flag on the **aps** called **content-available**. I've added support for that flag using a new parameter in the APNS notification class called...
I have fixed some specs as wells as added new specs by separating complex specs that existed. All specs working now. Tested the specs in 1.9.3 and 2.1.0. Both working...