Tagged Questions
3
votes
1answer
124 views
postgres LISTEN/NOTIFY rails
Ryan Bates mentions the LISTEN/NOTIFY functionality of Postgres when discussing push notifications in this episode, but I haven't been able to find any hint on how to implement a LISTEN/NOTIFY in my ...
2
votes
0answers
30 views
Using Rapns with Mongoid [closed]
I have a rails application in which I have configured two databases. 1. Postgresql and 2. MongoDb. So I have database.yml for Postgresql and mongoid.yml MongoDb.
I'm using rapns to do push ...
0
votes
1answer
46 views
how to add a push notification system like on stackoverflow (red number notification) in my rails 3 app? [closed]
I want to add a push notification pop-up like you see on stackoverflow. When a user comments you get a notification. I want to implement something similar on my rails 3 app. Is there a good gem for ...
0
votes
0answers
18 views
Pull Vs Push - different timezones
I have an app that needs to send regular push notifications to the clients (browsers via HTML5 websockets). The timing for the push is like : every hour when the clock strikes :15 , :30 and :45 minute ...
0
votes
0answers
142 views
APN (Grocer Gem) sslv3 alert certificate unknown error
When I send a message I get this error in the sidekiq console,
SSL_connect returned=1 errno=0 state=SSLv3 read finished A: sslv3 alert certificate unknown
I saw a similar error for people using ...
0
votes
2answers
136 views
Communicate to Android App via Rails Server- send data from app to server?
I have a Ruby on Rails app running which has a database of telephone numbers. I need to run apps on 5 different phones such that they get a notification from the Rails server with a phone number (this ...
0
votes
1answer
145 views
creating a 3rd party application server using rails to send gcm push notifications
I am new to rails and i wanted to know whether i would be able to change my existing server in rails to a 3rd party application server by adding the gem gcm_on_rails . I have installed the gem in this ...
0
votes
0answers
50 views
3rd party application server for ruby on rails [closed]
I needed a help on using the 3rd party application server for GCM services and also for using the gem dondeng / gcm_on_rails in rails.A good tutorial about GCM using rails and about 3rd party ...
0
votes
0answers
32 views
Using apn_on_rails with multiple applications
I'm trying to use apn_on_rails in my server to send notifications to my apps. This server supports multiple apps.
How can I check which app I'm using when creating a new device? The app only has ...
0
votes
0answers
133 views
Sending push notification from google calendar
I need to create an app in ruby that sends push notification to a server when a new event is created in google calendar.
the application should not search calendar for new events, but it should get a ...
1
vote
1answer
231 views
Call Socket.io from Rail Active:Record callback or observer
The good folks at LayerVault posted a easy way to add 'real-time' features on existing Ruby application without resorting to client side MCV or rewrite the entire app in Node.js, a while back. Their ...
0
votes
1answer
120 views
could not connect to APNS(Apple Push Notifications Server) using Rails, apn_sender gem
I am using Rails 3.2.2 and apn_sender 1.0.5 gem. I have generated proper apn_development.pem and apn_production.pem. I have added them in my rails application. By looking at some article, i have ...
-1
votes
1answer
76 views
What are suitable client-side frameworks for an iOS app with a Rails backend? [closed]
I'm building a native iOS app that will have a Ruby on Rails backend (on Heroku).
What client frameworks for data access should I consider?
Bonus question: any frameworks/best practices for using ...
3
votes
2answers
745 views
Push notifications to mobile applications in Rails 3
I am working on a project in Ruby 1.9.3 and Rails 3 and I am looking for a gem to send push notifications to my iOS app and to my Android app. I found speedy_c2dm for android worth useful.
But,I am ...
2
votes
1answer
618 views
Android Gcm Not working with ROR
I read basic example for implementing google gcm. I developed small client side android application which successfully gives me registration id from gcm server.. now on server side I am using Ruby on ...
0
votes
0answers
302 views
Rails, heroku and proximo problems
i'm having problems implementing push notifications on my rails - heroku app:
i'm using gcm (simple_gcm gem) and heroku's Proximo add on.
I've added my local machine IP and the static IP i got from ...
0
votes
2answers
630 views
Push Notifications using Rails server
I have a rails server and a backend. Is it possible to send a push message using my rails server to both iPhone and android app?
2
votes
1answer
529 views
uninitialized constant APN::App::RAILS_ENV
I'm struggling with this error after I fire the command rake apn:notifications:deliver on the APN on Rails gem that I've installed.
It's barking about the RAILS_ENV variable. I've tried a couple of ...
0
votes
1answer
111 views
how to send notification to another user in rails
im trying to create a badge system similar to stackoverflows. i noticed that stackoverflow is able to send a notification to another user. for example, if i create a question, and 10 people upvoted my ...
0
votes
3answers
229 views
Notifications to iOS, Android, BlackBerry from a Rails app
I have a rails application and I would like to send notifications to users on their mobile. I only need simple text notifications, but I can't afford to write an application for any operating system.
...
7
votes
2answers
505 views
Gmail push notifications in Rails
I am developing an application where users add their Gmail accounts, and I do some classification work on their emails.
I want to be notified when a new email comes to any of the registered accounts.
...
0
votes
4answers
1k views
iOS Push Notifications not working for Distribution
I have tried the Push Notification for my application for development and it's working fine. When I am generating the .p12 file of production(distribution) it's getting created. After deployin .pem ...
1
vote
3answers
1k views
Rails on Heroku gem for mobile push notifications
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 ...
0
votes
1answer
628 views
Using rapns on heroku for push notification
I'm using gem rapns (https://github.com/ileitch/rapns) on my rails app.
According to rapns doc, I need to run
bundle exec rapns
to kick start the daemon process which checks database for new ...
0
votes
1answer
74 views
Socky connection failure
I get this kind of log when ever i start socky server
>> Thin web server (v1.2.11 codename Bat-Shit Crazy)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3001, CTRL+C to ...
0
votes
2answers
256 views
App for push notifications
Do i need to create mobile apps to send push notifications on iphone and blackberry.
Currently i have a website in written in rails and want to integrate push notifications on it.
0
votes
1answer
139 views
How to get mobile device id using rails?
How to get the mobile device id or token to send push notifications using apn_on_rails.
0
votes
3answers
303 views
Push notification using rails web application
Is there any gem or plugin which can be used to send push alerts on iphone, blackberry, and android.
0
votes
1answer
224 views
How can i send push alerts using Rails?
I want to know if one can send push alerts using rails.
If yes, is there any tutorial or plugin for this.
1
vote
2answers
554 views
A notification system to track user activity on Rails
I'm working on a gem that would generate notifications based on event triggers. For Example, in a CMS, if an article is created, a notification "Article x created by user y" would be generated. (like ...
4
votes
3answers
3k views
Push notification using Urban AirShip and Rails 3 for iphone
What is the best way to send push notifications through Urban AirShip using a Rails 3 web app?
From Urban Airship documentation:
An HTTP POST to /api/push/broadcast/
sends the given ...
0
votes
1answer
1k views
How do I implement a Rails push notification service consumer over XML/HTTP?
I'm trying to write an XML over HTTP push notification consumer that accepts the push notifications and parses the XML and saves the data in the database. I've looked at the Nokogiri gem which is a ...
19
votes
2answers
4k views
How would you create a notification system like on SO or Facebook in RoR?
I'm thinking that notifications would be it's own resource and have a has_many, through relationship with the user model with a join table representing the associations.
A user having many ...
11
votes
6answers
4k views
polling with delayed_job
I have a process which takes generally a few seconds to complete so I'm trying to use delayed_job to handle it asynchronously. The job itself works fine, my question is how to go about polling the ...
1
vote
2answers
591 views
rails parse push notifications
Im playing around with Recurly, the app enables real time push notifications.
My question is what is best pratice and how do I parse the incomming XML, the XML look like this.
<?xml version="1.0" ...
1
vote
0answers
388 views
no response from apple server for push notifications - using apn_on_rails
I am a newbie to developing apps on Apple. i am using apn_on_rails and set up the developer certificate in the config folder. I am using the console to test the sample notifications as given in the ...
3
votes
5answers
563 views
Communication between a Rails web app and a Mac app
I have a Rails web app that is used to gather data from an iOS device running an app I have developed.
The Rails web server will be handling communication with the Apple Push Notification service, so ...
2
votes
1answer
261 views
Logged response for Apple's Push Notifications servers with apn_on_rails?
I'm using apn_on_rails to handle push notifications with my Rails app, but I'm not sure how to see what the response from Apple's servers are (for debugging purposes).
Any ideas how to do that?
1
vote
1answer
728 views
Multiple App Support Using APN on Rails Gem
I have a couple iPhone apps talking to one ruby on rails server. I have been using the apn_on_rails gem by mark bates/PRX (http://github.com/PRX/apn_on_rails) to offer push notifications to both apps.
...
4
votes
3answers
1k views
Ruby, SSLSockets, and Apple's Enhanced APN message format
I'm trying to implement support for Apple's enhanced Push Notification message format in my Rails app, and am having some frustrating problems. I clearly don't understand sockets as much as I thought ...
2
votes
3answers
762 views
how to override a validation call in activerecord in a gem?
I am using apn_on_rails for iphone push notification with rails.
Right now, the validation on token is no longer valid because the validation requires a space every 8 characters:
validates_format_of ...
3
votes
1answer
942 views
Server Setup for iPhone Push Notifications
I'm new to the whole push notifications thing, and was wondering if somebody could walk me through the process of getting a simple application up and running. I currently rent a server that I use to ...
