aromajoin/jp-shipping-rate

View on GitHub
jp_shipping_rate.gemspec

Summary

Maintainability
Test Coverage

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

  spec.summary       = %q{A Ruby gem for Japan shipping rate calculation.}
Severity: Minor
Found in jp_shipping_rate.gemspec by rubocop

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

  spec.description   = %q{it provides EMS shipping rate calculation for Japan}
Severity: Minor
Found in jp_shipping_rate.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)

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

  spec.description   = %q{it provides EMS shipping rate calculation for Japan}
Severity: Minor
Found in jp_shipping_rate.gemspec by rubocop

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

  spec.summary       = %q{A Ruby gem for Japan shipping rate calculation.}
Severity: Minor
Found in jp_shipping_rate.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