class RunThisAsync::Callee::Decoder

Public Instance Methods

call() click to toggle source
# File lib/run_this_async/callee/decoder.rb, line 6
def call
  if callee.instance_of?(String)
    return Object.const_get(callee)
  end

  callee
end