Sha256: e437a6e9ec9ab813822628dc9e8dd026a72e6221f1c22fa9a0db14bda68e0f42
Contents?: true
Size: 304 Bytes
Versions: 55
Compression:
Stored size: 304 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
55 entries across 55 versions & 1 rubygems