lib/dispatch-rider/publisher/configuration/destination.rb in dispatch-rider-1.9.0 vs lib/dispatch-rider/publisher/configuration/destination.rb in dispatch-rider-2.0.0
- old
+ new
@@ -1,8 +1,7 @@
module DispatchRider
class Publisher::Configuration::Destination
-
def initialize(name, attributes={})
@name = name
attributes = attributes.with_indifferent_access
@service = attributes[:service]
@@ -16,8 +15,7 @@
self.name == other.name &&
self.service == other.service &&
self.channel == other.channel &&
self.options == other.options
end
-
end
end