kapost/kapost_deploy

View on GitHub
kapost_deploy.gemspec

Summary

Maintainability
Test Coverage

Block has too many lines. [30/25]
Open

Gem::Specification.new do |spec|
  spec.name = KapostDeploy::Identity.name
  spec.version = KapostDeploy::Identity.version
  spec.platform = Gem::Platform::RUBY
  spec.authors = ["Brandon Croft"]
Severity: Minor
Found in kapost_deploy.gemspec by rubocop

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

Add an empty line after magic comments.
Open

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

There are no issues that match your filters.

Category
Status