Method: Deplate::Command::GET#process

Defined in:
lib/deplate/commands.rb

#processObject



322
323
324
325
326
327
328
329
330
# File 'lib/deplate/commands.rb', line 322

def process
    @elt = @deplate.get_clip(@id)
    if @elt
        return self
    else
        log(['GET: Clip not found', @id], :error)
        return nil
    end
end