module RealPush

Constants

API_VERSION_APP
API_VERSION_BE
MAJOR
MINOR
PATCH
VERSION

Attributes

logger[W]

Public Class Methods

default_client() click to toggle source
# File lib/realpush.rb, line 36
def default_client
  @default_client ||= Client.new
end
logger() click to toggle source
# File lib/realpush.rb, line 28
def logger
  @logger ||= begin
    log = Logger.new($stdout)
    log.level = Logger::INFO
    log
  end
end