ローカル環境で作業しているときにエラーが発生しましたが、Herokuにプッシュされたまったく同じコードが問題なく機能しました。何か案は?
アプリのローカル環境の任意のページに移動しようとすると、次のように表示されます。
/Users/user/badger/app/views/shared/_navigation.html.haml:211: syntax error, unexpected keyword_do_block
/Users/user/badger/app/views/shared/_navigation.html.haml:213: syntax error, unexpected keyword_end, expecting ')'
end ).to_s); _erbout.concat "\n"
^
/Users/user/badger/app/views/shared/_navigation.html.haml:249: syntax error, unexpected keyword_do_block
/Users/user/badger/app/views/shared/_navigation.html.haml:251: syntax error, unexpected keyword_end, expecting ')'
end ).to_s); _erbout.concat "\n"
^
抽出されたソース(行#211周辺):
208: :erb
209: <% if @page and @page.categories_include("About") %>
210: <%= link_to item.name.capitalize, polymorphic_path(item.navigable), :class => "current" %>
211: <% else %>
212: <%= link_to_unless_current item.name.capitalize, polymorphic_path(item.navigable), do
213: link_to item.name.capitalize, polymorphic_path(item.navigable), :class => "current"
214: end %>