Class: Grocer::FeedbackConnection

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/grocer/feedback_connection.rb

Constant Summary collapse

PRODUCTION_GATEWAY =
'feedback.push.apple.com'
SANDBOX_GATEWAY =
'feedback.sandbox.push.apple.com'

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ FeedbackConnection

Returns a new instance of FeedbackConnection.



11
12
13
14
# File 'lib/grocer/feedback_connection.rb', line 11

def initialize(options)
  options = apply_defaults(options)
  super(Connection.new(options))
end