class Redis::Client

def type(key)

since it will never hit method_missing
Ruby defines a now deprecated type method so we need to override it here
def type(key)
  call_command(['type', key])
end