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 4 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 11 def ==(other) self.name == other.name && self.options == other.options end