fyntech/fyntech

View on GitHub
_plugins/ics.rb

Summary

Maintainability
A
25 mins
Test Coverage

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

    def split_string(input, length = 75, prepend = " ")
      output = ""
      splitLines = input.lines
      splitLines.each do | line | 
        if line.bytesize <= length
Severity: Minor
Found in _plugins/ics.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.

Assignment Branch Condition size for split_string is too high. [20.9/15]
Open

    def split_string(input, length = 75, prepend = " ")
      output = ""
      splitLines = input.lines
      splitLines.each do | line | 
        if line.bytesize <= length
Severity: Minor
Found in _plugins/ics.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

Complex method Jekyll::IcsFilter#split_string (35.2)
Open

    def split_string(input, length = 75, prepend = " ")
      output = ""
      splitLines = input.lines
      splitLines.each do | line | 
        if line.bytesize <= length
Severity: Minor
Found in _plugins/ics.rb by flog

Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.

You can read more about ABC metrics or the flog tool

Jekyll::IcsFilter#split_string has approx 11 statements
Open

    def split_string(input, length = 75, prepend = " ")
Severity: Minor
Found in _plugins/ics.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.)

Jekyll::IcsFilter#split_string refers to 'line' more than self (maybe move it to another class?)
Open

        if line.bytesize <= length
          output += line
        else
          firstline = utf8_valid(line.byteslice(0,length))
          output += firstline
Severity: Minor
Found in _plugins/ics.rb by reek

Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

Example

Running Reek on:

class Warehouse
  def sale_price(item)
    (item.price - item.rebate) * @vat
  end
end

would report:

Warehouse#total_price refers to item more than self (FeatureEnvy)

since this:

(item.price - item.rebate)

belongs to the Item class, not the Warehouse.

Jekyll::IcsFilter has no descriptive comment
Open

  module IcsFilter
Severity: Minor
Found in _plugins/ics.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

Jekyll::IcsFilter#utf8_valid calls 'input.valid_encoding?' 2 times
Open

      if input.valid_encoding?
        return input
      end
      while !input.valid_encoding?
Severity: Minor
Found in _plugins/ics.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.

Jekyll::IcsFilter#split_string calls 'line.bytesize' 2 times
Open

        if line.bytesize <= length
          output += line
        else
          firstline = utf8_valid(line.byteslice(0,length))
          output += firstline
Severity: Minor
Found in _plugins/ics.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.

Jekyll::IcsFilter#convert_to_crlf doesn't depend on instance state (maybe move it to another class?)
Open

    def convert_to_crlf(input)
Severity: Minor
Found in _plugins/ics.rb by reek

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

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

    def split_string(input, length = 75, prepend = " ")
      output = ""
      splitLines = input.lines
      splitLines.each do | line | 
        if line.bytesize <= length
Severity: Minor
Found in _plugins/ics.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

Jekyll::IcsFilter#utf8_valid doesn't depend on instance state (maybe move it to another class?)
Open

    def utf8_valid(input)
Severity: Minor
Found in _plugins/ics.rb by reek

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

Jekyll::IcsFilter#generate_sequence doesn't depend on instance state (maybe move it to another class?)
Open

    def generate_sequence(time)
Severity: Minor
Found in _plugins/ics.rb by reek

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

Jekyll::IcsFilter#split_string has the variable name 'splitLines'
Open

      splitLines = input.lines
Severity: Minor
Found in _plugins/ics.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.

Jekyll::IcsFilter#split_string has the variable name 'i'
Open

          i = firstline.bytesize       
          while i < line.bytesize do
            nextline = utf8_valid(line.byteslice(i, length - prepend.bytesize))
            output += "\n" + prepend + nextline
            i = i + nextline.bytesize
Severity: Minor
Found in _plugins/ics.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.

Favor modifier while usage when having a single-line body.
Open

      while !input.valid_encoding?
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks for while and until statements that would fit on one line if written as a modifier while/until. The maximum line length is configured in the Metrics/LineLength cop.

Example:

# bad
while x < 10
  x += 1
end

# good
x += 1 while x < 10

Example:

# bad
until x > 10
  x += 1
end

# good
x += 1 until x > 10

Trailing whitespace detected.
Open

      splitLines.each do | line | 
Severity: Minor
Found in _plugins/ics.rb by rubocop

Use self-assignment shorthand +=.
Open

            i = i + nextline.bytesize
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop enforces the use the shorthand for self-assignment.

Example:

# bad
x = x + 1

# good
x += 1

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

    def split_string(input, length = 75, prepend = " ")
Severity: Minor
Found in _plugins/ics.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"

Space missing after comma.
Open

          firstline = utf8_valid(line.byteslice(0,length))
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks for comma (,) not followed by some kind of space.

Example:

# bad
[1,2]
{ foo:bar,}

# good
[1, 2]
{ foo:bar, }

Missing top-level module documentation comment.
Open

  module IcsFilter
Severity: Minor
Found in _plugins/ics.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

Favor until over while for negative conditions.
Open

      while !input.valid_encoding?
        input = input.byteslice(0,input.bytesize - 1)
      end
Severity: Minor
Found in _plugins/ics.rb by rubocop

Redundant return detected.
Open

      return input
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop checks for redundant return expressions.

Example:

def test
  return something
end

def test
  one
  two
  three
  return something
end

It should be extended to handle methods whose body is if/else or a case expression with a default branch.

Redundant return detected.
Open

      return sequence
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop checks for redundant return expressions.

Example:

def test
  return something
end

def test
  one
  two
  three
  return something
end

It should be extended to handle methods whose body is if/else or a case expression with a default branch.

Use snake_case for variable names.
Open

      splitLines = input.lines
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop makes sure that all variables use the configured style, snake_case or camelCase, for their names.

Example: EnforcedStyle: snake_case (default)

# bad
fooBar = 1

# good
foo_bar = 1

Example: EnforcedStyle: camelCase

# bad
foo_bar = 1

# good
fooBar = 1

Space after last block parameter detected.
Open

      splitLines.each do | line | 
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks the spacing inside and after block parameters pipes.

Example: EnforcedStyleInsidePipes: no_space (default)

# bad
{}.each { | x,  y |puts x }
->( x,  y ) { puts x }

# good
{}.each { |x, y| puts x }
->(x, y) { puts x }

Example: EnforcedStyleInsidePipes: space

# bad
{}.each { |x,  y| puts x }
->(x,  y) { puts x }

# good
{}.each { | x, y | puts x }
->( x, y ) { puts x }

Ambiguous regexp literal. Parenthesize the method arguments if it's surely a regexp literal, or add a whitespace to the right of the / if it should be a division.
Open

      input.gsub /\n/, "\r\n"
Severity: Minor
Found in _plugins/ics.rb by rubocop

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

Example:

# bad

# This is interpreted as a method invocation with a regexp literal,
# but it could possibly be `/` method invocations.
# (i.e. `do_something./(pattern)./(i)`)
do_something /pattern/i

Example:

# good

# With parentheses, there's no ambiguity.
do_something(/pattern/i)

Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
Open

      if input.valid_encoding?
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

Example:

# bad
if condition
  do_stuff(bar)
end

unless qux.empty?
  Foo.do_something
end

# good
do_stuff(bar) if condition
Foo.do_something unless qux.empty?

Space missing after comma.
Open

        input = input.byteslice(0,input.bytesize - 1)
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks for comma (,) not followed by some kind of space.

Example:

# bad
[1,2]
{ foo:bar,}

# good
[1, 2]
{ foo:bar, }

Trailing whitespace detected.
Open

          i = firstline.bytesize       
Severity: Minor
Found in _plugins/ics.rb by rubocop

Missing magic comment # frozen_string_literal: true.
Open

module Jekyll
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop is designed to help upgrade to Ruby 3.0. It will add the comment # frozen_string_literal: true to the top of files to enable frozen string literals. Frozen string literals may be default in Ruby 3.0. The comment will be added below a shebang and encoding comment. The frozen string literal comment is only valid in Ruby 2.3+.

Example: EnforcedStyle: when_needed (default)

# The `when_needed` style will add the frozen string literal comment
# to files only when the `TargetRubyVersion` is set to 2.3+.
# bad
module Foo
  # ...
end

# good
# frozen_string_literal: true

module Foo
  # ...
end

Example: EnforcedStyle: always

# The `always` style will always add the frozen string literal comment
# to a file, regardless of the Ruby version or if `freeze` or `<<` are
# called on a string literal.
# bad
module Bar
  # ...
end

# good
# frozen_string_literal: true

module Bar
  # ...
end

Example: EnforcedStyle: never

# The `never` will enforce that the frozen string literal comment does
# not exist in a file.
# bad
# frozen_string_literal: true

module Baz
  # ...
end

# good
module Baz
  # ...
end

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

      output = ""
Severity: Minor
Found in _plugins/ics.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"

Do not use do with multi-line while.
Open

          while i < line.bytesize do
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks for uses of do in multi-line while/until statements.

Example:

# bad
while x.any? do
  do_something(x.pop)
end

# good
while x.any?
  do_something(x.pop)
end

Example:

# bad
until x.empty? do
  do_something(x.pop)
end

# good
until x.empty?
  do_something(x.pop)
end

Redundant return detected.
Open

      return output
Severity: Minor
Found in _plugins/ics.rb by rubocop

This cop checks for redundant return expressions.

Example:

def test
  return something
end

def test
  one
  two
  three
  return something
end

It should be extended to handle methods whose body is if/else or a case expression with a default branch.

Space before first block parameter detected.
Open

      splitLines.each do | line | 
Severity: Minor
Found in _plugins/ics.rb by rubocop

Checks the spacing inside and after block parameters pipes.

Example: EnforcedStyleInsidePipes: no_space (default)

# bad
{}.each { | x,  y |puts x }
->( x,  y ) { puts x }

# good
{}.each { |x, y| puts x }
->(x, y) { puts x }

Example: EnforcedStyleInsidePipes: space

# bad
{}.each { |x,  y| puts x }
->(x,  y) { puts x }

# good
{}.each { | x, y | puts x }
->( x, y ) { puts x }

There are no issues that match your filters.

Category
Status