3scale/porta

View on GitHub
app/lib/system/error_reporting.rb

Summary

Maintainability
A
0 mins
Test Coverage

DeprecationWarning#message is a writable attribute
Open

  attr_accessor :message, :gem_name, :deprecation_horizon
Severity: Minor
Found in app/lib/system/error_reporting.rb by reek

A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

The same holds to a lesser extent for getters, but Reek doesn't flag those.

Example

Given:

class Klass
  attr_accessor :dummy
end

Reek would emit the following warning:

reek test.rb

test.rb -- 1 warning:
  [2]:Klass declares the writable attribute dummy (Attribute)

DeprecationWarning#gem_name is a writable attribute
Open

  attr_accessor :message, :gem_name, :deprecation_horizon
Severity: Minor
Found in app/lib/system/error_reporting.rb by reek

A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

The same holds to a lesser extent for getters, but Reek doesn't flag those.

Example

Given:

class Klass
  attr_accessor :dummy
end

Reek would emit the following warning:

reek test.rb

test.rb -- 1 warning:
  [2]:Klass declares the writable attribute dummy (Attribute)

DeprecationWarning#deprecation_horizon is a writable attribute
Open

  attr_accessor :message, :gem_name, :deprecation_horizon
Severity: Minor
Found in app/lib/system/error_reporting.rb by reek

A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

The same holds to a lesser extent for getters, but Reek doesn't flag those.

Example

Given:

class Klass
  attr_accessor :dummy
end

Reek would emit the following warning:

reek test.rb

test.rb -- 1 warning:
  [2]:Klass declares the writable attribute dummy (Attribute)

There are no issues that match your filters.

Category
Status