wycleffsean/haypub

View on GitHub

Showing 74 of 74 total issues

Method has too many lines. [19/10]
Open

  def coerce(val)
    case val
    when :sun, :sunday
      return 1
    when :mon, :monday
Severity: Minor
Found in lib/payhub/attributes.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Cyclomatic complexity for coerce is too high. [9/6]
Open

  def coerce(val)
    case val
    when :sun, :sunday
      return 1
    when :mon, :monday
Severity: Minor
Found in lib/payhub/attributes.rb by rubocop

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Avoid too many return statements within this method.
Open

      return 6
Severity: Major
Found in lib/payhub/attributes.rb - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

          return val
    Severity: Major
    Found in lib/payhub/attributes.rb - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

            return 5
      Severity: Major
      Found in lib/payhub/attributes.rb - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

              return 7
        Severity: Major
        Found in lib/payhub/attributes.rb - About 30 mins to fix

          Use the new Ruby 1.9 hash syntax.
          Open

          task :default => :spec
          Severity: Minor
          Found in Rakefile by rubocop

          This cop checks hash literal syntax.

          It can enforce either the use of the class hash rocket syntax or the use of the newer Ruby 1.9 syntax (when applicable).

          A separate offense is registered for each problematic pair.

          The supported styles are:

          • ruby19 - forces use of the 1.9 syntax (e.g. {a: 1}) when hashes have all symbols for keys
          • hash_rockets - forces use of hash rockets for all hashes
          • nomixedkeys - simply checks for hashes with mixed syntaxes
          • ruby19nomixed_keys - forces use of ruby 1.9 syntax and forbids mixed syntax hashes

          Example: EnforcedStyle: ruby19 (default)

          # bad
          {:a => 2}
          {b: 1, :c => 2}
          
          # good
          {a: 2, b: 1}
          {:c => 2, 'd' => 2} # acceptable since 'd' isn't a symbol
          {d: 1, 'e' => 2} # technically not forbidden

          Example: EnforcedStyle: hash_rockets

          # bad
          {a: 1, b: 2}
          {c: 1, 'd' => 5}
          
          # good
          {:a => 1, :b => 2}

          Example: EnforcedStyle: nomixedkeys

          # bad
          {:a => 1, b: 2}
          {c: 1, 'd' => 2}
          
          # good
          {:a => 1, :b => 2}
          {c: 1, d: 2}

          Example: EnforcedStyle: ruby19nomixed_keys

          # bad
          {:a => 1, :b => 2}
          {c: 2, 'd' => 3} # should just use hash rockets
          
          # good
          {a: 1, b: 2}
          {:c => 3, 'd' => 4}

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

            VERSION = "0.1.0"
          Severity: Minor
          Found in lib/payhub/version.rb 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"

          Provide an exception class and message as arguments to raise.
          Open

              raise ArgumentError.new('unknown day')
          Severity: Minor
          Found in lib/payhub/attributes.rb by rubocop

          This cop checks the args passed to fail and raise. For exploded style (default), it recommends passing the exception class and message to raise, rather than construct an instance of the error. It will still allow passing just a message, or the construction of an error with more than one argument.

          The exploded style works identically, but with the addition that it will also suggest constructing error objects when the exception is passed multiple arguments.

          Example: EnforcedStyle: exploded (default)

          # bad
          raise StandardError.new("message")
          
          # good
          raise StandardError, "message"
          fail "message"
          raise MyCustomError.new(arg1, arg2, arg3)
          raise MyKwArgError.new(key1: val1, key2: val2)

          Example: EnforcedStyle: compact

          # bad
          raise StandardError, "message"
          raise RuntimeError, arg1, arg2, arg3
          
          # good
          raise StandardError.new("message")
          raise MyCustomError.new(arg1, arg2, arg3)
          fail "message"

          Provide an exception class and message as arguments to raise.
          Open

                  else raise ArgumentError.new('uknown monthly_type')
          Severity: Minor
          Found in lib/payhub/schedule/monthly.rb by rubocop

          This cop checks the args passed to fail and raise. For exploded style (default), it recommends passing the exception class and message to raise, rather than construct an instance of the error. It will still allow passing just a message, or the construction of an error with more than one argument.

          The exploded style works identically, but with the addition that it will also suggest constructing error objects when the exception is passed multiple arguments.

          Example: EnforcedStyle: exploded (default)

          # bad
          raise StandardError.new("message")
          
          # good
          raise StandardError, "message"
          fail "message"
          raise MyCustomError.new(arg1, arg2, arg3)
          raise MyKwArgError.new(key1: val1, key2: val2)

          Example: EnforcedStyle: compact

          # bad
          raise StandardError, "message"
          raise RuntimeError, arg1, arg2, arg3
          
          # good
          raise StandardError.new("message")
          raise MyCustomError.new(arg1, arg2, arg3)
          fail "message"

          Missing top-level module documentation comment.
          Open

            module Schedule
          Severity: Minor
          Found in lib/payhub/schedule.rb by rubocop

          This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

          The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

          Example:

          # bad
          class Person
            # ...
          end
          
          # good
          # Description/Explanation of Person class
          class Person
            # ...
          end

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

            spec.add_dependency "virtus", "~> 1.0.5"
          Severity: Minor
          Found in payhub.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 single-quoted strings when you don't need string interpolation or special symbols.
          Open

          require "bundler/gem_tasks"
          Severity: Minor
          Found in Rakefile 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 single-quoted strings when you don't need string interpolation or special symbols.
          Open

          require "bundler/setup"
          Severity: Minor
          Found in bin/console 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"

          Freeze mutable objects assigned to constants.
          Open

            VERSION = "0.1.0"
          Severity: Minor
          Found in lib/payhub/version.rb by rubocop

          This cop checks whether some constant value isn't a mutable literal (e.g. array or hash).

          Example:

          # bad
          CONST = [1, 2, 3]
          
          # good
          CONST = [1, 2, 3].freeze

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

          require "pry"
          Severity: Minor
          Found in bin/console 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"

          Space between { and | missing.
          Open

                  unless [val].flatten.all? {|x| range === x }
          Severity: Minor
          Found in lib/payhub/schedule/monthly.rb by rubocop

          Checks that block braces have or don't have surrounding space inside them on configuration. For blocks taking parameters, it checks that the left brace has or doesn't have trailing space depending on configuration.

          Example: EnforcedStyle: space (default)

          # The `space` style enforces that block braces have
          # surrounding space.
          
          # bad
          some_array.each {puts e}
          
          # good
          some_array.each { puts e }

          Example: EnforcedStyle: no_space

          # The `no_space` style enforces that block braces don't
          # have surrounding space.
          
          # bad
          some_array.each { puts e }
          
          # good
          some_array.each {puts e}

          Example: EnforcedStyleForEmptyBraces: no_space (default)

          # The `no_space` EnforcedStyleForEmptyBraces style enforces that
          # block braces don't have a space in between when empty.
          
          # bad
          some_array.each {   }
          some_array.each {  }
          some_array.each { }
          
          # good
          some_array.each {}

          Example: EnforcedStyleForEmptyBraces: space

          # The `space` EnforcedStyleForEmptyBraces style enforces that
          # block braces have at least a spece in between when empty.
          
          # bad
          some_array.each {}
          
          # good
          some_array.each { }
          some_array.each {  }
          some_array.each {   }

          Example: SpaceBeforeBlockParameters: true (default)

          # The SpaceBeforeBlockParameters style set to `true` enforces that
          # there is a space between `{` and `|`. Overrides `EnforcedStyle`
          # if there is a conflict.
          
          # bad
          [1, 2, 3].each {|n| n * 2 }
          
          # good
          [1, 2, 3].each { |n| n * 2 }

          Example: SpaceBeforeBlockParameters: true

          # The SpaceBeforeBlockParameters style set to `false` enforces that
          # there is no space between `{` and `|`. Overrides `EnforcedStyle`
          # if there is a conflict.
          
          # bad
          [1, 2, 3].each { |n| n * 2 }
          
          # good
          [1, 2, 3].each {|n| n * 2 }

          Provide an exception class and message as arguments to raise.
          Open

                    raise ArgumentError.new("argument out of range (#{range})")
          Severity: Minor
          Found in lib/payhub/schedule/monthly.rb by rubocop

          This cop checks the args passed to fail and raise. For exploded style (default), it recommends passing the exception class and message to raise, rather than construct an instance of the error. It will still allow passing just a message, or the construction of an error with more than one argument.

          The exploded style works identically, but with the addition that it will also suggest constructing error objects when the exception is passed multiple arguments.

          Example: EnforcedStyle: exploded (default)

          # bad
          raise StandardError.new("message")
          
          # good
          raise StandardError, "message"
          fail "message"
          raise MyCustomError.new(arg1, arg2, arg3)
          raise MyKwArgError.new(key1: val1, key2: val2)

          Example: EnforcedStyle: compact

          # bad
          raise StandardError, "message"
          raise RuntimeError, arg1, arg2, arg3
          
          # good
          raise StandardError.new("message")
          raise MyCustomError.new(arg1, arg2, arg3)
          fail "message"

          When using method_missing, define respond_to_missing? and fall back on super.
          Open

              def method_missing(key, *args, &block)
                @hash[key] = args.first
              end
          Severity: Minor
          Found in lib/payhub/hash_builder.rb by rubocop

          This cop checks for the presence of method_missing without also defining respond_to_missing? and falling back on super.

          Example:

          #bad
          def method_missing(name, *args)
            # ...
          end
          
          #good
          def respond_to_missing?(name, include_private)
            # ...
          end
          
          def method_missing(name, *args)
            # ...
            super
          end

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

            spec.authors       = ["Sean Carey"]
          Severity: Minor
          Found in payhub.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"
          Severity
          Category
          Status
          Source
          Language