koraktor/gallerist

View on GitHub
lib/gallerist/app/configuration.rb

Summary

Maintainability
A
1 hr
Test Coverage

Assignment Branch Condition size for registered is too high. [54.46/15]
Open

  def self.registered(_)
    configure do
      set :logging, ENV['VERBOSE'] ? ::Logger::WARN : ::Logger::INFO

      tempdir = Dir.mktmpdir('gallerist')
Severity: Minor
Found in lib/gallerist/app/configuration.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

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

  def self.registered(_)
    configure do
      set :logging, ENV['VERBOSE'] ? ::Logger::WARN : ::Logger::INFO

      tempdir = Dir.mktmpdir('gallerist')
Severity: Minor
Found in lib/gallerist/app/configuration.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.

Method registered has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def self.registered(_)
    configure do
      set :logging, ENV['VERBOSE'] ? ::Logger::WARN : ::Logger::INFO

      tempdir = Dir.mktmpdir('gallerist')
Severity: Minor
Found in lib/gallerist/app/configuration.rb - About 1 hr to fix

    Gallerist::App::Configuration#self.registered has approx 30 statements
    Open

      def self.registered(_)
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by reek

    A method with Too Many Statements is any method that has a large number of lines.

    Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

    So the following method would score +6 in Reek's statement-counting algorithm:

    def parse(arg, argv, &error)
      if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
        return nil, block, nil                                         # +1
      end
      opt = (val = parse_arg(val, &error))[1]                          # +2
      val = conv_arg(*val)                                             # +3
      if opt and !arg
        argv.shift                                                     # +4
      else
        val[0] = nil                                                   # +5
      end
      val                                                              # +6
    end

    (You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

    Gallerist::App::Configuration#self.registered calls 'Gallerist.options' 2 times
    Open

          set :copy_dbs, !Gallerist.options[:nocopy]
          set :dump_errors, Proc.new { development? }
          set :library, nil
          set :library_path, Gallerist.options[:library]
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    Gallerist::App::Configuration#self.registered calls 'Gallerist::Logging.app_logger' 2 times
    Open

          sprockets.logger = Gallerist::Logging.app_logger
          ActiveRecord::Base.logger = Gallerist::Logging.app_logger
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    Gallerist::App::Configuration has no descriptive comment
    Open

    module Gallerist::App::Configuration
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by reek

    Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.

    Example

    Given

    class Dummy
      # Do things...
    end

    Reek would emit the following warning:

    test.rb -- 1 warning:
      [1]:Dummy has no descriptive comment (IrresponsibleModule)

    Fixing this is simple - just an explaining comment:

    # The Dummy class is responsible for ...
    class Dummy
      # Do things...
    end

    Extra empty line detected at module body end.
    Open

    
    end
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cops checks if empty lines around the bodies of modules match the configuration.

    Example: EnforcedStyle: empty_lines

    # good
    
    module Foo
    
      def bar
        # ...
      end
    
    end

    Example: EnforcedStyle: emptylinesexcept_namespace

    # good
    
    module Foo
      module Bar
    
        # ...
    
      end
    end

    Example: EnforcedStyle: emptylinesspecial

    # good
    module Foo
    
      def bar; end
    
    end

    Example: EnforcedStyle: noemptylines (default)

    # good
    
    module Foo
      def bar
        # ...
      end
    end

    Missing top-level module documentation comment.
    Open

    module Gallerist::App::Configuration
    Severity: Minor
    Found in lib/gallerist/app/configuration.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

    Parenthesize the param Proc.new { development? } to make sure that the block will be associated with the Proc.new method call.
    Open

          set :dump_errors, Proc.new { development? }
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cop checks for ambiguous block association with method when param passed without parentheses.

    Example:

    # bad
    some_method a { |val| puts val }

    Example:

    # good
    # With parentheses, there's no ambiguity.
    some_method(a) { |val| puts val }
    
    # good
    # Operator methods require no disambiguation
    foo == bar { |b| b.baz }
    
    # good
    # Lambda arguments require no disambiguation
    foo = ->(bar) { bar.baz }

    Extra empty line detected at module body beginning.
    Open

    
      def self.configure(*envs, &block)
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cops checks if empty lines around the bodies of modules match the configuration.

    Example: EnforcedStyle: empty_lines

    # good
    
    module Foo
    
      def bar
        # ...
      end
    
    end

    Example: EnforcedStyle: emptylinesexcept_namespace

    # good
    
    module Foo
      module Bar
    
        # ...
    
      end
    end

    Example: EnforcedStyle: emptylinesspecial

    # good
    module Foo
    
      def bar; end
    
    end

    Example: EnforcedStyle: noemptylines (default)

    # good
    
    module Foo
      def bar
        # ...
      end
    end

    Use nested module/class definitions instead of compact style.
    Open

    module Gallerist::App::Configuration
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cop checks the style of children definitions at classes and modules. Basically there are two different styles:

    Example: EnforcedStyle: nested (default)

    # good
    # have each child on its own line
    class Foo
      class Bar
      end
    end

    Example: EnforcedStyle: compact

    # good
    # combine definitions as much as possible
    class Foo::Bar
    end

    The compact style is only forced for classes/modules with one child.

    Use a guard clause instead of wrapping the code inside a conditional expression.
    Open

        if envs.empty? || envs.include?(Gallerist::App.environment.to_sym)
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    Use a guard clause instead of wrapping the code inside a conditional expression

    Example:

    # bad
    def test
      if something
        work
      end
    end
    
    # good
    def test
      return unless something
      work
    end
    
    # also good
    def test
      work if something
    end
    
    # bad
    if something
      raise 'exception'
    else
      ok
    end
    
    # good
    raise 'exception' if something
    ok

    Ambiguous block operator. Parenthesize the method arguments if it's surely a block operator, or add a whitespace to the right of the & if it should be a binary AND.
    Open

          Gallerist::App.instance_exec &block
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cop checks for ambiguous operators in the first argument of a method invocation without parentheses.

    Example:

    # bad
    
    # The `*` is interpreted as a splat operator but it could possibly be
    # a `*` method invocation (i.e. `do_something.*(some_array)`).
    do_something *some_array

    Example:

    # good
    
    # With parentheses, there's no ambiguity.
    do_something(*some_array)

    Use proc instead of Proc.new.
    Open

          set :dump_errors, Proc.new { development? }
    Severity: Minor
    Found in lib/gallerist/app/configuration.rb by rubocop

    This cops checks for uses of Proc.new where Kernel#proc would be more appropriate.

    Example:

    # bad
    p = Proc.new { |n| puts n }
    
    # good
    p = proc { |n| puts n }

    There are no issues that match your filters.

    Category
    Status