ChaelCodes/HuntersKeepers

View on GitHub

Showing 57 of 106 total issues

Assignment Branch Condition size for create is too high. [16.16/15]
Open

  def create
    @move = Move.new(move_params)
    authorize @move
    respond_to do |format|
      if @move.save
Severity: Minor
Found in app/controllers/moves_controller.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 and https://en.wikipedia.org/wiki/ABC_Software_Metric.

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

  def create
    @gear = Gear.new(gear_params)
    authorize @gear
    respond_to do |format|
      if @gear.save
Severity: Minor
Found in app/controllers/gears_controller.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.

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

  def create
    @move = Move.new(move_params)
    authorize @move
    respond_to do |format|
      if @move.save
Severity: Minor
Found in app/controllers/moves_controller.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.

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

  def create
    @rating = Rating.new(rating_params)
    authorize @rating
    respond_to do |format|
      if @rating.save

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.

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

  def create
    @playbook = Playbook.new(playbook_params)
    authorize @playbook
    respond_to do |format|
      if @playbook.save

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. [15.17/15]
Open

  def create
    @improvement = Improvement.new(improvement_params)
    authorize @improvement
    respond_to do |format|
      if @improvement.save

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

  def create
    @playbook = Playbook.new(playbook_params)
    authorize @playbook
    respond_to do |format|
      if @playbook.save

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

  def create
    @gear = Gear.new(gear_params)
    authorize @gear
    respond_to do |format|
      if @gear.save
Severity: Major
Found in app/controllers/gears_controller.rb and 1 other location - About 1 hr to fix
app/controllers/ratings_controller.rb on lines 30..39

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

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

  def create
    @rating = Rating.new(rating_params)
    authorize @rating
    respond_to do |format|
      if @rating.save
Severity: Major
Found in app/controllers/ratings_controller.rb and 1 other location - About 1 hr to fix
app/controllers/gears_controller.rb on lines 29..38

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

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. [84/80]
Open

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

Line is too long. [87/80]
Open

      format.html { redirect_to gears_url, notice: 'Gear was successfully destroyed.' }
Severity: Minor
Found in app/controllers/gears_controller.rb by rubocop

Line is too long. [110/80]
Open

        redirect_to hunter_hunters_improvements_url, notice: 'Hunters improvement was successfully destroyed.'

Line is too long. [130/80]
Open

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
Severity: Minor
Found in Gemfile by rubocop

Line is too long. [91/80]
Open

      format.html { redirect_to ratings_url, notice: 'Rating was successfully destroyed.' }

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. [95/80]
Open

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

Line is too long. [87/80]
Open

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

Line is too long. [90/80]
Open

# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
Severity: Minor
Found in Rakefile by rubocop

Line is too long. [82/80]
Open

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

Line is too long. [107/80]
Open

    @hunters_improvement.improvement = Improvement.find(params[:improvement_id]) if params[:improvement_id]
Severity
Category
Status
Source
Language