CoolElvis/redlock_for_collection

View on GitHub
redlock_for_collection.gemspec

Summary

Maintainability
Test Coverage

Line is too long. [151/80]
Open

  spec.description   = %q{This is just a Redlock wrapper for collection of objects. Also it used a connection pool for restrict the redis connections.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

Use %q only for strings that contain both single quotes and double quotes.
Open

  spec.summary       = %q{This is just a Redlock wrapper for collection of objects.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

Unnecessary utf-8 encoding comment.
Open

# coding: utf-8
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

%q-literals should be delimited by ( and ).
Open

  spec.description   = %q{This is just a Redlock wrapper for collection of objects. Also it used a connection pool for restrict the redis connections.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

Line is too long. [84/80]
Open

  spec.summary       = %q{This is just a Redlock wrapper for collection of objects.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

Add an empty line after magic comments.
Open

lib = File.expand_path('../lib', __FILE__)
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

Checks for a newline after the final magic comment.

Example:

# good
# frozen_string_literal: true

# Some documentation for Person
class Person
  # Some code
end

# bad
# frozen_string_literal: true
# Some documentation for Person
class Person
  # Some code
end

Line is too long. [104/80]
Open

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

Use %q only for strings that contain both single quotes and double quotes.
Open

  spec.description   = %q{This is just a Redlock wrapper for collection of objects. Also it used a connection pool for restrict the redis connections.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

%q-literals should be delimited by ( and ).
Open

  spec.summary       = %q{This is just a Redlock wrapper for collection of objects.}
Severity: Minor
Found in redlock_for_collection.gemspec by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

There are no issues that match your filters.

Category
Status