module XSpec::Notifier::Composable
Many notifiers play nice with others, and can be composed together in a way that each notifier will have its callback run in turn.
Public Instance Methods
+(other)
click to toggle source
# File lib/xspec/notifiers.rb, line 22 def +(other) Composite.new(self, other) end