thecodechef/grease

View on GitHub
grease.gemspec

Summary

Maintainability
Test Coverage

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

  spec.description                 = %q{Static Site Generation done right!}
Severity: Minor
Found in grease.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)

Add an empty line after magic comments.
Open

lib = File.expand_path('../lib', __FILE__)
Severity: Minor
Found in grease.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

Unnecessary utf-8 encoding comment.
Open

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

Line is too long. [88/80]
Open

  spec.executables                 = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Severity: Minor
Found in grease.gemspec by rubocop

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

  spec.description                 = %q{Static Site Generation done right!}
Severity: Minor
Found in grease.gemspec by rubocop

Line is too long. [118/80]
Open

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

There are no issues that match your filters.

Category
Status