cyberark/conjur-api-ruby

View on GitHub
conjur-api.gemspec

Summary

Maintainability
Test Coverage

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

  gem.summary       = %q{Conjur API}
Severity: Minor
Found in conjur-api.gemspec by rubocop

This cop checks for usage of the %q/%Q syntax when '' or "" would do.

Example:

# bad
name = %q(Bruce Wayne)
time = %q(8 o'clock)
question = %q("What did you say?")

# good
name = 'Bruce Wayne'
time = "8 o'clock"
question = '"What did you say?"'

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

  gem.description   = %q{Conjur API}
Severity: Minor
Found in conjur-api.gemspec by rubocop

This cop checks for usage of the %q/%Q syntax when '' or "" would do.

Example:

# bad
name = %q(Bruce Wayne)
time = %q(8 o'clock)
question = %q("What did you say?")

# good
name = 'Bruce Wayne'
time = "8 o'clock"
question = '"What did you say?"'

There are no issues that match your filters.

Category
Status