RnD-Soft/lusnoc

View on GitHub

Showing 74 of 74 total issues

Lusnoc::Guard has missing safe method 'fire!'
Open

      def fire!(*args)
Severity: Minor
Found in lib/lusnoc/guard.rb by reek

A candidate method for the Missing Safe Method smell are methods whose names end with an exclamation mark.

An exclamation mark in method names means (the explanation below is taken from here ):

The ! in method names that end with ! means, “This method is dangerous”—or, more precisely, this method is the “dangerous” version of an otherwise equivalent method, with the same name minus the !. “Danger” is relative; the ! doesn’t mean anything at all unless the method name it’s in corresponds to a similar but bang-less method name. So, for example, gsub! is the dangerous version of gsub. exit! is the dangerous version of exit. flatten! is the dangerous version of flatten. And so forth.

Such a method is called Missing Safe Method if and only if her non-bang version does not exist and this method is reported as a smell.

Example

Given

class C
  def foo; end
  def foo!; end
  def bar!; end
end

Reek would report bar! as Missing Safe Method smell but not foo!.

Reek reports this smell only in a class context, not in a module context in order to allow perfectly legit code like this:

class Parent
  def foo; end
end

module Dangerous
  def foo!; end
end

class Son < Parent
  include Dangerous
end

class Daughter < Parent
end

In this example, Reek would not report the Missing Safe Method smell for the method foo of the Dangerous module.

Lusnoc::Helper#logger doesn't depend on instance state (maybe move it to another class?)
Open

    def logger
Severity: Minor
Found in lib/lusnoc/helper.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

Lusnoc#configuration is a writable attribute
Open

    attr_accessor :configuration
Severity: Minor
Found in lib/lusnoc.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)

Lusnoc::Helper#build_url doesn't depend on instance state (maybe move it to another class?)
Open

    def build_url(path)
Severity: Minor
Found in lib/lusnoc/helper.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

Lusnoc::Configuration#acl_token is a writable attribute
Open

    attr_accessor :url, :acl_token, :logger, :http_timeout
Severity: Minor
Found in lib/lusnoc/configuration.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)

Lusnoc::Mutex#wait_for_key_released performs a nil-check
Open

          return true if result.first['Session'].nil?
Severity: Minor
Found in lib/lusnoc/mutex.rb by reek

A NilCheck is a type check. Failures of NilCheck violate the "tell, don't ask" principle.

Additionally, type checks often mask bigger problems in your source code like not using OOP and / or polymorphism when you should.

Example

Given

class Klass
  def nil_checker(argument)
    if argument.nil?
      puts "argument isn't nil!"
    end
  end
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [3]:Klass#nil_checker performs a nil-check. (NilCheck)

Lusnoc::Watcher#build_wait_condition doesn't depend on instance state (maybe move it to another class?)
Open

    def build_wait_condition(_url, time_left, max_consul_wait)
Severity: Minor
Found in lib/lusnoc/watcher.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

Lusnoc::Mutex#acquisition_loop! has the parameter name 't'
Open

      def acquisition_loop!(key, session, value, t)
Severity: Minor
Found in lib/lusnoc/mutex.rb by reek

An Uncommunicative Parameter Name is a parameter name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc::Mutex has the variable name 'm'
Open

    [:time_to_expiration, :need_renew?, :ttl, :expired?, :alive?, :alive!, :renew].each do |m|
Severity: Minor
Found in lib/lusnoc/mutex.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc::Mutex#synchronize has the variable name 't'
Open

      t = Timeouter::Timer.new(timeout, eclass: TimeoutError, message: 'mutex acquisition expired')
Severity: Minor
Found in lib/lusnoc/mutex.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc::Watcher#run has the variable name 't'
Open

      Timeouter.loop!(@timeout, eclass: @eclass, message: @emessage) do |t|
Severity: Minor
Found in lib/lusnoc/watcher.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc::Guard#start_thread has the variable name 'e'
Open

        rescue StandardError => e
Severity: Minor
Found in lib/lusnoc/guard.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc#with_retry has the variable name 'e'
Open

        rescue StandardError => e
Severity: Minor
Found in lib/lusnoc.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Lusnoc#http_put has the variable name 'r'
Open

        req = Net::HTTP::Put.new(uri).tap do |r|
Severity: Minor
Found in lib/lusnoc.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Severity
Category
Status
Source
Language