ChaelCodes/HuntersKeepers

View on GitHub
app/controllers/hunters_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage

Method has too many lines. [13/10]
Wontfix

  def create
    @hunter = Hunter.new(hunter_params)
    @hunter.user = current_user
    @hunter.assign_attributes(experience: 0, harm: 0, luck: 7)
    authorize @hunter

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 create is too high. [17.23/15]
Wontfix

  def create
    @hunter = Hunter.new(hunter_params)
    @hunter.user = current_user
    @hunter.assign_attributes(experience: 0, harm: 0, luck: 7)
    authorize @hunter

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 and https://en.wikipedia.org/wiki/ABC_Software_Metric.

Assignment Branch Condition size for update is too high. [15.17/15]
Wontfix

  def update
    respond_to do |format|
      @hunter.user ||= current_user
      if @hunter.update(hunter_params)
        format.html { redirect_to hunter_path(@hunter), notice: 'Hunter was successfully updated.' }

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 and https://en.wikipedia.org/wiki/ABC_Software_Metric.

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

    respond_to do |format|
      if @hunter.save
        format.html { redirect_to hunter_path(@hunter), notice: 'Hunter was successfully created.' }
        format.json { render :show, status: :created, location: @hunter }
      else
Severity: Minor
Found in app/controllers/hunters_controller.rb and 1 other location - About 50 mins to fix
app/controllers/improvements_controller.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 42.

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.
Invalid

      if @hunter.update(hunter_params)
        format.html { redirect_to hunter_path(@hunter), notice: 'Hunter was successfully updated.' }
        format.json { render :show, status: :ok, location: @hunter }
      else
        format.html { render :edit }
Severity: Minor
Found in app/controllers/hunters_controller.rb and 1 other location - About 45 mins to fix
app/controllers/improvements_controller.rb on lines 49..57

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 40.

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

Line is too long. [91/80]
Open

      format.html { redirect_to hunters_url, notice: 'Hunter was successfully destroyed.' }

Line is too long. [82/80]
Open

  # @param experience [Integer] The amount of experience the hunter has not spent.

Line is too long. [82/80]
Open

        format.json { render json: @hunter.errors, status: :unprocessable_entity }

Line is too long. [92/80]
Open

  # @param playbook_id [Integer] References the id of the Playbook in the the Playbook table

Line is too long. [82/80]
Open

  # @see HuntersController#hunter_params See hunter_params for accepted parameters

Line is too long. [114/80]
Open

  # @param :available_improvements [Boolean] Toggles whether or not to include a list of improvements available to

Line is too long. [100/80]
Open

        format.html { redirect_to hunter_path(@hunter), notice: 'Hunter was successfully updated.' }

Line is too long. [100/80]
Open

        format.html { redirect_to hunter_path(@hunter), notice: 'Hunter was successfully created.' }

Line is too long. [82/80]
Open

  # @see HuntersController#hunter_params See hunter_params for accepted parameters

Line is too long. [82/80]
Open

        format.json { render json: @hunter.errors, status: :unprocessable_entity }

There are no issues that match your filters.

Category
Status