Sha256: f799248c367359d1bba01f7d69446c5f05b2fcbe0772b7e4ef61bc16ad96357b

Contents?: true

Size: 302 Bytes

Versions: 2

Compression:

Stored size: 302 Bytes

Contents

module DispatchRider
  class Publisher::Configuration::NotificationService
    def initialize(name, options)
      @name = name
      @options = options
    end

    attr_reader :name, :options

    def ==(other)
      self.name == other.name &&
        self.options == other.options
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dispatch-rider-2.1.0 lib/dispatch-rider/publisher/configuration/notification_service.rb
dispatch-rider-2.0.0 lib/dispatch-rider/publisher/configuration/notification_service.rb