Sha256: 7f2c95e13946e169f84813c15f86228e251a84648ac666d97edef41f4bd66828

Contents?: true

Size: 323 Bytes

Versions: 1

Compression:

Stored size: 323 Bytes

Contents

# frozen_string_literal: true

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

    attr_reader :name, :options

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

Version data entries

1 entries across 1 versions & 1 rubygems

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