skierkowski/terraform-enterprise-client

View on GitHub
terraform-enterprise-client.gemspec

Summary

Maintainability
Test Coverage

Unnecessary utf-8 encoding comment.
Open

# encoding: utf-8
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

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

  gem.description           = %q{ Ruby client that supports all of the Terraform Enterprise API methods. }
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Do not use spaces inside percent literal delimiters.
Open

  gem.require_paths         = %w[ lib ]
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks for unnecessary additional spaces inside the delimiters of %i/%w/%x literals.

Example:

# good
%i(foo bar baz)

# bad
%w( foo bar baz )

# bad
%x(  ls -l )

Line is too long. [106/80]
Open

  gem.description           = %q{ Ruby client that supports all of the Terraform Enterprise API methods. }
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

required_ruby_version (2.3, declared in terraform-enterprise-client.gemspec) and TargetRubyVersion (2.1, declared in .rubocop.yml) should be equal.
Open

  gem.required_ruby_version = '>= 2.3.0'  
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks that required_ruby_version of gemspec and TargetRubyVersion of .rubocop.yml are equal. Thereby, RuboCop to perform static analysis working on the version required by gemspec.

Example:

# When `TargetRubyVersion` of .rubocop.yml is `2.3`.

# bad
Gem::Specification.new do |spec|
  spec.required_ruby_version = '>= 2.2.0'
end

# bad
Gem::Specification.new do |spec|
  spec.required_ruby_version = '>= 2.4.0'
end

# good
Gem::Specification.new do |spec|
  spec.required_ruby_version = '>= 2.3.0'
end

# good
Gem::Specification.new do |spec|
  spec.required_ruby_version = '>= 2.3'
end

# good
Gem::Specification.new do |spec|
  spec.required_ruby_version = ['>= 2.3.0', '< 2.5.0']
end

Line is too long. [88/80]
Open

  gem.summary               = 'Ruby client for bunthe official Terraform Enterprise API'
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

  gem.authors               = [ "Maciej Skierkowski" ]
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

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

  gem.description           = %q{ Ruby client that supports all of the Terraform Enterprise API methods. }
Severity: Minor
Found in terraform-enterprise-client.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)

Do not use spaces inside percent literal delimiters.
Open

  gem.require_paths         = %w[ lib ]
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks for unnecessary additional spaces inside the delimiters of %i/%w/%x literals.

Example:

# good
%i(foo bar baz)

# bad
%w( foo bar baz )

# bad
%x(  ls -l )

Do not use space inside array brackets.
Open

  gem.authors               = [ "Maciej Skierkowski" ]
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks that brackets used for array literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that array literals have
# surrounding space.

# bad
array = [a, b, c, d]

# good
array = [ a, b, c, d ]

Example: EnforcedStyle: no_space

# The `no_space` style enforces that array literals have
# no surrounding space.

# bad
array = [ a, b, c, d ]

# good
array = [a, b, c, d]

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# array brackets, with the exception that successive left
# or right brackets are collapsed together in nested arrays.

# bad
array = [ a, [ b, c ] ]

# good
array = [ a, [ b, c ]]

Final newline missing.
Open

end
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

$:.push File.expand_path("../lib", __FILE__)
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

Prefer $LOAD_PATH over $:.
Open

$:.push File.expand_path("../lib", __FILE__)
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Add an empty line after magic comments.
Open

$:.push File.expand_path("../lib", __FILE__)
Severity: Minor
Found in terraform-enterprise-client.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

Trailing whitespace detected.
Open

  gem.required_ruby_version = '>= 2.3.0'  
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Do not use space inside array brackets.
Open

  gem.authors               = [ "Maciej Skierkowski" ]
Severity: Minor
Found in terraform-enterprise-client.gemspec by rubocop

Checks that brackets used for array literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that array literals have
# surrounding space.

# bad
array = [a, b, c, d]

# good
array = [ a, b, c, d ]

Example: EnforcedStyle: no_space

# The `no_space` style enforces that array literals have
# no surrounding space.

# bad
array = [ a, b, c, d ]

# good
array = [a, b, c, d]

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# array brackets, with the exception that successive left
# or right brackets are collapsed together in nested arrays.

# bad
array = [ a, [ b, c ] ]

# good
array = [ a, [ b, c ]]

There are no issues that match your filters.

Category
Status