card/config/initializers/02_patches/kaminari.rb
Assignment Branch Condition size for params_for is too high. [15.59/15] Open
Open
def params_for page
page_params = Rack::Utils.parse_nested_query "#{@param_name}=#{page}"
page_params = @params.with_indifferent_access.deep_merge(page_params)
if ::Kaminari.config.respond_to?(:params_on_first_page) &&
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric
Missing top-level module documentation comment. Open
Open
module Tag
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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