boblail/hiccup

View on GitHub

Showing 19 of 24 total issues

Method infer has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
Open

      def infer(dates, options={})
        allow_null_schedules = options.fetch(:allow_null_schedules, false)
        verbosity = options.fetch(:verbosity, (options[:verbose] ? 1 : 0)) # 0, 1, or 2

        dates = extract_array_of_dates!(dates)
Severity: Minor
Found in lib/hiccup/inferable.rb - About 4 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method infer has 66 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def infer(dates, options={})
        allow_null_schedules = options.fetch(:allow_null_schedules, false)
        verbosity = options.fetch(:verbosity, (options[:verbose] ? 1 : 0)) # 0, 1, or 2

        dates = extract_array_of_dates!(dates)
Severity: Major
Found in lib/hiccup/inferable.rb - About 2 hrs to fix

    Method occurrences_in_month has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

          def occurrences_in_month(year, month)
            monthly_pattern.map do |occurrence|
              if occurrence.is_a?(Array)
                ordinal, weekday = occurrence
                wday = Date::DAYNAMES.index(weekday)
    Severity: Minor
    Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method generate_monthly_guesses has 39 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def generate_monthly_guesses(dates)
            histogram_of_patterns = dates.to_histogram do |date|
              [date.get_nth_wday_of_month, Date::DAYNAMES[date.wday]]
            end
            patterns_by_popularity = histogram_of_patterns.flip
    Severity: Minor
    Found in lib/hiccup/inferable/guesser.rb - About 1 hr to fix

      Method generate_monthly_guesses has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

            def generate_monthly_guesses(dates)
              histogram_of_patterns = dates.to_histogram do |date|
                [date.get_nth_wday_of_month, Date::DAYNAMES[date.wday]]
              end
              patterns_by_popularity = histogram_of_patterns.flip
      Severity: Minor
      Found in lib/hiccup/inferable/guesser.rb - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method first_occurrence_on_or_before has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

            def first_occurrence_on_or_before(date)
              @year, @month, seed_day = date.year, date.month, date.day
              if skip > 1
                offset = months_since_schedule_start(@year, @month)
                remainder = offset % skip
      Severity: Minor
      Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method validate_recurrence has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def validate_recurrence
            case kind
            when :never;
            when :weekly;     validate_weekly_recurrence
            when :monthly;    validate_monthly_recurrence
      Severity: Minor
      Found in lib/hiccup/validatable.rb - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method first_occurrence_on_or_after has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

            def first_occurrence_on_or_after(date)
              @year, @month, seed_day = date.year, date.month, date.day
              if skip > 1
                offset = months_since_schedule_start(@year, @month)
                remainder = offset % skip
      Severity: Minor
      Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method human_ordinalize has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def human_ordinalize(map={})
          map.key?(self) ? map[self] : (begin
            if self < -1
              "#{(-self).human_ordinalize} to last"
            else
      Severity: Minor
      Found in lib/hiccup/core_ext/integer.rb - About 1 hr to fix

        Method first_occurrence_on_or_after has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

              def first_occurrence_on_or_after(date)
                result = nil
                wday = date.wday
                wday_pattern.each do |wd|
                  wd = wd + 7 if wd < wday
        Severity: Minor
        Found in lib/hiccup/enumerable/weekly_enumerator.rb - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method first_occurrence_on_or_before has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

              def first_occurrence_on_or_before(date)
                result = nil
                wday = date.wday
                wday_pattern.each do |wd|
                  wd = wd - 7 if wd > wday
        Severity: Minor
        Found in lib/hiccup/enumerable/weekly_enumerator.rb - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method human_ordinalize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def human_ordinalize(map={})
            map.key?(self) ? map[self] : (begin
              if self < -1
                "#{(-self).human_ordinalize} to last"
              else
        Severity: Minor
        Found in lib/hiccup/core_ext/integer.rb - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method generate_weekly_guesses has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def generate_weekly_guesses(dates)
                [].tap do |guesses|
                  histogram_of_wdays = dates.to_histogram do |date|
                    Date::DAYNAMES[date.wday]
                  end
        Severity: Minor
        Found in lib/hiccup/inferable/guesser.rb - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method first_occurrence_on_or_before has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def first_occurrence_on_or_before(date)
                @year = date.year
                @year -= 1 if (date.month < month) or (date.month == month and date.day < day)
        
                remainder = (@year - start_date.year) % skip
        Severity: Minor
        Found in lib/hiccup/enumerable/annually_enumerator.rb - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method first_occurrence_on_or_after has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def first_occurrence_on_or_after(date)
                @year = date.year
                @year += 1 if (date.month > month) or (date.month == month and date.day > day)
        
                remainder = (@year - start_date.year) % skip
        Severity: Minor
        Found in lib/hiccup/enumerable/annually_enumerator.rb - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method rewind! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def rewind!
                @position -= 1
                prev_month if @position < 0
        
                day = cycle[@position]
        Severity: Minor
        Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method get_context has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def get_context
                @last_day_of_month = [4, 6, 9, 11].member?(month) ? 30 : 31
                @last_day_of_month = leap_year?(year) ? 29 : 28 if month == 2
                @cycle = occurrences_in_month(year, month).sort
              end
        Severity: Minor
        Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def initialize(options={})
              @kind             =(options[:kind] || :never).to_sym
              @start_date       =(options[:start_date] || Date.today).to_date
              @ends             = options.key?(:ends) ? options[:ends] : false
              @end_date         = options[:end_date] ? options[:end_date].to_date : nil
        Severity: Minor
        Found in lib/hiccup/schedule.rb - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method advance! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def advance!
                @position += 1
                next_month if @position >= cycle.length
        
                day = cycle[@position]
        Severity: Minor
        Found in lib/hiccup/enumerable/monthly_enumerator.rb - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Severity
        Category
        Status
        Source
        Language