coding-chimp/TalesOfInterest

View on GitHub

Showing 6 of 8 total issues

Class EpisodePresenter has 21 methods (exceeds 20 allowed). Consider refactoring.
Open

class EpisodePresenter < BasePresenter
  presents :episode
  delegate :title, :num, :full_title, :file_url, to: :episode

  def linked_podcast_name
Severity: Minor
Found in app/presenters/episode_presenter.rb - About 2 hrs to fix

    Method find_audio_file has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.find_audio_file(name)
        type = File.extname(name)
        podcast_name = File.basename(name, type).titleize
        episode_num = podcast_name[-3..-1].to_i
        podcast_name = podcast_name[0..-4]
    Severity: Minor
    Found in app/models/download_data.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 process_data has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.process_data(rows, date)
        @data = {}
        
        rows.each do |row|
          name = row['c'][0]['v'][1..-1]
    Severity: Minor
    Found in app/models/download_data.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 since_color_code has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def since_color_code(episode)
        if episode
          distance = Date.today - episode.published_at.to_date
          if distance <= 14
            "ok"
    Severity: Minor
    Found in app/presenters/podcast_presenter.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 create has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def create
            podcast = Podcast.find(params[:podcast])
            @episode = Episode.includes(:podcast, :show_notes).new(params[:episode])
    
            params[:episode][:draft] = false if params[:publish]
    Severity: Minor
    Found in app/controllers/episodes_controller.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 update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def update
            podcast = Podcast.find(params[:podcast])
            @episode = podcast.episodes.find(params[:id])
    
            params[:episode][:draft] = false if params[:publish]
    Severity: Minor
    Found in app/controllers/episodes_controller.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