lib/pubsub_notifier/base.rb in pubsub_notifier-0.1.0 vs lib/pubsub_notifier/base.rb in pubsub_notifier-0.1.1

- old
+ new

@@ -1,9 +1,9 @@ module PubsubNotifier class Base class << self def use(name, options = {}) - @_client = ( clients[name.to_sym] || clients[:logger] ).new(options) + @_client = (clients[name.to_sym] || clients[:logger]).new(options) end def client @_client ||= clients[:logger].new end