SpeciesFileGroup/taxonworks

View on GitHub
lib/tasks/maintenance/users.rake

Summary

Maintainability
Test Coverage

Prefer symbols instead of strings as hash keys.
Open

      task 'dump_yaml' => [:environment, :backup_directory] do
Severity: Minor
Found in lib/tasks/maintenance/users.rake by rubocop

This cop checks for the use of strings as keys in hashes. The use of symbols is preferred instead.

Example:

# bad
{ 'one' => 1, 'two' => 2, 'three' => 3 }

# good
{ one: 1, two: 2, three: 3 }

There are no issues that match your filters.

Category
Status