module Luosimao

Constants

VERSION

Attributes

brand[RW]
key[RW]
username[RW]

Public Class Methods

deposit_check() click to toggle source
# File lib/luosimao.rb, line 17
def self.deposit_check
  Message.deposit_check
end
send_to(phones, content) click to toggle source
# File lib/luosimao.rb, line 9
def self.send_to(phones, content)
  Array(phones).each { |phone| Message.to(phone, content) }
end
send_to!(phones, content) click to toggle source
# File lib/luosimao.rb, line 13
def self.send_to!(phones, content)
  Array(phones).each { |phone| Message.to!(phone, content) }
end