require 'rubygems' require 'pushmeup' APNS.host = 'gateway.sandbox.push.apple.com' APNS.port = 2195 APNS.pem = '' APNS.pass = '' device_token = '' # APNS.send_notification(device_token, 'Hello iPhone!' ) APNS.send_notification(device_token, :alert => 'PushPlugin works!!', :badge => 1, :sound => 'beep.wav')