Module: Enumerable

Includes:
Inform::SetHelpers
Included in:
NilClass
Defined in:
lib/runtime/helpers.rb

Overview

The Enumerable module to add some Inform helper methods

Instance Method Summary collapse

Methods included from Inform::SetHelpers

#in?, #notin?

Instance Method Details

#inform(o = '') ⇒ Object



132
133
134
# File 'lib/runtime/helpers.rb', line 132

def inform(o = '')
  each { |x| x.inform(o) if x.respond_to?(:inform) }
end