Sha256: 887baebba1668283c76c33a85e4777b0e2fd9b752e5665d9b3fbc340b273a39c
Contents?: true
Size: 548 Bytes
Versions: 55
Compression:
Stored size: 548 Bytes
Contents
module DispatchRider class Publisher::Configuration::Destination def initialize(name, attributes={}) @name = name attributes = attributes.with_indifferent_access @service = attributes[:service] @channel = attributes[:channel] @options = attributes[:options] end attr_reader :name, :service, :channel, :options def ==(other) self.name == other.name && self.service == other.service && self.channel == other.channel && self.options == other.options end end end
Version data entries
55 entries across 55 versions & 1 rubygems