Method: ActionConductor::ActionRunner#export

Defined in:
lib/action_conductor/action_runner.rb

#export(*options) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/action_conductor/action_runner.rb', line 9

def export(*options)
  @exported ||= {}
  @exported[options] ||= begin
    exported = export_with_options(options)
    exported.length == 1 ? exported.first : exported
  end
end