Method: Interactify::Dsl::Wrapper.wrap_many

Defined in:
lib/interactify/dsl/wrapper.rb

.wrap_many(organizer, interactors) ⇒ Object



10
11
12
13
14
# File 'lib/interactify/dsl/wrapper.rb', line 10

def self.wrap_many(organizer, interactors)
  Array(interactors).map do |interactor|
    wrap(organizer, interactor)
  end
end