class BMO::Configuration::APNS

APNS Configuration

@!attribute gateway_host @!attribute gateway_port @!attribute feedback_host @!attribute feedback_port @!attribute cert_path @!attribute cert_pass

Attributes

cert_pass[RW]
cert_path[RW]
feedback_host[RW]
feedback_port[RW]
gateway_host[RW]
gateway_port[RW]

Public Class Methods

new() click to toggle source
# File lib/bmo/configuration.rb, line 25
def initialize
  @gateway_host  = 'gateway.push.apple.com'
  @gateway_port  = 2195
  @feedback_host = 'feedback.push.apple.com'
  @feedback_port = 2196
  @cert_path     = nil
  @cert_pass     = nil
end