class DispatchRider::Publisher::Configuration::NotificationService
Attributes
name[R]
options[R]
Public Class Methods
new(name, options)
click to toggle source
# File lib/dispatch-rider/publisher/configuration/notification_service.rb, line 5 def initialize(name, options) @name = name @options = options end
Public Instance Methods
==(other)
click to toggle source
# File lib/dispatch-rider/publisher/configuration/notification_service.rb, line 12 def ==(other) name == other.name && options == other.options end