akissa/baruwa-ruby

View on GitHub
lib/baruwa.rb

Summary

Maintainability
D
3 days
Test Coverage

Class BaruwaAPI has 76 methods (exceeds 20 allowed). Consider refactoring.
Open

class BaruwaAPI
    ENDPOINTS = {
        :users => {
            :list => {:name => '/users', :method => :get},
            :new => {:name => '/users', :method => :post},
Severity: Major
Found in lib/baruwa.rb - About 1 day to fix

    File baruwa.rb has 423 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "cgi"
    require "json"
    require "openssl"
    require "net/http"
    
    
    Severity: Minor
    Found in lib/baruwa.rb - About 6 hrs to fix

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

          def parse_response(response)
              if response.code.to_i == 200 || response.code.to_i == 201
                  if response.body.nil? || response.body.empty?
                      {:code => response.code.to_i, :message => "Completed successfully"}
                  else
      Severity: Minor
      Found in lib/baruwa.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

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              :domains => {
                  :list => {:name => '/domains', :method => :get},
                  :new => {:name => '/domains', :method => :post},
                  :get => {:name => '/domains/%s', :method => :get},
                  :get_by_name => {:name => '/domains/byname/%s', :method => :get},
      Severity: Minor
      Found in lib/baruwa.rb and 1 other location - About 40 mins to fix
      lib/baruwa.rb on lines 20..26

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 37.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              :users => {
                  :list => {:name => '/users', :method => :get},
                  :new => {:name => '/users', :method => :post},
                  :get => {:name => '/users/%s', :method => :get},
                  :update => {:name => '/users', :method => :put},
      Severity: Minor
      Found in lib/baruwa.rb and 1 other location - About 40 mins to fix
      lib/baruwa.rb on lines 34..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 37.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :userdeliveryservers => {
                  :list => {:name => '/userdeliveryservers/%s', :method => :get},
                  :new => {:name => '/userdeliveryservers/%s', :method => :post},
                  :get => {:name => '/userdeliveryservers/%s/%s', :method => :get},
                  :update => {:name => '/userdeliveryservers/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :orgsmarthosts => {
                  :list => {:name => '/organizations/smarthosts/%s', :method => :get},
                  :new => {:name => '/organizations/smarthosts/%s', :method => :post},
                  :get => {:name => '/organizations/smarthosts/%s/%s', :method => :get},
                  :update => {:name => '/organizations/smarthosts/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :deliveryservers => {
                  :list => {:name => '/deliveryservers/%s', :method => :get},
                  :new => {:name => '/deliveryservers/%s', :method => :post},
                  :get => {:name => '/deliveryservers/%s/%s', :method => :get},
                  :update => {:name => '/deliveryservers/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :fallbackservers => {
                  :list => {:name => '/fallbackservers/list/%s', :method => :get},
                  :new => {:name => '/fallbackservers/%s', :method => :post},
                  :get => {:name => '/fallbackservers/%s', :method => :get},
                  :update => {:name => '/fallbackservers/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :domainaliases => {
                  :list => {:name => '/domainaliases/%s', :method => :get},
                  :new => {:name => '/domainaliases/%s', :method => :post},
                  :get => {:name => '/domainaliases/%s/%s', :method => :get},
                  :update => {:name => '/domainaliases/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :organizations => {
                  :list => {:name => '/organizations', :method => :get},
                  :new => {:name => '/organizations', :method => :post},
                  :get => {:name => '/organizations/%s', :method => :get},
                  :update => {:name => '/organizations/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :domainsmarthosts => {
                  :list => {:name => '/domains/smarthosts/%s', :method => :get},
                  :new => {:name => '/domains/smarthosts/%s', :method => :post},
                  :get => {:name => '/domains/smarthosts/%s/%s', :method => :get},
                  :update => {:name => '/domains/smarthosts/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 70..75
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

              :authservers => {
                  :list => {:name => '/authservers/%s', :method => :get},
                  :new => {:name => '/authservers/%s', :method => :post},
                  :get => {:name => '/authservers/%s/%s', :method => :get},
                  :update => {:name => '/authservers/%s/%s', :method => :put},
      Severity: Major
      Found in lib/baruwa.rb and 7 other locations - About 25 mins to fix
      lib/baruwa.rb on lines 42..47
      lib/baruwa.rb on lines 49..54
      lib/baruwa.rb on lines 56..61
      lib/baruwa.rb on lines 63..68
      lib/baruwa.rb on lines 89..94
      lib/baruwa.rb on lines 102..107
      lib/baruwa.rb on lines 109..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 31.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

              :radiussettings => {
                  :new => {:name => '/radiussettings/%s/%s', :method => :post},
                  :get => {:name => '/radiussettings/%s/%s/%s', :method => :get},
                  :update => {:name => '/radiussettings/%s/%s/%s', :method => :put},
                  :delete => {:name => '/radiussettings/%s/%s/%s', :method => :delete}
      Severity: Minor
      Found in lib/baruwa.rb and 3 other locations - About 15 mins to fix
      lib/baruwa.rb on lines 28..32
      lib/baruwa.rb on lines 77..81
      lib/baruwa.rb on lines 96..100

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 25.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

              :aliases => {
                  :get => {:name => '/aliasaddresses/%s', :method => :get},
                  :new => {:name => '/aliasaddresses/%s', :method => :post},
                  :update => {:name => '/aliasaddresses/%s', :method => :put},
                  :delete => {:name => '/aliasaddresses/%s', :method => :delete}
      Severity: Minor
      Found in lib/baruwa.rb and 3 other locations - About 15 mins to fix
      lib/baruwa.rb on lines 77..81
      lib/baruwa.rb on lines 83..87
      lib/baruwa.rb on lines 96..100

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 25.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

              :relays => {
                  :new => {:name => '/relays/%s', :method => :post},
                  :get => {:name => '/relays/%s', :method => :get},
                  :update => {:name => '/relays/%s', :method => :put},
                  :delete => {:name => '/relays/%s', :method => :delete}
      Severity: Minor
      Found in lib/baruwa.rb and 3 other locations - About 15 mins to fix
      lib/baruwa.rb on lines 28..32
      lib/baruwa.rb on lines 77..81
      lib/baruwa.rb on lines 83..87

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 25.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

              :ldapsettings => {
                  :new => {:name => '/ldapsettings/%s/%s', :method => :post},
                  :get => {:name => '/ldapsettings/%s/%s/%s', :method => :get},
                  :update => {:name => '/ldapsettings/%s/%s/%s', :method => :put},
                  :delete => {:name => '/ldapsettings/%s/%s/%s', :method => :delete}
      Severity: Minor
      Found in lib/baruwa.rb and 3 other locations - About 15 mins to fix
      lib/baruwa.rb on lines 28..32
      lib/baruwa.rb on lines 83..87
      lib/baruwa.rb on lines 96..100

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 25.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status