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.