10 lines
314 B
Ruby
Executable File
10 lines
314 B
Ruby
Executable File
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)
|