class Temporal::ExecutableLookup
Attributes
executables[R]
Public Class Methods
new()
click to toggle source
# File lib/temporal/executable_lookup.rb, line 9 def initialize @executables = {} end
Public Instance Methods
add(name, executable)
click to toggle source
# File lib/temporal/executable_lookup.rb, line 13 def add(name, executable) executables[name] = executable end
find(name)
click to toggle source
# File lib/temporal/executable_lookup.rb, line 17 def find(name) executables[name] end