module Pushwoosh

Constants

VERSION

Public Class Methods

notify_all(message, notification_options = {}) click to toggle source
# File lib/pushwoosh.rb, line 12
def notify_all(message, notification_options = {})
  PushNotification.new(options).notify_all(message, notification_options)
end
notify_devices(message, devices = [], notification_options = {}) click to toggle source
# File lib/pushwoosh.rb, line 16
def notify_devices(message, devices = [], notification_options = {})
  PushNotification.new(options).notify_devices(message, devices, notification_options)
end