Avoid standard constants

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: ruby-best-practices/global-stdout

Language: Ruby

Severity: Notice

Category: Best Practices

Description

The rule “Avoid standard constants” is important in Ruby development as it encourages the use of global variables over standard constants. In Ruby, standard constants like STDOUT and STDERR are not as flexible as their global counterparts $stdout and $stderr.

The main reason for avoiding standard constants is that they are not interchangeable in the same way that global variables are. This means they are less suited to situations where you might need to redirect output or error streams. For instance, in testing scenarios, you might want to redirect $stdout or $stderr to a different output stream.

Fortunately, Ruby provides an easy way to avoid this issue. Instead of using standard constants, you should use global variables. For example, replace STDOUT with $stdout and STDERR with $stderr. This allows for greater flexibility in your code and makes it more adaptable to different situations.

Non-Compliant Code Examples

STDOUT.puts('foo')

hash = { out: STDOUT, key: value }

def m(out = STDOUT)
  out.puts('foo')
end

Compliant Code Examples

$stdout.puts('foo')

hash = { out: $stdout, key: value }

def m(out = $stdout)
  out.puts('foo')
end
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis