SpeciesFileGroup/taxonworks

View on GitHub
lib/batch_file_load/import/otus/simple_interpreter.rb

Summary

Maintainability
A
0 mins
Test Coverage

Do not write to stdout. Use Rails's logger if you want to log.
Open

        ap file_content

This cop checks for the use of output calls like puts and print

Example:

# bad
puts 'A debug message'
pp 'A debug message'
print 'A debug message'

# good
Rails.logger.debug 'A debug message'

There are no issues that match your filters.

Category
Status