class LSL::Mapping
Public Instance Methods
method(cmd)
click to toggle source
# File lib/lsl/mapping/mapping.rb, line 22 def method(cmd) if cmd.ex == 'remote_call' RemoteCall.new elsif cmd.ex == 'abc' RakeRunner.new else nil end end