What gem would you recommend for sending Push Notifications to mobile devices?
Context:
- Rails 3 app hosted on Heroku
- Small scale (Currently order of hundreds push notifications a week)
- Currently iOS only but extensible to multiple platforms (Android, WP) [Desirable, but not required]
Requirements:
- If a new spawned process, low runtime to keep heroku costs low
- Supports feedback service
- Multi platform support
Current alternatives:
- https://github.com/jwang/apn_on_rails (or one of its forks)
- https://github.com/justintv/APNS
Any suggestions/recommendations appreciated.
So far we are using UrbanAirship for push notification to devices, its ruby wrapper is also available https://github.com/groupon/urbanairship.
You can also use pusher.com which supports websocket (push can be sent on web).(heroku’s add on is also available for pusher.com)
Using any of above will just forward the request to these third parties for sending push notification and there will be no load on your herokus server.