blob: e1efce5ee9e6a14928f49a4f9ca0c7987bb82e2d (
plain)
1
2
3
4
5
6
7
8
9
|
require 'rubygems'
require 'pushmeup'
GCM.host = 'https://android.googleapis.com/gcm/send'
GCM.format = :json
GCM.key = "API_KEY_GOES_HERE"
destination = ["REGISTRATION_ID_GOES_HERE"]
data = {:message => "PhoneGap Build rocks!", :msgcnt => "1", :soundname => "beep.wav"}
GCM.send_notification( destination, data)
|