armandofox/audience1st

View on GitHub
app/services/comp_order.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
87%

Use == if you meant to do a comparison or wrap the expression in parentheses to indicate you meant to assign in a condition.
Open

    errors.add(:showdate_id, "is invalid") and return unless @showdate = Showdate.find_by(:id => showdate_id)
Severity: Minor
Found in app/services/comp_order.rb by rubocop

This cop checks for assignments in the conditions of if/while/until.

Example:

# bad

if some_var = true
  do_something
end

Example:

# good

if some_var == true
  do_something
end

There are no issues that match your filters.

Category
Status