summaryrefslogtreecommitdiff
path: root/plugins/phonegap-plugin-push/example/server/pushGCM.rb
diff options
context:
space:
mode:
authorArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
committerArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
commit02811010cf62f1b21a06780d1e470d04bb24c50f (patch)
tree0d933789068aac11c810ed4bb169d14ab16c43c6 /plugins/phonegap-plugin-push/example/server/pushGCM.rb
parentbca561c1b3989d62a1fba829e0380c6fbf36caf5 (diff)
removed unecessary files from git
Diffstat (limited to 'plugins/phonegap-plugin-push/example/server/pushGCM.rb')
-rw-r--r--plugins/phonegap-plugin-push/example/server/pushGCM.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/phonegap-plugin-push/example/server/pushGCM.rb b/plugins/phonegap-plugin-push/example/server/pushGCM.rb
deleted file mode 100644
index e1efce5e..00000000
--- a/plugins/phonegap-plugin-push/example/server/pushGCM.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-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)