I'm using Rails 3.2 and instead of ERB, I am using slim
.
Here is my form partial:
= simple_form_for @game, :html => { :class => 'form-horizontal' } do |f|
The syntax error I am getting is:
_form.html.slim:1: syntax error, unexpected ')' ... => 'form-horizontal' } do |f|))).to_s));
But I don't know where it expects to put the ')'?
Thanks