Pattern: Unknown Rails environment
Issue: -
This rule checks that environments called with Rails.env
predicates exist.
# bad
Rails.env.proudction?
# good
Rails.env.production?
Attribute | Value |
---|---|
Environments | development , test , production |
Pattern: Unknown Rails environment
Issue: -
This rule checks that environments called with Rails.env
predicates exist.
# bad
Rails.env.proudction?
# good
Rails.env.production?
Attribute | Value |
---|---|
Environments | development , test , production |