bayetech/ll_pay

View on GitHub
lib/ll_pay/utils.rb

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using rescue in its modifier form.
Open

        new_hash[(key.to_sym rescue key) || key] = value
Severity: Minor
Found in lib/ll_pay/utils.rb by rubocop

This cop checks for uses of rescue in its modifier form.

Example:

# bad
some_method rescue handle_error

# good
begin
  some_method
rescue
  handle_error
end

Line is too long. [95/80]
Open

        warn("ll_pay Warn: missing required option: #{name}") unless params_keys.include?(name)
Severity: Minor
Found in lib/ll_pay/utils.rb by rubocop

Missing top-level module documentation comment.
Open

  module Utils
Severity: Minor
Found in lib/ll_pay/utils.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