etehtsea/oxblood

View on GitHub
lib/oxblood/commands/sets.rb

Summary

Maintainability
A
0 mins
Test Coverage

Line is too long. [82/80]
Open

      # @return [Integer] the cardinality (number of elements) of the set, or 0 if
Severity: Minor
Found in lib/oxblood/commands/sets.rb by rubocop

Line is too long. [81/80]
Open

      #   returns an array of elements, or an empty array when key does not exist
Severity: Minor
Found in lib/oxblood/commands/sets.rb by rubocop

Line is too long. [82/80]
Open

      # @return [String] without the additional count argument the command returns
Severity: Minor
Found in lib/oxblood/commands/sets.rb by rubocop

Missing top-level module documentation comment.
Open

    module Sets
Severity: Minor
Found in lib/oxblood/commands/sets.rb by rubocop

This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

Example:

# bad
class Person
  # ...
end

# good
# Description/Explanation of Person class
class Person
  # ...
end

There are no issues that match your filters.

Category
Status