Validation question? returns {{count}} when it fails

I have this validation in a model… validates :problem_trying_to_solve, presence: true, length: { minimum: 50 }

but when it fails and gives me an error message… I get the following error…

is too short (minimum is {{count}} characters)

why is it not finding the total number of characters I used in the text area? (and returning it)

Looks like you override default error message. You need to update it to use %{count} instead of {{count}}.