lstejskal/adapi

View on GitHub
lib/adapi/ad_group.rb

Summary

Maintainability
C
1 day
Test Coverage

Method update has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def update(params = {})
      # step 1. update core attributes
      core_attributes = [ :id, :campaign_id, :name, :status, :bids ]
      # get operand in google format 
      # parse the given params by initialize method...
Severity: Minor
Found in lib/adapi/ad_group.rb - About 1 hr to fix

    Method update has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def update(params = {})
          # step 1. update core attributes
          core_attributes = [ :id, :campaign_id, :name, :status, :bids ]
          # get operand in google format 
          # parse the given params by initialize method...
    Severity: Minor
    Found in lib/adapi/ad_group.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 create has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def create
          return false unless self.valid?
          
          operand = Hash[
            [:campaign_id, :name, :status, :bids].map do |k|
    Severity: Minor
    Found in lib/adapi/ad_group.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 find has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def self.find(amount = :all, params = {})
          params.symbolize_keys!
          first_only = (amount.to_sym == :first)
          # by default, exclude ad_groups with status DELETED
          params[:status] ||= %w{ ENABLED PAUSED }
    Severity: Minor
    Found in lib/adapi/ad_group.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 find has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def self.find(amount = :all, params = {})
          params.symbolize_keys!
          first_only = (amount.to_sym == :first)
          # by default, exclude ad_groups with status DELETED
          params[:status] ||= %w{ ENABLED PAUSED }
    Severity: Minor
    Found in lib/adapi/ad_group.rb - About 1 hr to fix

      Method create has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def create
            return false unless self.valid?
            
            operand = Hash[
              [:campaign_id, :name, :status, :bids].map do |k|
      Severity: Minor
      Found in lib/adapi/ad_group.rb - About 1 hr to fix

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

            def bids=(params = {})
              @bids = params
        
              if @bids
                unless @bids.is_a?(Hash)
        Severity: Minor
        Found in lib/adapi/ad_group.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

        There are no issues that match your filters.

        Category
        Status