lib/recipes/apache.rb

Summary

Maintainability
A
0 mins
Test Coverage

Do not use semicolons to terminate expressions.
Open

      ; apache_ctl; rescue; set(:apache_ctl, '/etc/init.d/apache2');
Severity: Minor
Found in lib/recipes/apache.rb by rubocop

This cop checks for multiple expressions placed on the same line. It also checks for lines terminated with a semicolon.

Example:

# bad
foo = 1; bar = 2;
baz = 3;

# good
foo = 1
bar = 2
baz = 3

rescue at 30, 20 is not aligned with end at 31, 4.
Open

      ; apache_ctl; rescue; set(:apache_ctl, '/etc/init.d/apache2');
Severity: Minor
Found in lib/recipes/apache.rb by rubocop

This cop checks whether the rescue and ensure keywords are aligned properly.

Example:

# bad
begin
  something
  rescue
  puts 'error'
end

# good
begin
  something
rescue
  puts 'error'
end

Avoid rescuing without specifying an error class.
Open

      ; apache_ctl; rescue; set(:apache_ctl, '/etc/init.d/apache2');
Severity: Minor
Found in lib/recipes/apache.rb by rubocop

This cop checks for rescuing StandardError. There are two supported styles implicit and explicit. This cop will not register an offense if any error other than StandardError is specified.

Example: EnforcedStyle: implicit

# `implicit` will enforce using `rescue` instead of
# `rescue StandardError`.

# bad
begin
  foo
rescue StandardError
  bar
end

# good
begin
  foo
rescue
  bar
end

# good
begin
  foo
rescue OtherError
  bar
end

# good
begin
  foo
rescue StandardError, SecurityError
  bar
end

Example: EnforcedStyle: explicit (default)

# `explicit` will enforce using `rescue StandardError`
# instead of `rescue`.

# bad
begin
  foo
rescue
  bar
end

# good
begin
  foo
rescue StandardError
  bar
end

# good
begin
  foo
rescue OtherError
  bar
end

# good
begin
  foo
rescue StandardError, SecurityError
  bar
end

Do not use semicolons to terminate expressions.
Open

      ; apache_ctl; rescue; set(:apache_ctl, '/etc/init.d/apache2');
Severity: Minor
Found in lib/recipes/apache.rb by rubocop

This cop checks for multiple expressions placed on the same line. It also checks for lines terminated with a semicolon.

Example:

# bad
foo = 1; bar = 2;
baz = 3;

# good
foo = 1
bar = 2
baz = 3

There are no issues that match your filters.

Category
Status