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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
- Read upRead up
- Create a ticketCreate a ticket
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
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
- Read upRead up
- Create a ticketCreate a ticket
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Line is too long. [84/80] Open
format.json { render json: @playbook.errors, status: :unprocessable_entity }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [87/80] Open
format.html { redirect_to gears_url, notice: 'Gear was successfully destroyed.' }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [110/80] Open
redirect_to hunter_hunters_improvements_url, notice: 'Hunters improvement was successfully destroyed.'
- Create a ticketCreate a ticket
- Exclude checks
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
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [91/80] Open
format.html { redirect_to ratings_url, notice: 'Rating was successfully destroyed.' }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [114/80] Open
# @param :available_improvements [Boolean] Toggles whether or not to include a list of improvements available to
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [95/80] Open
format.json { render json: @hunters_improvement.errors, status: :unprocessable_entity }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [87/80] Open
format.json { render json: @improvement.errors, status: :unprocessable_entity }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [90/80] Open
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [82/80] Open
format.json { render json: @rating.errors, status: :unprocessable_entity }
- Create a ticketCreate a ticket
- Exclude checks
Line is too long. [107/80] Open
@hunters_improvement.improvement = Improvement.find(params[:improvement_id]) if params[:improvement_id]
- Create a ticketCreate a ticket
- Exclude checks